Would I accomplish this by adding a Seconds time frame, and then accumulating the orders? If so how can I know to accumulate the ticks from start to finish of each bar?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
timer
Collapse
X
-
Hello brucelevy,
Thanks for your post.
You could count the orders that occur any number of ways depending on where in your code you want to reference the orders. I typically recommend using OnExecution() to base anything off of order executions.
You can see a sample of how to monitor this method and perform logic based on executions here:
If you want to accumulate the ticks from each bar you could just add a 1-tick series and then increment an integer on each tick that comes in(although I think that adding a Seconds series would be more useful as a measure of time). A similar concept could be applied to count your orders.
If you need to implement a timer for your goal you can use the Timer class, TriggerCustomEvent(), and the concepts from the following reference sample to implement a timer:Code:protected override void Initialize() { Add(PeriodType.Tick,1); } private int tickCounter; protected override void OnBarUpdate() { if(CurrentBars[1]<1)return; if(BarsInProgress==0 && FirstTickOfBar) tickCounter=0; if(BarsInProgress==1) { tickCounter++; Print("There have been "+tickCounter+" ticks in this candle"); } }
https://ninjatrader.com/support/help...to_output_.htm
https://ninjatrader.com/support/help...ustomevent.htm
You can read more about the Timer class at the following public MSDN link:
https://docs.microsoft.com/en-us/dot...ramework-4.7.2Last edited by NinjaTrader_JoshG; 03-06-2019, 12:42 PM.Josh G.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
151 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
304 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
244 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
345 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
175 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment