Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Print Statement out of SetStopLoss and SetProfitTarget

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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.

    #2
    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.

    Comment


      #3
      Hello Jesse,

      I'm having a hard time understanding. Can you provide a sample code snippet? Thanks.

      Comment


        #4
        Hello AdeptistJune,

        In your strategy you would need to add the OnExecutionUpdate override, that is shown in the help guide:

        Code:
        protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
        {
        Print(execution.ToString());
        }
        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:
        Print(execution.Time);

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        88 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        134 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        68 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        119 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        69 views
        0 likes
        Last Post PaulMohn  
        Working...
        X