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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    133 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    75 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    117 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    113 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    90 views
    0 likes
    Last Post CarlTrading  
    Working...
    X