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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X