Summary
The Typical Price indicator is the average of the high, low, and closing prices.
Syntax
public TypicalPrice TypicalPrice()
public TypicalPrice TypicalPrice(Bars bars)
Example 1
private TypicalPrice typicalPriceIndicator; protected override void Initialize() { typicalPriceIndicator = Indicators.TypicalPrice(); } public override void Calculate(int index) { double typicalPriceValue = typicalPriceIndicator.Result[index]; }