Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

difference between enter long by stop limit order and exit long by stop limit order

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

    difference between enter long by stop limit order and exit long by stop limit order

    can i go long by using enter long stop limit order? or, are my only options enter long position and enter long position by limit order?

    #2
    Hello SteveReiza,

    Thank you for your post.

    You can use EnterLongStopLimit() to go long. This generates a buy stop limit order to enter a long position. ExitLongStopLimit() generates a sell stop limit order to exit a long position.





    Please let us know if you have any other questions.

    Comment


      #3
      thanks for the reply. okay sweet! appreciate the clarification.

      Comment


        #4
        If I am using unmanaged approach, I would use order type Buy to go long, or SellShort to go short. For stop loss, I can use:

        for Long:
        SubmitOrderUnmanaged(0, OrderAction.Sell, OrderType.StopMarket, Position.Quantity, 0, Position.AveragePrice - StopLoss * TickSize, oco, "StopLoss");

        and for Short:
        SubmitOrderUnmanaged(0, OrderAction.BuyToCover, OrderType.StopMarket, Position.Quantity, 0, Position.AveragePrice + StopLoss * TickSize, oco, "StopLoss");

        Correct?


        Then for my target exits,

        for Long:
        SubmitOrderUnmanaged(0, OrderAction.Sell, OrderType.Limit, Position.Quantity, 0, Position.AveragePrice + TakeProfit * TickSize, oco, "TakeProfit");

        and for Short:
        SubmitOrderUnmanaged(0, OrderAction.BuyToCover, OrderType.Limit, Position.Quantity, 0, Position.AveragePrice - TakeProfit * TickSize, oco, "TakeProfit");

        ...or should I use OrderType.StopLimit ?

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by NullPointStrategies, Yesterday, 05:17 AM
        0 responses
        58 views
        0 likes
        Last Post NullPointStrategies  
        Started by argusthome, 03-08-2026, 10:06 AM
        0 responses
        133 views
        0 likes
        Last Post argusthome  
        Started by NabilKhattabi, 03-06-2026, 11:18 AM
        0 responses
        73 views
        0 likes
        Last Post NabilKhattabi  
        Started by Deep42, 03-06-2026, 12:28 AM
        0 responses
        45 views
        0 likes
        Last Post Deep42
        by Deep42
         
        Started by TheRealMorford, 03-05-2026, 06:15 PM
        0 responses
        50 views
        0 likes
        Last Post TheRealMorford  
        Working...
        X