Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Add stoploss to open position in strategy

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

    Add stoploss to open position in strategy

    In my strategy, I've coded custom buttons to open long/short positions successfully. I need help to add stop-loss to an open position with a button click. I've tried using EnterLongStopLimit and EnterShortStopLimit functions with no luck. Please help. Trying to add the normal stop-loss that I can drag up/down as needed that's withing the strategy scope. Thanks.

    Code:
            private void OnButtonClickAddStoploss(object sender, RoutedEventArgs rea)
            {
                System.Windows.Controls.Button button = sender as System.Windows.Controls.Button;
                TriggerCustomEvent(o =>
                {
                    EnterShortStopLimit(BarsInProgress, true, _posSize, Low[1] - (10 * TickSize), Low[1] - (10 * TickSize), ShortPos);
    
                }, null);
            }​
    Last edited by singjay; 10-05-2023, 10:52 AM.

    #2
    Hello singjay,

    When you say that you had no luck what specifically was the problem?

    Using a live until cancelled order like you have would be the correct way to submit targets after an entry had already made a position. You would need to make sure the signal name you are using is the same signal name that you gave to the entry order.



    Comment


      #3
      Thank you Jesse for your quick reply. I get such error messages. See screenshot.
      Attached Files

      Comment


        #4
        Hello singjay,

        That means you are trying to use an invalid price for that type of order, the price you used was on the wrong side of the current market price. You need to change the price that you are using to be on the correct side of the market. The easiest way to make sure you have the right type of order for a position is to use the chart trader and manually enter a position and then right click on the chart. The right click menu will show you the types of orders that can be submitted based on where the mouse is in relation to the price.

        Comment


          #5
          Ok I see. I'll look more into the parameters that I'm passing in and retest things. Thanks for your help!

          Comment

          Latest Posts

          Collapse

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