public property O2GMarketDataSnapshotResponseReader.isBar

Brief

Checks whether the historical prices in the response are represented as bars or ticks.

Declaration
C#
bool  isBar get;

Details

The possible return values are:

true

The historical prices in the response are represented as bars. Use the getBidOpen, getBidHigh, getBidLow, getBidClose methods to get historical open, high, low and close bid prices respectively. Use the getAskOpen, getAskHigh, getAskLow, getAskClose methods to get historical open, high, low and close ask prices respectively.

false

The historical prices in the response are represented as ticks. Use the getBid and getAsk methods to get historical bid and ask prices respectively,

Declared in O2GMarketDataSnapshotResponseReader

back