Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Draw Rectangle forward but stop after price crosses
Collapse
X
-
you would need some seperate drawing mechanism. one working while the rectangle hasnt been touched and one when it has.
the first would use..
...with a static tag while your barsago wouldbe between 0(the current bar) and your startbar, soCode:DrawRectangle(string tag, int startBarsAgo, double startY, int endBarsAgo, double endY, Color color)
that would be update every bar and would replace the rectangle of the previous bar, with a 1 bar longer one as long as your condition(that is hasnt been touched) would be true.Code:("rec",0,y,currentbar-startbarcount,y2,...);
----------------------------------
after your zone between y and y2 has been toched you would need to remove the provisional rectangle with
and replace it with a dynamicly tagged rectangle that will be the final one, soCode:RemoveDrawObject("rec");
make sure to only draw this 1 time once your rectangle is hit and turn it off directly the next candle so u wont stack up rectangles on top of each other.Code:("rec"+CurrentBar,0,y,currentbar-startbarcount,y2,...);
this is how i would try it.Last edited by BigRo; 12-12-2015, 04:13 AM.
-
As this post says: "... there is good news and there is not so good news. ..."Originally posted by brucelevy View PostHow would I go about having a rectangle go forward until price touches it, then have it stop there?
ref: http://ninjatrader.com/support/forum...56&postcount=3
Comment
-
Hello brucelevy,
Thank you for your inquiry.
I have created a sample indicator that will start drawing a rectangle from the first live bar that comes in until it touches a user specified price.
To import this indicator, click on File -> Utilities -> Import NinjaScript in the Control Center.
Please, let us know if we may be of further assistance.Attached FilesZachary G.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
647 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
368 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment