Can anybody point me to some examples please.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Different Agg period to main chart.
Collapse
X
-
Different Agg period to main chart.
I am trying to code the ATR indicator to give me a value on a daily aggregation period but have it displayed / DrawTextFixed on a 5 min chart. Obviously it only needs to be refreshed at the start of each session.
Can anybody point me to some examples please.Tags: None
-
Hello stocktraderbmp,
Thanks for writing in and I am happy to assist you.
You can create a multi-timeframe indicator to display the ATR for the daily bars on a 5 minute chart.
A sample code will be like:
in the Initialize section of the code
in OnBarUpdateCode:Add(PeriodType.Day, 1);
Code:DrawTextFixed("tag", ATR(Closes[1], 14)[0].ToString(), TextPosition.BottomRight);
Please let me know if I can assist you any further.JoydeepNinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
173 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
130 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
209 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment