Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Renko Binary Wave System

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

    Renko Binary Wave System

    Hello Everyone,

    I really like Renko Charts to filter out a lot of the noise out of the price action but I would like to see the price action on the same window and plot the a red and green bars on the bottom of the chart as a type of oscillator indicator like Renko Binary Wave System or better as a line on top of the price action.

    I think this is the code:

    Inputs: K(1),
    Smooth(10);
    vars:Brick(0) ,DN(0), UP(0), BricksUp(0), BricksDn(0);
    Value1 = AvgTrueRange(Smooth);
    If BarNumber = 1 Then Begin
    Up = H;
    Dn = L;
    Brick = K*(H - L);
    End;
    If BarNumber > 1 then begin
    If C > UP + Brick Then begin
    BricksUp = IFF(Brick = 0, 0, Floor((C - Up)/Brick)*Brick);
    UP = Up + BricksUp;
    Brick = K*Value1;
    DN = Up - Brick;
    BricksDn = 0;
    End;
    If C < Dn - Brick Then begin
    BricksDn = IFF(Brick = 0, 0, Floor((Dn - C)/Brick)*Brick);
    Dn = Dn - BricksDn;
    Brick = K*Value1;
    Up = Dn + Brick;
    BricksUp = 0;
    End;
    End;
    Plot1(UP, "Up");
    Plot2(DN, "Dn");
    {***************end of code****************}
    thanks.

    this is a link to a chart with it.



    Thanks, for your help.

    ChonWayne
    Attached Files
    Last edited by chonwayne; 04-09-2009, 11:19 AM. Reason: Code

    #2
    Thanks for the post, can you repost the code? Thanks!

    Comment


      #3
      see this http://www.ninjatrader-support2.com/...ad.php?t=16228

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      582 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      338 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      103 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
      552 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X