Money Flow Oscillator

View as Markdown

Description

The Money Flow Oscillator measures the amount of money flow volume over a specific period. A move into positive territory indicates buying pressure while a move into negative territory indicates selling pressure.

Syntax

MoneyFlowOscillator(int period)

MoneyFlowOscillator(ISeries\<double\> input, int period)

Return Value

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

Parameters

ParameterDescription
inputIndicator source data (Series<T>)
periodNumber of bars used in the calculation

Examples

1// Prints the current value of a 10 period Money Flow Oscillator
2double value = MoneyFlowOscillator(10)[0];
3Print("The current Money Flow Oscillator value is " + value.ToString());