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

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!
    BertrandNinjaTrader Customer Service

    Comment


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

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by suroot, 04-10-2017, 02:18 AM
      4 responses
      3,021 views
      0 likes
      Last Post truepenny  
      Started by Stanfillirenfro, Today, 07:23 AM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by cmtjoancolmenero, Yesterday, 03:58 PM
      2 responses
      22 views
      0 likes
      Last Post cmtjoancolmenero  
      Started by olisav57, Yesterday, 07:39 PM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by cocoescala, 10-12-2018, 11:02 PM
      7 responses
      944 views
      0 likes
      Last Post Jquiroz1975  
      Working...
      X