Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Adjusting Stop Loss to Breakeven plus

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

    Adjusting Stop Loss to Breakeven plus

    I have a problem where by my strategy some time gains 400 dollar intraday, and then close witha minor loss. Can I use the StopLoss to set my exit point to above my entry point? e.g. I enter long at 1012 the market move up 40 ticks. I want to protect my profit, and set a stoploss at 10 ticks above my average entry point. How can I perform this action?

    #2
    What you would want to do is modify your SetStopLoss() dynamically. Please check out this reference sample for an idea of how to do it. http://www.ninjatrader-support.com/v...ead.php?t=3222

    So in your case when you edit your SetStopLoss() you would probably do something like
    Code:
    if (Close[0] > Position.AvgPrice + 40 * TickSize)
         SetStopLoss(Position.AvgPrice + 10 * TickSize);
    Josh P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, 04-16-2024, 06:09 PM
    6 responses
    18 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Jon17, Today, 04:33 PM
    0 responses
    1 view
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    6 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Started by alifarahani, Today, 09:40 AM
    6 responses
    41 views
    0 likes
    Last Post alifarahani  
    Working...
    X