Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Display ATR in ticks instead of points
Collapse
X
-
Bill,
If you can find where the points is coming from and being set in the code then you could take that total and divide that by the TickSize
Example -
Trading ES - TickSize of .25
You have 3.5 points divided by .25 = 14 ticks
double ticksValue = pointValue / TickSize;Cal H.NinjaTrader Customer Service
Comment
-
Bill,
Apologies, I thought I attached a link for TickSize in my last post.
TickSize is a NinjaScript property which gets the Instruments Tick Size that its being applied to.
http://www.ninjatrader.com/support/h...l?ticksize.htm
The other items are arbitrary items to show you the method of converting to number of ticks.Cal H.NinjaTrader Customer Service
Comment
-
The indicator has a custom plot that
- formats the ATR data
- measures the length of the strings for display in the data table
The relevant code section of the anaCurrentDayOHL are lines 2570 - 2721. The ATR is displayed in points for futures and stocks, formatted in 32nds for interest rate futures and mostly displayed in pips for FOREX instruments. If you wish to display the ticksize instead of points, you would need to recode that section of the indicator (about 150 lines).
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
571 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
331 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
549 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
549 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

.
Comment