I want rectangle to Plot at every new bar. in a Renko bar chart!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Rectangle NOT Plotting
Collapse
X
-
Hello,
It looks like the values you are using would not be valid,
Looking at the line of code:
Code:DrawRectangle("Test", false, 1, 0, 0, 1, Color.Blue, Color.Black, 3);
This is currently set to draw 1 bar ago at value between 1 and 0, was this intended?
If so you would need to turn on the autoscale by changing the false to true and then chart will scale to show this.
Otherwise you would need to put in a price value for the two y values it asks for and you should see it drawn.
I look forward to being of further assistance.
-
Thanks, it did draw something. but It drew Rectangles in Main Data Series.
This is what I get: http://screencast.com/t/NRAQoh3M0e
THis is my goal. to draw it like this: http://screencast.com/t/lFJRiZJ4A
Also how do I change the color of it depending if lets say Close[0] > EMA(10)....etc
Comment
-
Hello,
Based on the image, there is an easier approach using the BackColor property.
There is a example that actually looks almost identical to what you are after here: http://www.ninjatrader.com/support/h...tsub=BackColor
The BackColor property would in turn be much more efficient than drawing a rectangle for every bar.
If you did want to instead use a rectangle, you need to use the DrawOnPricePanel property http://www.ninjatrader.com/support/h...awonpricepanel
For the color change, please see the first link there is a good example on how the color is changed based on a condition.
I look forward to being of further assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
598 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
343 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 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
556 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
555 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment