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 sjsj2732, Today, 04:31 AM
      0 responses
      20 views
      0 likes
      Last Post sjsj2732  
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      280 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      279 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      130 views
      1 like
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      90 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Working...
      X