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

How to count many times a SL has been triggered consecutively in a backtest?

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

    How to count many times a SL has been triggered consecutively in a backtest?

    Hi,

    In the OnBarUpdate method, I need to know how many times a SL order has been consecutively triggered.

    When a position is exited differently (TP or time based) the counter should be reset to 0.

    Apparently, the OnExecutionUpdate doesn't work in a backtest.

    What would you suggest?

    Thanks

    #2
    Hello Vincere,

    Thanks for your post.

    OnExecution() is used in a backtest. I would suggest just printing out the execution name as a test, for example:

    protected override void OnExecutionUpdate(Execution execution, string executionId, double price, int quantity, MarketPosition marketPosition, string orderId, DateTime time)
    {
    Print("Execution: "+execution.Name.ToString());
    }


    This would show an output similar to:
    Execution: Buy
    Execution: Stop loss
    Execution: Sell short
    Execution: Profit target
    Execution: Buy
    Execution: Profit target
    Execution: Sell short
    Execution: Profit target
    Execution: Buy
    Execution: Stop loss
    Execution: Sell short
    Execution: Stop loss
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Hi PaulH,

      That worked, thanks.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by TraderBCL, Today, 04:38 AM
      2 responses
      17 views
      0 likes
      Last Post TraderBCL  
      Started by martin70, 03-24-2023, 04:58 AM
      14 responses
      106 views
      0 likes
      Last Post martin70  
      Started by Radano, 06-10-2021, 01:40 AM
      19 responses
      609 views
      0 likes
      Last Post Radano
      by Radano
       
      Started by KenneGaray, Today, 03:48 AM
      0 responses
      5 views
      0 likes
      Last Post KenneGaray  
      Started by thanajo, 05-04-2021, 02:11 AM
      4 responses
      471 views
      0 likes
      Last Post tradingnasdaqprueba  
      Working...
      X