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 Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
566 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
330 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
547 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
548 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment