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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
156 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
90 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
140 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
130 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment