How can i check if the last closed trade has been closed by SL or TP?.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Check if last closed trade reached SL or TP
Collapse
X
-
Hello,
One way would be to use the OnExecution override to check which order had last filled.
Based on which order was filled you could get its signal name, or FromEntrySignal name to determine which order was filled and which order this was a stop or target for.
I look forward to being of further assistance.
-
Hello vibarco,
Here is some example code that may help here:
In this example your output window would show something like:Code:protected override void OnExecution(IExecution execution) { if (execution.Name == "Stop loss") Print(string.Format("{0} - Stop loss was filled", execution.Time)); if (execution.Name == "Profit target") Print(string.Format("{0} - Profit Target was filled", execution.Time)); }
8/17/2015 5:55:00 AM - Profit Target was filled
8/17/2015 7:00:00 AM - Stop loss was filled
8/17/2015 7:27:00 AM - Stop loss was filled
8/17/2015 7:53:00 AM - Profit Target was filled
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
56 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
132 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
73 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
45 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
49 views
0 likes
|
Last Post
|

Comment