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 NullPointStrategies, Today, 05:17 AM
        0 responses
        44 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        124 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        65 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        42 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        46 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X