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

Negative Offset from Indicator

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

    Negative Offset from Indicator

    Hi, I'm trying to set a protective stop based on the low of the bar with a ATR based offset as the value for the stop. I'm using the strategy builder in NT7 and my log keeps telling me my stop is above the close of the bar. What am I doing wrong? pic included.

    I can't seem to figure out how to set it as the low MINUS ATR. Very odd. Any suggestions?
    Attached Files

    #2
    Hello,

    Thank you for the post.

    Using Price as you have shown would result in syntax like the following:

    Code:
    Low[0] + ATR(14)[0]
    Which could return values like the following:

    Code:
    2000 + 0.4
    The ATR is a value results in a positive number so you could not use this directly as an offset with only the ATR value.

    I believe for this to be used in the wizard with a negative amount, you would need to also subtract 1 from the value to have it become negative.

    When configuring the ATR, you could also use Price as the offset type and enter -1. Please keep in mind this assumes the maximum value the ATR will reach is 1.0, if you see otherwise or have different maximum values, you could make that change here.

    The result would be:

    Code:
    Low[0] + ATR(14)[0] + -1
    or

    Code:
    2000 + 0.4 + -1

    Could you append this change to your script and see if this resolves the problem for you?




    I look forward to being of further assistance.
    Last edited by NinjaTrader_Jesse; 10-26-2017, 01:21 PM.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by PeakTry, Today, 10:49 AM
    0 responses
    2 views
    0 likes
    Last Post PeakTry
    by PeakTry
     
    Started by llanqui, Today, 10:32 AM
    0 responses
    4 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by StockTrader88, 03-06-2021, 08:58 AM
    45 responses
    3,992 views
    3 likes
    Last Post johntraderuser2  
    Started by TAJTrades, Today, 09:46 AM
    0 responses
    8 views
    0 likes
    Last Post TAJTrades  
    Started by rhyminkevin, Yesterday, 04:58 PM
    5 responses
    62 views
    0 likes
    Last Post dp8282
    by dp8282
     
    Working...
    X