Announcement

Collapse
No announcement yet.

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

    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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      563 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      329 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
      547 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      548 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X