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 ETFVoyageur, Today, 02:10 AM
        0 responses
        8 views
        0 likes
        Last Post ETFVoyageur  
        Started by rayyyu12, Today, 12:47 AM
        0 responses
        8 views
        0 likes
        Last Post rayyyu12  
        Started by ETFVoyageur, 05-07-2024, 07:05 PM
        17 responses
        137 views
        0 likes
        Last Post ETFVoyageur  
        Started by ETFVoyageur, Yesterday, 10:13 PM
        1 response
        11 views
        0 likes
        Last Post ETFVoyageur  
        Started by somethingcomplex, Yesterday, 10:36 PM
        0 responses
        10 views
        0 likes
        Last Post somethingcomplex  
        Working...
        X