TValueType
Values
Enum Value
Description
Usage Example
// Get opening prices array
const openPrices = this.api.GetPriceArray(TValueType.OPEN);
// Get highest price value
const highPrice = this.api.GetPrice(TValueType.HIGH);
// Get closing prices for calculations
const closePrices = this.api.GetPriceArray(TValueType.CLOSE);
// Get volume data
const volumeData = this.api.GetPriceArray(TValueType.VOLUME);Last updated