Summary
Gets the resulting time series of the Typical Price indicator calculation.
Syntax
public IndicatorDataSeries Result{ get; }
Example 1
private TypicalPrice _result; protected override void Initialize() { _result = Indicators.TypicalPrice(); } public override void Calculate(int index) { double result = _result.Result[index]; }