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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
182 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
334 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
258 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
358 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
187 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment