Result Property
Summary
The time series of the Chaikin Money Flow Indicator.
Signature
| public abstract IndicatorDataSeries Result {get; set;}
|
Return Value
IndicatorDataSeries
Declaring Type
cAlgo.API.Indicators.ChaikinMoneyFlow
Examples
1
2
3
4
5
6
7
8
9
10
11
12 | private ChaikinMoneyFlow _chaikinMoneyFlow;
[Parameter("Period", DefaultValue = 21)]
public int Period { get; set; }
protected override void OnStart()
{
_chaikinMoneyFlow = Indicators.ChaikinMoneyFlow(Period);
}
protected override void OnBar()
{
var currentValue = _chaikinMoneyFlow.Result.LastValue;
//...
}
|
Last update: February 6, 2023