Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
drawing bar
Collapse
X
-
drawing bar
hello. I have a code that when a condition is met it paints the bar with a color. All the bars where the condition is given are painted and that slows down my computer. How can I make it paint only the last bar where the condition occurs? thank youTags: None
-
Hello julifro,
If you re-use the tag name, this will move the drawing object instead of drawing a new object.
You can avoid drawing objects in historical data.
if (State == State.Historical)
return;
You can remove older drawn objects by their tag name with RemoveDrawObject().
Chelsea B.NinjaTrader Customer Service
- Likes 1
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
217 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
133 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
147 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
233 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
192 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment