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 cmoran13, 04-16-2026, 01:02 PM
      0 responses
      43 views
      0 likes
      Last Post cmoran13  
      Started by PaulMohn, 04-10-2026, 11:11 AM
      0 responses
      25 views
      0 likes
      Last Post PaulMohn  
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      162 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      98 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      157 views
      2 likes
      Last Post CaptainJack  
      Working...
      X