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

Accessing previous bars,

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

    Accessing previous bars,

    What am i doing wrong here
    two versions of code one plots the other does not, if i do it with Low[0]
    it works otherwise it doesnt.


    protected override void OnBarUpdate()
    {
    // Use this method for calculating your indicator values. Assign a value to each
    // plot below by replacing 'Close[0]' with your own formula.
    double pf = (Open[0]-Low[1]);
    int x=0;
    if (pf>=reversal)
    {
    x=1;
    }

    Plot0.Set(x);
    }

    #2
    ok now havw it to this taken into account floating points
    using compare function, still think there has to be a simpler way as it is open [0] - low [1]
    which doesnt seem to work??


    protected override void OnBarUpdate()
    {
    // Use this method for calculating your indicator values. Assign a value to each
    // plot below by replacing 'Close[0]' with your own formula.
    double pf = Math.Abs(Open[0]-Low[0]);
    int x=0;
    if (Instrument.MasterInstrument.Compare(pf, reversal) == 1)
    {
    x=1;
    }
    else
    {
    x=0;
    }

    Plot0.Set(x);
    }

    Comment


      #3
      Hello,

      In your first post, are you doing a currentbar check?:
      DenNinjaTrader Customer Service

      Comment


        #4
        works great thanks, been lurking around for years on the forums only decided recently to jump into the programming side with NT. still finding my way about.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by AaronKoRn, Today, 09:49 PM
        0 responses
        5 views
        0 likes
        Last Post AaronKoRn  
        Started by carnitron, Today, 08:42 PM
        0 responses
        8 views
        0 likes
        Last Post carnitron  
        Started by strategist007, Today, 07:51 PM
        0 responses
        9 views
        0 likes
        Last Post strategist007  
        Started by StockTrader88, 03-06-2021, 08:58 AM
        44 responses
        3,975 views
        3 likes
        Last Post jhudas88  
        Started by rbeckmann05, Today, 06:48 PM
        0 responses
        9 views
        0 likes
        Last Post rbeckmann05  
        Working...
        X