Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Rejected Stop Order

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

    Rejected Stop Order

    I've written a strategy that looks fine in backtesting, however in live trading the other day I had a stop order rejected. The message said invalid price of 616.6 (trading TF futures). The price looks valid to me, so the only thing I can think of is that the market was already below my stop price (I was long and the market quickly plummeted). However, I have a check in my code that should prevent this. Any idea why this would happen?

    Code:
    if (Close[0]>stopprice)
    	ExitLongStop(stopprice,"LS","LE");
    else
    	ExitLong();

    #2
    toptrader, you should check this off against the current bid / ask to avoid running into this issue.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    648 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    369 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    108 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    572 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    574 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X