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 Barry Milan, Yesterday, 10:35 PM
    4 responses
    14 views
    0 likes
    Last Post Barry Milan  
    Started by DanielSanMartin, Yesterday, 02:37 PM
    2 responses
    13 views
    0 likes
    Last Post DanielSanMartin  
    Started by DJ888, 04-16-2024, 06:09 PM
    4 responses
    12 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by terofs, Today, 04:18 PM
    0 responses
    11 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by nandhumca, Today, 03:41 PM
    0 responses
    8 views
    0 likes
    Last Post nandhumca  
    Working...
    X