How can I also plot (DrawText?) along with the TextAndMarker the gains/losses for each trade ?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Plot exections plus gains/losses
Collapse
X
-
Hello 2Look4me,
Thank you for writing in. You could loop through the account.Executions object.
For example:
Please let me know if this is not what you are looking for or if I may be of further assistance.Code:foreach(Execution e in Account.Executions) { DrawText(e.ExecutionId.ToString(), "Entry: " + e.Entry.ToString() + " & Exit: " + e.Exit.ToString(), CurrentBar - e.BarIndex, Low[CurrentBar - e.BarIndex] - 2 * TickSize, Color.Blue); }Michael M.NinjaTrader Quality Assurance
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
369 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