Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 zstheorist, Today, 07:52 PM
    0 responses
    3 views
    0 likes
    Last Post zstheorist  
    Started by pmachiraju, 11-01-2023, 04:46 AM
    8 responses
    149 views
    0 likes
    Last Post rehmans
    by rehmans
     
    Started by mattbsea, Today, 05:44 PM
    0 responses
    5 views
    0 likes
    Last Post mattbsea  
    Started by RideMe, 04-07-2024, 04:54 PM
    6 responses
    33 views
    0 likes
    Last Post RideMe
    by RideMe
     
    Started by tkaboris, Today, 05:13 PM
    0 responses
    5 views
    0 likes
    Last Post tkaboris  
    Working...
    X