Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

BuyStop orders

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

    BuyStop orders

    Hello,

    What can I do to get the program to stop trying to place buy stop orders below the market; which is causing my program to disable itself?
    Attached Files

    #2
    Hi AdeptistJune, thanks for posting. The strategy is trying to place the buy stop order either too close to the market price and the price changes before the order is submitted or the original price is below the market. You will need to compare the price you are setting the order at to GetCurrentAsk() to make sure the price is above the ask or place the order further away from the market price (from the ask price).

    Kind regards,
    -ChrisL

    Comment


      #3
      Hello Chris,

      How would I compare the price I'm setting the order at to GetCurrentAsk()?

      if(price > GetCurrnetAsk())
      {
      EnterLongStopMarket();
      }
      Last edited by AdeptistJune; 05-12-2022, 09:18 PM.

      Comment


        #4
        Hi AdeptistJune, It depends on how your strategy is set up and how you are calling the order, but it would be similar to this:
        Code:
        if(High[0]+TickSize*5 > GetCurrentAsk())
        EnterLongStopMarket(High[0]+TickSize*5);

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Today, 05:17 AM
        0 responses
        52 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        130 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        70 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        44 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        49 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X