Thank in advance
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Text indicator
Collapse
X
-
Hello kiss987,
You may use the DrawText() and DrawFixedText() to be able to draw text on your chart using an Indicator.
DrawText: http://www.ninjatrader.com/support/h...l?drawtext.htm
DrawFixedText: http://www.ninjatrader.com/support/h...wtextfixed.htmJCNinjaTrader Customer Service
-
Hello chema2200,
Thank you for your post.
Below is a simple example of displaying the text of the 14 period ATR on the bottom right of the chart:
Please let me know if you have any questions.Code:protected override void OnBarUpdate() { DrawTextFixed("ATR", ATR(14)[0].ToString(), TextPosition.BottomRight); }
Comment
-
thank you so much.
I have inserted inside the the ATR indicator code but I can´t see the results on the charts...Do you know what is wrong?
thank you again for your help.
....
/// <summary>
/// Called on each bar update event (incoming tick)
/// </summary>
protected override void OnBarUpdate()
{
if (CurrentBar == 0)
Value.Set(High[0] - Low[0]);
else
{
DrawTextFixed("ATR", ATR(14)[0].ToString(), TextPosition.BottomRight);
double trueRange = High[0] - Low[0];
trueRange = Math.Max(Math.Abs(Low[0] - Close[1]), Math.Max(trueRange, Math.Abs(High[0] - Close[1])));
Value.Set(((Math.Min(CurrentBar + 1, Period) - 1 ) * Value[1] + trueRange) / Math.Min(CurrentBar + 1, Period));
}
}
#region Properties
/// <summary>
/// </summary>
.....
Originally posted by NinjaTrader_PatrickH View PostHello chema2200,
Thank you for your post.
Below is a simple example of displaying the text of the 14 period ATR on the bottom right of the chart:
Please let me know if you have any questions.Code:protected override void OnBarUpdate() { DrawTextFixed("ATR", ATR(14)[0].ToString(), TextPosition.BottomRight); }
Comment
-
Yes, I did it. Now I cannot open the platform...
Originally posted by NinjaTrader_PatrickH View PostHello chema2200,
Thank you for your response.
Have you compiled the indicator since adding the change to the code? Right click in the NinjaScript Editor and select Compile.
I would recommend creating a new indicator with the original ATR's code and just add in the code I referred to.
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
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
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