Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

EnterLongStop problem

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

    EnterLongStop problem

    Hello,

    I have a problem and I don't understand why.
    I have searched into forum but I didn't find anything. Sorry if is repeated.

    The strategy is simple. In the bar 2, one LongStop order is submitted.
    If the price reachs the stop, the strategy finishs correctly.
    If the price doesn't reach the stop, the strategy terminates with errors.

    Strategy Code A:
    Code:
    protected override void OnBarUpdate()
    {
    if ( CurrentBar == 2 )
       EnterLongStop(0, true, 1, 110.33, "EntrarLargoStop"+CurrentBar);
    }
    Here 110.33 is reached in the bar 15, the stop order is filled and the strategy finish correctly.




    Strategy Code B:
    Code:
     
    protected override void OnBarUpdate()
    {
    if ( CurrentBar == 2 )
       EnterLongStop(0, true, 1, 110.45, "EntrarLargoStop"+CurrentBar);
    }
    Here 110.45 isn´t reached and the strategy terminates with errors.





    Probably i'll be mistaken in anything but i don't know what. Could you help me, please ?

    Thanks very much.
    Attached Files

    #2
    This has nothing to do with your strategy. Last screenshot indicates the problem: if there is no market data coming in for the instrument in question then the simulator will not work, but reject the order afgter a few secs. If you are on sim feed, then you would need to provide a start price for you instrument (see logs).

    Comment


      #3
      Thanks Dierk

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      591 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      343 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      556 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      553 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X