Thanks in advance for the help.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Indicator paint bars between Entry Trade
Collapse
X
-
Indicator paint bars between Entry Trade
Hi, I would like to develop an Indicator that paint the bars in a trade of green color if the entry was profitable, and red color if trade wasn't profitable. I know how to set the bar's color, but I wonder how can I get the start and end price's and bar's index of an entry to paint them.
Thanks in advance for the help. -
Hello ricardo88,
Thank you for the post.
To know what bar you entered the market at, when you use EnterLong()/EnterShort(), save the CurrentBar value as a protected integer in your class like so:
public class MyIndicator : Indicator
{
#region Variables
private int barsAgo;
#endregion
...
protected override void OnBarUpdate()
{
if(condition == true) {
barsAgo = CurrentBar;
EnterLong();
}
}
When you close the position, you will do the same thing to get the bar that the exit occurred on.
More on CurrentBar here:
You might also find the Position object useful, which has the AvgPrice property.
More info on Position object here:
Please let us know if we may be of any further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
318 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment