Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Time and sales information
Collapse
X
-
Hello ballboy11,
Thank you for the post.
The T&S data is aggregated tick market data. To aggregate your own, add a one tick Ask and one tick Bid data series to the script. Then get the time stamp of each of those ticks.
Initalize(){
//
//Add(string instrumentName, PeriodType periodType, int period, MarketDataType marketDataType)
Add("ES 12-17", PeriodType.Tick, 1, MarketDataType.Ask);
Add("ES 12-17", PeriodType.Tick, 1, MarketDataType.Bid);
}
protected override void OnBarUpdate()
{
if (BarsInProgress == 1)
{
Print("Ask" + Close[0]);
}
if (BarsInProgress == 2)
{
Print("Bid" + Close[0]);
}
}
Please see the following links for more information:
BarsInProgress:
Please let us know if we may be of any further assistance.
Chelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by sjsj2732, 03-23-2026, 04:31 AM
|
0 responses
77 views
0 likes
|
Last Post
by sjsj2732
03-23-2026, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
313 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
314 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
149 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
114 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment