Wiseman Alligator

View as Markdown

Description

The Wiseman Alligator is an indicator that consists of 3 moving averages with offsets applied to identify trend absence, formation, and direction. This indicator was provided by Profitunity: <http://www.profitunity.com>

Syntax

Wiseman Alligator(int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset)

Wiseman Alligator(ISeries\<double\> input, int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset)

Returns Teeth

Wiseman Alligator(int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset).Teeth[int barsAgo]

Wiseman Alligator(ISeries\<double\> input, int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset).Teeth[int barsAgo]

Returns Lips

Wiseman Alligator(int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset).Teeth[int barsAgo]

Wiseman Alligator(ISeries\<double\> input, int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset).Lips[int barsAgo]

Returns Jaw

**Wiseman Alligator(int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset).Teeth[int barsAgo]

Wiseman Alligator(ISeries\<double\> input, int jawPeriod, int teethPeriod, int lipsPeriod, int jawOffset, int teethOffset, int lipsOffset).Jaw[int barsAgo]

Return Value

double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar

Parameters

PropertyDescription
inputIndicator source data (Series<T>)
jawPeriodNumber of bars used in the jaw moving average calculation
teethPeriodNumber of bars used in the teeth moving average calculation
lipsPeriodNumber of bars used in the lips moving average calculation
jawOffsetThe offset for the jaw moving average
teethOffsetThe offset for the teeth moving average
lipsOffsetThe offset for the lips moving average

Examples

1// Prints the current value of the teeth for the Wiseman Alligator
2double value = WisemanAlligator(13, 8, 5, 8, 5, 3).Teeth[0];
3Print("The current Wiseman Alligator teeth value is " + value.ToString());