Thanks
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
DrawDot to the right of price
Collapse
X
-
DrawDot to the right of price
I would like to draw a colored dot to the right of the price, 4 dots to be precise by price level, then delete them every new bar, DrawDot wont extend to the right but is there another way or has someone any sample code?
ThanksTags: None
-
Plot dots
This is a way to do it:
DrawLine("YourLine", false, -4, Close[0], -1, Close[0], Color.Blue, DashStyle.Dot, 8);
if you are going to have a condition for this:
if(your condition)
{
DrawLine("YourLine", false, -4, Close[0], -1, Close[0], Color.Blue, DashStyle.Dot, 8);
}
I guess also another way to solve it is to just plot using Dot, -1, -2,and minus 3.
Not shure if this is the correct way, but it works. If this is completely wrong, i guess some of the mods here will corect me:
IDot dot1 = DrawDot("Dot1", true, -1, Close[0], Color.Red);
IDot dot2 = DrawDot("Dot2", true, -2, Close[0], Color.Red);
IDot dot3 = DrawDot("Dot3", true, -3, Close[0], Color.Red);
Hope this is what you are looking for.
Regards, Finn Jurbol
-
-
I tried
DrawDot("Dot1", true, -1, Close[0], Color.Red);
On 6.5, maybe on NT7 it works, but it does not like the negative number on 6.5
I dont know what IDot is? is it a NT7 feature, it is not on 6.5
IDot dot1 = DrawDot("Dot1", true, -1, Close[0], Color.Red);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
572 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
550 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment