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

pattern code

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

    pattern code

    Hi,

    I hope someone can give me a hint, cause I'm overlooking something:

    My bool function:
    ---------------------------------------------
    public bool GreenBar1Tick(int barsago)
    {
    if (Close[barsago]>Open[barsago] && Open[barsago] + 1 * TickSize == Close[barsago])
    {
    return true;
    } else return false;
    }
    ---------------------------------------------

    Above function works perfect and shows a diamond above every green candle with 1tick body, see below:
    ---------------------------------------------
    protected override void OnBarUpdate()
    {
    if ( GreenBar1Tick(0) )
    {
    DrawDiamond(CurrentBar.ToString() + "diamond", true, 0, High[0] + TickSize, Color.Red);
    }
    }
    ---------------------------------------------


    When I change the Zero in One like this it stops working......
    ---------------------------------------------
    protected override void OnBarUpdate()
    {
    if ( GreenBar1Tick(1) )
    {
    DrawDiamond(CurrentBar.ToString() + "diamond", true, 0, High[0] + TickSize, Color.Red);
    }
    }
    ---------------------------------------------

    Can someone tell me why? Any suggestions? Thx in advance !


    (cause my goal was to create an easy way to add new patterns instead of typing it all over again and again. For example: if (RedBar3Tick(2) && GreenBar2Tick(1) && RedBar3Tick(0) ) { ......arrow...... }
    Last edited by Creamers; 06-17-2009, 12:51 PM. Reason: html bold didn't work out

    #2
    forget it

    My beginners fault!!!


    if (CurrentBar < 500) // need 3 bars to calculate Low/High
    return;


    Thanks anyway....

    Greetings,
    Bart

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DanielTynera, Today, 01:14 AM
    0 responses
    2 views
    0 likes
    Last Post DanielTynera  
    Started by yertle, 04-18-2024, 08:38 AM
    9 responses
    40 views
    0 likes
    Last Post yertle
    by yertle
     
    Started by techgetgame, Yesterday, 11:42 PM
    0 responses
    10 views
    0 likes
    Last Post techgetgame  
    Started by sephichapdson, Yesterday, 11:36 PM
    0 responses
    2 views
    0 likes
    Last Post sephichapdson  
    Started by bortz, 11-06-2023, 08:04 AM
    47 responses
    1,615 views
    0 likes
    Last Post aligator  
    Working...
    X