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 sjsj2732, 03-23-2026, 04:31 AM
      0 responses
      42 views
      0 likes
      Last Post sjsj2732  
      Started by NullPointStrategies, 03-13-2026, 05:17 AM
      0 responses
      295 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      290 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      135 views
      1 like
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      98 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Working...
      X