Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Cannot Set Stop Loss on Market Replay

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

    Cannot Set Stop Loss on Market Replay

    Hello,

    I'm having sever problems running strategies on market replay.

    Sometimes it execute orders, sometimes not. Sometimes I can set stop loss, sometimes not. Sometimes i can add an ask data series, sometimes not.
    Sometimes restarting the computer/NT or changing the script name helps, sometimes not.

    I attached a simple script which opens a long position and set a stop loss. it works well online but not on MR. On MR it opens a position but doesn't set SL.
    The data is downloaded from MBTrading. Personally I don't think it's a code problem but something with the settings or corrupted data/account or something like that....

    Please, please, please help me with this one. I'm new with NT development, struggling to understand it and those kind of things make it even harder.

    Thanks
    Attached Files

    #2
    Hello,
    You are submitting the order in historical bars and thus the stop orders are behaving erratically as they are being evaluated as historical orders.

    If you append the below code then can you get the correct orders.

    Code:
    protected override void OnBarUpdate()
    {
    	if (Historical) return;
          //rest of the codes
    }



    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      THanks!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cmoran13, 04-16-2026, 01:02 PM
      0 responses
      42 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      25 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      162 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      98 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      157 views
      2 likes
      Last Post CaptainJack  
      Working...
      X