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 Mindset, 04-21-2026, 06:46 AM
        0 responses
        93 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        138 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        68 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        123 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        73 views
        0 likes
        Last Post PaulMohn  
        Working...
        X