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 TraderBCL, Today, 04:38 AM
    2 responses
    8 views
    0 likes
    Last Post TraderBCL  
    Started by martin70, 03-24-2023, 04:58 AM
    14 responses
    105 views
    0 likes
    Last Post martin70  
    Started by Radano, 06-10-2021, 01:40 AM
    19 responses
    606 views
    0 likes
    Last Post Radano
    by Radano
     
    Started by KenneGaray, Today, 03:48 AM
    0 responses
    4 views
    0 likes
    Last Post KenneGaray  
    Started by thanajo, 05-04-2021, 02:11 AM
    4 responses
    471 views
    0 likes
    Last Post tradingnasdaqprueba  
    Working...
    X