Announcement

Collapse
No announcement yet.

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

    Comment


      #3
      Hi PaulH,

      That worked, thanks.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Today, 05:17 AM
      0 responses
      48 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      126 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      66 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