Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to make a ray change shape?
Collapse
X
-
Hello,
Thank you for the question.
I believe I understand what you are trying to do, let me double check if this is correct.
You are drawing a ray once your condition becomes true and then you want to stop drawing the ray once you have reached this condition again is this correct?
I look forward to being of further assistance.
-
Thanks for your reply.
If a condition is given a ray is drawn. This is him.
If you later two bars close above or below that ray ray that change their appearance.
Then if that ray is traversed by two bars close above / below the ray ray disappears.
forgive my English.
Comment
-
Hello,
Thank you for the clarification.
If you are assigning Tag names to the Ray's you can simply call the remove statement like the following:
This is a simple example, you draw the Ray and assign "TagNameHere" as its tag or anything you want. Later when you want to remove it you can call RemoveDrawObject("TagNameHere"); to remove that specific object.Code:if (Close[0] > Close[1]) DrawRay("[B]TagNameHere[/B]", 0, Close[0], 10, Close[0], Color.Red); if(Close[0] < Close[1]) RemoveDrawObject("[B]TagNameHere[/B]");
Please let me know if I may be of additional assistance.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
44 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
25 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
187 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
351 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
271 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|

Comment