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 benmarkal, Yesterday, 12:52 PM
      3 responses
      22 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by helpwanted, Today, 03:06 AM
      1 response
      17 views
      0 likes
      Last Post sarafuenonly123  
      Started by Brevo, Today, 01:45 AM
      0 responses
      11 views
      0 likes
      Last Post Brevo
      by Brevo
       
      Started by aussugardefender, Today, 01:07 AM
      0 responses
      6 views
      0 likes
      Last Post aussugardefender  
      Started by pvincent, 06-23-2022, 12:53 PM
      14 responses
      244 views
      0 likes
      Last Post Nyman
      by Nyman
       
      Working...
      X