NinjaScript > Language Reference > Indicator Methods >

Forecast Oscillator (FOSC)

Print this Topic Previous pageReturn to chapter overviewNext page

Description

The Forecast Oscillator calculates the percentage difference between the actual price and the Time Series Forecast (the endpoint of a linear regression line). When the price and the forecast are equal, the Oscillator is zero. When the price is greater than the forecast, the Oscillator is greater than zero. When the price is less than the forecast, the Oscillator is less than zero.

 

... Courtesy of FM Labs

 

 

Syntax

FOSC(int period)
FOSC(IDataSeries input, int period)

 

Returns default value
FOSC(int period)[int barsAgo]
FOSC(IDataSeries input, int period)[int barsAgo]

 

 

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 (?)

period

Number of bars used in the calculation

 

 

Examples

// OnBarUpdate method
protected override void OnBarUpdate()
{
  // Checks if the current bar FOCS is above zero
   if (FOSC(14)[0] > 0)
       Print("FOSC is above zero indicating prices may rise");
}

 

 

Source Code

You can view this indicator method source code by selecting the menu Tools > Edit NinjaScript > Indicator within the NinjaTrader Control Center window.