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 SalmaTrader, 07-07-2026, 10:26 PM
        0 responses
        35 views
        0 likes
        Last Post SalmaTrader  
        Started by CarlTrading, 07-05-2026, 01:16 PM
        0 responses
        20 views
        0 likes
        Last Post CarlTrading  
        Started by CaptainJack, 06-17-2026, 10:32 AM
        0 responses
        13 views
        0 likes
        Last Post CaptainJack  
        Started by kinfxhk, 06-17-2026, 04:15 AM
        0 responses
        19 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Started by kinfxhk, 06-17-2026, 04:06 AM
        0 responses
        21 views
        0 likes
        Last Post kinfxhk
        by kinfxhk
         
        Working...
        X