Indicators
Indicators
Forecast Oscillator (fosc)

Forecast Oscillator (fosc)

def fosc(real: NDArray[Shape["*", Float]], period: float | int) -> NDArray[Shape["*"], Float]:
    """
    Forecast Oscillator
    Inputs: real
    Options: period
    Outputs: fosc
    """
    pass

The Forecast Oscillator indicator requires 1 input and 1 option parameters.

This indicator returns 1 outputs

Inputs

  • real - a numpy.array of numpy.float64

Options

  • period - float | int

Outputs

  • fosc