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 geddyisodin, Today, 05:20 AM
      2 responses
      16 views
      0 likes
      Last Post geddyisodin  
      Started by hazylizard, Today, 08:38 AM
      0 responses
      6 views
      0 likes
      Last Post hazylizard  
      Started by Max238, Today, 01:28 AM
      5 responses
      42 views
      0 likes
      Last Post Max238
      by Max238
       
      Started by giulyko00, Yesterday, 12:03 PM
      3 responses
      13 views
      0 likes
      Last Post NinjaTrader_BrandonH  
      Started by habeebft, Today, 07:27 AM
      1 response
      16 views
      0 likes
      Last Post NinjaTrader_ChristopherS  
      Working...
      X