TickData (Class)
This page describes the TickData class
TickData represents the tick data for a symbol. The TickData object is returned in the OnTick override method of your strategy class.
| Property | Property Type | Description |
|---|---|---|
| Ticker | String | Ticker of the symbol, like AAPL, TATAMOTORS, etc., |
| TickerType | SymbolType | Type of the symbol. |
| Id | String | Data platform specific id of the symbol. Applicable for Indian data. |
| Date | DateTime | Date of the tick without time data. |
| Timestamp | DateTime | Timestamp of the tick with date and time data. |
| LTP | double (floating point value) | Last Traded Price of the symbol. |
| LTQ | double (floating point value) | Last Traded Quantity of the symbol. |
| Bid | double (floating point value) | Current best Bid price of the symbol. |
| Ask | double (floating point value) | Current best Ask price of the symbol. |
| LastTick | boolean | Indicates if this is the last tick to be received when the strategy is running in backtesting mode. |
Updated about 4 years ago
What’s Next
