Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Draw an arrow as signal
Collapse
X
-
Link below is the coding to draw arrow :
Basically, you have to make a condition for it to draw. For example :
** Remember to plus CurrentBarCode:if (Condition here) Draw.ArrowUp(this, "tag1 " + CurrentBar, true, 0, Low[0] - TickSize, Brushes.Red);
From your picture, it must be have condition for it to draw the region.
Make you just put the draw arrow function inside there function.
-
Hello Rosario,
Thanks for your post.
You would need to devise some logic to create the situation you have. The situation is that you have a variable length of background drawing.
One approach to this would be to create an int variable to use as a counter. When you do NOT have the condition to draw the background you would set the counter to 0. When you do have the condition to draw the background you increment the counter. When the counter is 1, you draw the arrow.
if (some condition to draw the background)
{
BackBrush =...
myCounter++; // increment counter
if (myCounter == 1)
{
Draw.arrow....
}
}
else
{
myCounter = 0; // reset the counter if NOT drawing the background
}
Comment
-
Hello, Paul
Thanks for your reply. Attached file. It works ok.
Sincerely,Attached Files
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
245 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
157 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
165 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
250 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
201 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment