Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Swing stops questions

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

    Swing stops questions

    So I am using swing stops as part of a strategy but they are moving.

    IE
    Strategy enters a short position. As price moves down the stop follows on the last swing high... The problem is that as price is moving up, if it prints a new swing high, the stop then goes above that swing high and will continue to adjust higher and away from price if a new swing high is made. Is there a simple way to stop this? I need the stop to lock in profits not give them away!

    Also, here is an example of the strategy entering a long positions and trying to put stops below the prior swing low (but the prior swing low is actually higher than price) https://gyazo.com/ce2c60a97e83fcdad130212d66b00ae8
    Last edited by brucelevy; 01-23-2016, 01:25 PM.

    #2
    Hello brucelevy,

    Thank you for writing in.

    What you could do is check to see if the current swing high value is lower than your stop loss price. If so, then move the stop loss. Otherwise, don't do anything.

    As an example:
    Code:
    if (Swing(5).SwingHigh[0] < stopLoss)
    {
         stopLoss = Swing(5).SwingHigh[0];
         SetStopLoss(stopLoss);
    }
    Please, let us know if we may be of further assistance.
    Zachary G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by sjsj2732, Yesterday, 04:31 AM
    0 responses
    28 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    284 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    281 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    132 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    90 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X