Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Tick to tick problem
Collapse
X
-
Hello 7robert,
Thank you for your reply.
There's a few different approaches you could take to get the number of ticks in a 1 minute bar. The simplest would likely be to run the script OnEachTick, and increment a counter on each iteration through On Bar Update, resetting the counter on the first tick of the next bar, however, this would only function in real time, unless you enable Tick Replay on the chart. Here's a basic example:
Please let us know if we may be of further assistance to you.Code:namespace NinjaTrader.NinjaScript.Indicators { public class CountTicksInMinuteBarExample : Indicator { private int Counter; private int PriorCount; protected override void OnStateChange() { if (State == State.SetDefaults) { Description = @"Enter the description for your new custom Indicator here."; Name = "CountTicksInMinuteBarExample"; Calculate = Calculate.OnEachTick; IsOverlay = true; DisplayInDataBox = true; DrawOnPricePanel = true; DrawHorizontalGridLines = true; DrawVerticalGridLines = true; PaintPriceMarkers = true; ScaleJustification = NinjaTrader.Gui.Chart.ScaleJustification.Right; //Disable this property if your indicator requires custom values that cumulate with each new market data event. //See Help Guide for additional information. IsSuspendedWhileInactive = true; Counter = 0; PriorCount = 0; } else if (State == State.Configure) { } } protected override void OnBarUpdate() { if(!Bars.IsTickReplay) { Draw.TextFixed(this, "MyTextFixed", "This indicator requires tick replay to function. Please turn this on for the chart.", TextPosition.BottomLeft); return; } if (IsFirstTickOfBar) { PriorCount = Counter; Counter = 1; if(CurrentBar != 0) { Draw.Text(this, "myText"+ CurrentBar, PriorCount + " Ticks", 1, High[1] + (2 * TickSize), Brushes.White); } } else { Counter++; } } } }
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
47 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
23 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
33 views
1 like
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
51 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
42 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment