TechnicalAnalysisRoutinesCalculateMoneyFlowIndex Method |
LightningChart .NET Help
Calculates Money Flow Index values using given number of time periods (n).
Namespace:
Arction.CustomControls.Trader.WinForms.Routines
Assembly:
Arction.WinForms.TradingCharts (in Arction.WinForms.TradingCharts.dll) Version: 10.3.1
Syntaxpublic static double[] CalculateMoneyFlowIndex(
double[] closeValues,
double[] highValues,
double[] lowValues,
double[] volumes,
int n
)
Public Shared Function CalculateMoneyFlowIndex (
closeValues As Double(),
highValues As Double(),
lowValues As Double(),
volumes As Double(),
n As Integer
) As Double()
public:
static array<double>^ CalculateMoneyFlowIndex(
array<double>^ closeValues,
array<double>^ highValues,
array<double>^ lowValues,
array<double>^ volumes,
int n
)
Parameters
- closeValues
- Type: SystemDouble
OHLC data close values - highValues
- Type: SystemDouble
OHLC data high values - lowValues
- Type: SystemDouble
OHLC data low values - volumes
- Type: SystemDouble
Volume values - n
- Type: SystemInt32
Period count
Return Value
Type:
DoubleMFI values
See Also