Thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Print Statement out of SetStopLoss and SetProfitTarget
Collapse
X
-
Print Statement out of SetStopLoss and SetProfitTarget
When using print statement in a strategy, how do I get the output to show time of execution of the trade, price, and if I'm using SetStopLoss and SetProfitTarget, to show the exit of the trade as well?
Thanks.Last edited by AdeptistJune; 01-11-2022, 03:39 PM.Tags: None
-
Hello AdeptistJune,
You would need to use a manually coded strategy and OnExecutionUpdate.
You can filter for orders by looking for orders with specific names, for the set methods you can view the order names in the control center to see how they are spelled for those type of targets.
-
Hello Jesse,
I'm having a hard time understanding. Can you provide a sample code snippet? Thanks.
Comment
-
Hello AdeptistJune,
In your strategy you would need to add the OnExecutionUpdate override, that is shown in the help guide:
After adding that to the strategy you could observe any fills related to that specific strategy using the execution object as shown above. To print the time you would do:Code:protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time) { Print(execution.ToString()); }
Code:Print(execution.Time);
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
44 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
124 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
65 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
42 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
46 views
0 likes
|
Last Post
|

Comment