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 kinfxhk, 07-14-2026, 09:39 AM
        0 responses
        13 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 10:18 AM
        0 responses
        59 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 09:50 AM
        0 responses
        41 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-13-2026, 07:21 AM
        0 responses
        47 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 07-11-2026, 02:11 AM
        0 responses
        38 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X