Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        579 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        334 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        101 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        554 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        551 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X