Wiseman Awesome Oscillator

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Common > System Indicator Methods >

Wiseman Awesome Oscillator

Previous page Return to chapter overview Next page

Description

The Wiseman Awesome Oscillator is a momentum indicator to identify trends and reversals. This indicator was provided by Profitunity: http://www.profitunity.com

 

Syntax

WisemanAwesomeOscillator()

WisemanAwesomeOscillator(ISeries<double> input)

 

Return Value

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

 

Parameters

input

Indicator source data (?)

 

 

Examples

ns

// Prints the current value of the Wiseman Awesome Oscillator
double value = WisemanAwesomeOscillator()[0];
Print("The current Wiseman Awesome Oscillator value is " + value.ToString());