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

Attached Stop Loss to indicator

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

    Attached Stop Loss to indicator

    Hello all,
    Is it possible to attach a stop loss "SetStopLoss()" to a SMA using Ninjascript? As an example, I'd like the stop loss to follow the SMA by above or below it depending on the position.

    I found this post but it does not look like that function is available any longer; (https://ninjatrader.com/support/foru...p-to-indicator).

    Thank you,
    Travis Sloneker

    EDIT: I think I found the solution.
    Last edited by travisloneker; 03-24-2021, 09:38 AM.

    #2
    Hello Travis, thanks for your post.

    You can call SetStopLoss multiple times within OnBarUpdate to update your stop-loss through the life of the position. e.g. if you are long, update the stop loss:

    if(Position.MarketPosition == MarketPosition.Long && SMA(14)[0] < Close[0])
    {
    SetStopLoss(CalculationMode.Price, SMA(14)[0]);
    }

    Kind regards,
    -ChrisL
    Chris L.NinjaTrader Customer Service

    Comment


      #3
      I'm glad you found solution to the problem. But how did you get the solution? I'm a newbie and i think I may need help with that soon too

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by burtoninlondon, Today, 12:38 AM
      0 responses
      5 views
      0 likes
      Last Post burtoninlondon  
      Started by AaronKoRn, Yesterday, 09:49 PM
      0 responses
      12 views
      0 likes
      Last Post AaronKoRn  
      Started by carnitron, Yesterday, 08:42 PM
      0 responses
      11 views
      0 likes
      Last Post carnitron  
      Started by strategist007, Yesterday, 07:51 PM
      0 responses
      13 views
      0 likes
      Last Post strategist007  
      Started by StockTrader88, 03-06-2021, 08:58 AM
      44 responses
      3,982 views
      3 likes
      Last Post jhudas88  
      Working...
      X