Enum defining the data that just changed in a chart data set

Namespace:  T4
Assembly:  T4Definitions.20 (in T4Definitions.20.dll)

Syntax

C#
[ObfuscationAttribute(Feature = "renaming", Exclude = true)]
public enum ChartDataChange
Visual Basic (Declaration)
<ObfuscationAttribute(Feature := "renaming", Exclude := True)> _
Public Enumeration ChartDataChange
Visual C++
[ObfuscationAttribute(Feature = L"renaming", Exclude = true)]
public enum class ChartDataChange

Members

Member nameDescription
None
Nothing changed, no valid data
Trade
A trade occurred. The current line of tick data contains a new trade. The following MarketTickData properties will be updated to reflect the trade data:
TimeThe time of the trade.
DueToSpreadWhether the trade was due to a spread.
AtBidOrOfferWhether the trade occurred at the bid or offer price.
TradeTicksThe tick price for this trade.
TradePriceThe display price for this trade.
TradeValueThe dollar value for this trade.
TradeVolumeThe volume for this trade.
TotalTradedVolumeThe total volume traded so far this trade day for this market.
Quote
A quote has changed. Not used by the API.
MarketMode
The market mode has changed. The current line of data contains a change in the market mode. The following properties will be updated to reflect the market mode change:
TimeThe time of the mode change.
ModeThe current market mode.
Settlement
The settlement price has changed. The current line of data contains a change in the settlement price. The following properties will be updated to reflect the new settlement price:
TimeThe time of the settlement price.
SettlementTicksThe settlement tick price.
SettlementPriceThe settlement display price.
SettlementValueThe settlement dollar value.
TradeBar
A trade bar occurred. The current line of bar data contains a new trade bar. The following MarketBarData properties will be updated to reflect the trade data:
TimeThe time of the trade.
TradeVolumeNumber of contracts traded for this bar.
OpenTicksThe tick price at the bar open.
OpenPriceThe display price at the bar open.
OpenValueThe dollar value at the bar open.
HighTicksThe high tick price for the bar.
HighPriceThe high display price for the bar.
HighValueThe high dollar value for the bar.
LowTicksThe low tick price for the bar.
LowPriceThe low display price for the bar.
LowValueThe low dollar value for the bar.
CloseTicksThe tick price at the bar close.
ClosePriceThe display price at the bar close.
CloseValueThe dollar value at the bar close.
TradeDate
The trade date has changed
TPO
The TPO has changed. Not used by the API.
TickChange
The Tick Change bar has changed.

See Also