Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Placing Reverse Orders in Ninjascript Strategy

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

    Placing Reverse Orders in Ninjascript Strategy

    Hello,

    I hope my email finds you well. I have tried many different coding combinations to place an opposite order once a stop loss is executed. For example if a Long Stop Loss is executed I want to enter Short.
    I cannot make it work...
    would you be able to help?

    Thank you

    #2
    Hello NorwegianCat92,

    Are you adding code to the OnExecutionUpdate() override method?
    Join the official NinjaScript Developer Community for comprehensive resources, documentation, and community support. Build custom indicators and automated strategies for the NinjaTrader platforms with our extensive guides and APIs.


    For example:

    if (execution.Name == "Stop loss" && execution.Order.OrderAction == OrderAction.Sell)
    {
    EnterShort();
    }
    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      Hello Chelsea,

      Thank you very much for your prompt reply. Yes I was using the OnExecutionUpdate Method. I was not using the execution.Order.OrderAction == OrderAction.Sell... I test if this works correctly. Thank you

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      87 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      132 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      65 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      118 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      67 views
      0 likes
      Last Post PaulMohn  
      Working...
      X