public class LINEPROJECTOR : Indicator
{
#region Variables
private int length = 25; // Default setting for Length
#endregion
protected override void Initialize()
{
Overlay = true;
}
protected override void OnBarUpdate()
{
DrawLine("tag1", false, 10, 1000, 0, 1001, Color.LimeGreen, DashStyle.Dot, 2);
}
#region Properties
[Browsable(false)] // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
[XmlIgnore()] // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
public DataSeries PlotH
{
get { return Values[0]; }
}
[Browsable(false)] // this line prevents the data series from being displayed in the indicator properties dialog, do not remove
[XmlIgnore()] // this line ensures that the indicator can be saved/recovered as part of a chart template, do not remove
public DataSeries PlotL
{
get { return Values[1]; }
}
[Description("Scope of detection")]
[GridCategory("Parameters")]
public int Length
{
get { return length; }
set { length = Math.Max(8, value); }
}
#endregion
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Drawing a simple line in an indicator
Collapse
X
-
Drawing a simple line in an indicator
Is there some special sauce I need to add to the recipe to draw a simple line? I'm experimenting with drawing objects for the very first time and the example taken from the NT7 language guide doesn't do a thing :-( here is my code:
Code:Tags: None
-
Hello ShruggedAtlas,
Thanks for your post and I am happy to assist you.
On which instrument you are putting up the indicator.
The line is drawn on price level of 1000 to 1001. So if you are watching for example ES then you wont be able to see it.
Also you need to check for the minimum bar requirement. Please refer to this post for further reference http://ninjatrader.com/support/forum...ead.php?t=3170
A workable code will be
Please let me know if I can assist you any further.Code:protected override void OnBarUpdate() { if (CurrentBar < 10) return; DrawLine("tag1", false, 10, Close[0], 0, Close[0], Color.LimeGreen, DashStyle.Dot, 2); }JoydeepNinjaTrader Customer Service
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 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
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment