Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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.
    JesseNinjaTrader Customer Service

    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);
        JesseNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by inanazsocial, Today, 01:15 AM
        0 responses
        2 views
        0 likes
        Last Post inanazsocial  
        Started by trilliantrader, 04-18-2024, 08:16 AM
        5 responses
        22 views
        0 likes
        Last Post trilliantrader  
        Started by Davidtowleii, Today, 12:15 AM
        0 responses
        3 views
        0 likes
        Last Post Davidtowleii  
        Started by guillembm, Yesterday, 11:25 AM
        2 responses
        9 views
        0 likes
        Last Post guillembm  
        Started by junkone, 04-21-2024, 07:17 AM
        9 responses
        70 views
        0 likes
        Last Post jeronymite  
        Working...
        X