NexusFi: Find Your Edge


Home Menu

 





Best Renko Bar? - better vs median vs sbs vs wicked


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one nakachalet with 22 posts (5 thanks)
    2. looks_two Big Mike with 16 posts (14 thanks)
    3. looks_3 cory with 14 posts (14 thanks)
    4. looks_4 aligator with 12 posts (17 thanks)
      Best Posters
    1. looks_one Fat Tails with 4.4 thanks per post
    2. looks_two FrankFX with 3.7 thanks per post
    3. looks_3 aligator with 1.4 thanks per post
    4. looks_4 Big Mike with 0.9 thanks per post
    1. trending_up 123,207 views
    2. thumb_up 243 thanks given
    3. group 43 followers
    1. forum 203 posts
    2. attach_file 45 attachments




 
Search this Thread

Best Renko Bar? - better vs median vs sbs vs wicked

  #161 (permalink)
 TimeTrade 
Erfurt Germany
 
Experience: Master
Platform: rtMagic, NinjaTrader
Broker: AMP/CQG, IAB
Trading: ES, 6E, FDAX, FGBL
Posts: 338 since Aug 2011
Thanks Given: 54
Thanks Received: 461


2010 View Post
Why is median renko not discussed any more, I noticed that the wicks are much shorter on median renko than the wicked renko and sbs renko bars.

median renkos looks nice, only make 3 big mistakes:
- use a virtual, never traded open price with zero volume
- use a NO-GAP loop for create vitual never traded candles with zero volume
- use different volume logics for history and live mode

=> unuseable for realistic backtests and for any volume and/or tradebased analyse
=> for visual live charts without its look good, only many other indicators give wrong/crazy results

Reply With Quote
Thanked by:

Can you help answer these questions
from other members on NexusFi?
Cheap historycal L1 data for stocks
Stocks and ETFs
REcommedations for programming help
Sierra Chart
MC PL editor upgrade
MultiCharts
Pivot Indicator like the old SwingTemp by Big Mike
NinjaTrader
ZombieSqueeze
Platforms and Indicators
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
What is Markets Chat (markets.chat) real-time trading ro …
70 thanks
Spoo-nalysis ES e-mini futures S&P 500
54 thanks
Just another trading journal: PA, Wyckoff & Trends
31 thanks
Bigger Wins or Fewer Losses?
24 thanks
The Program
20 thanks
  #162 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,460 since Jun 2009
Thanks Given: 33,234
Thanks Received: 101,655


TimeTrade View Post
median renkos looks nice, only make 3 big mistakes:
- use a virtual, never traded open price with zero volume
- use a NO-GAP loop for create vitual never traded candles with zero volume
- use different volume logics for history and live mode

=> unuseable for realistic backtests and for any volume and/or tradebased analyse
=> for visual live charts without its look good, only many other indicators give wrong/crazy results

Yes, even the author quickly said not to use MedianRenko anymore, and tried to delete all the copies on the forum and replace them with his next version called SbsRenko (as memory serves).

Then @aslan introduced Wicked Renko, which was then later replaced with the superior Better Renko. I think everyone should just use Better Renko or traditional renko, and forget about all these other types because they think they have special powers since they are harder to find or less talked about...

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #163 (permalink)
 
NJAMC's Avatar
 NJAMC 
Atkinson, NH USA
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader 8/TensorFlow
Broker: NinjaTrader Brokerage
Trading: Futures, CL, ES, ZB
Posts: 1,970 since Dec 2010
Thanks Given: 3,037
Thanks Received: 2,395



Big Mike View Post
Yes, even the author quickly said not to use MedianRenko anymore, and tried to delete all the copies on the forum and replace them with his next version called SbsRenko (as memory serves).

Then @ aslan introduced Wicked Renko, which was then later replaced with the superior Better Renko. I think everyone should just use Better Renko or traditional renko, and forget about all these other types because they think they have special powers since they are harder to find or less talked about...

Mike

Seems like someone should put together a new Renko WIKI!

Nil per os
-NJAMC [Generic Programmer]

LOM WIKI: NT-Local-Order-Manager-LOM-Guide
Artificial Bee Colony Optimization
Visit my NexusFi Trade Journal Reply With Quote
  #164 (permalink)
 TimeTrade 
Erfurt Germany
 
Experience: Master
Platform: rtMagic, NinjaTrader
Broker: AMP/CQG, IAB
Trading: ES, 6E, FDAX, FGBL
Posts: 338 since Aug 2011
Thanks Given: 54
Thanks Received: 461


Big Mike View Post
Yes, even the author quickly said not to use MedianRenko anymore, and tried to delete all the copies on the forum and replace them with his next version called SbsRenko (as memory serves).

Then @aslan introduced Wicked Renko, which was then later replaced with the superior Better Renko. I think everyone should just use Better Renko or traditional renko, and forget about all these other types because they think they have special powers since they are harder to find or less talked about...

Mike

Sorry, the SBS renko code use equal zero volumes and a no gap loop for create virtual never traded bars...


 
Code
    if (bars.Instrument.MasterInstrument.Compare(close, mymax + rangeValue) >= 0)
    {
        UpdateBar(bars, open, mymax + rangeValue, low, mymax + rangeValue, time, 0);
        bool isLastNewBar = close < mymax + 2 * rangeValue;
        double newBarOpen = mymax + rangeValue;
        double newClose = Math.Min(bar.Close + rangeValue, close);
        do
        {
            AddBar(bars, newBarOpen, newClose, newBarOpen, newClose, time, isLastNewBar ? volume : 0);
            newBarOpen = newClose;
            newClose = Math.Min(newClose + rangeValue, close);
            isLastNewBar = close == newClose;
        }
        while (bars.Instrument.MasterInstrument.Compare(close, newClose) > 0);
    }
    else
        if (bars.Instrument.MasterInstrument.Compare(mymin - rangeValue, close) >= 0)
        {
            UpdateBar(bars, open, high, mymin - rangeValue, mymin - rangeValue, time, 0);
            double newClose = Math.Max(bar.Close - rangeValue, close);
            double newBarOpen = mymin - rangeValue;
            bool isLastNewBar = close > mymin - 2 * rangeValue;
            do
            {
                AddBar(bars, newBarOpen, newBarOpen, newClose, newClose, time, isLastNewBar ? volume : 0);
                newBarOpen = newClose;
                newClose = Math.Max(newClose - rangeValue, close);
                isLastNewBar = close == newClose;
            }
            while (bars.Instrument.MasterInstrument.Compare(newClose, close) > 0);
        }

Reply With Quote
Thanked by:
  #165 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,460 since Jun 2009
Thanks Given: 33,234
Thanks Received: 101,655


TimeTrade View Post
Sorry, the SBS renko code use equal zero volumes and a no gap loop for create virtual never traded bars...

Which is why I said to use Better Renko.

Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
Thanked by:
  #166 (permalink)
 
Big Mike's Avatar
 Big Mike 
Manta, Ecuador
Site Administrator
Developer
Swing Trader
 
Experience: Advanced
Platform: Custom solution
Broker: IBKR
Trading: Stocks & Futures
Frequency: Every few days
Duration: Weeks
Posts: 50,460 since Jun 2009
Thanks Given: 33,234
Thanks Received: 101,655


NJAMC View Post
Seems like someone should put together a new Renko WIKI!

Please do!



Mike

We're here to help: just ask the community or contact our Help Desk

Quick Links: Change your Username or Register as a Vendor
Searching for trading reviews? Review this list
Lifetime Elite Membership: Sign-up for only $149 USD
Exclusive money saving offers from our Site Sponsors: Browse Offers
Report problems with the site: Using the NexusFi changelog thread
Follow me on Twitter Visit my NexusFi Trade Journal Reply With Quote
  #167 (permalink)
 
NJAMC's Avatar
 NJAMC 
Atkinson, NH USA
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader 8/TensorFlow
Broker: NinjaTrader Brokerage
Trading: Futures, CL, ES, ZB
Posts: 1,970 since Dec 2010
Thanks Given: 3,037
Thanks Received: 2,395


Big Mike View Post
Please do!



Mike

We need to find a Victim, I mean volunteer. I am out straight right now, but this issue keeps coming up in many different ways.

I can help someone structure it as the WIKIs are not straight forward without going through your tutorials. If someone is interested, let me know. Good history to capture for future reference.

Nil per os
-NJAMC [Generic Programmer]

LOM WIKI: NT-Local-Order-Manager-LOM-Guide
Artificial Bee Colony Optimization
Visit my NexusFi Trade Journal Reply With Quote
  #168 (permalink)
 2010 
Boston
 
Experience: Advanced
Platform: Ninja Trader
Trading: TF,CL
Posts: 35 since Apr 2011
Thanks Given: 35
Thanks Received: 3

Where can I download the Better Renko indicator? Thank you everyone for your input.

Reply With Quote
  #169 (permalink)
 marker 
Las Vegas, NV
 
Experience: None
Platform: NinjaTrader
Broker: NinjaTrader Brokerage
Trading: CL
Posts: 102 since Jun 2010
Thanks Given: 115
Thanks Received: 105


2010 View Post
Where can I download the Better Renko indicator? Thank you everyone for your input.

elite access:


Reply With Quote
  #170 (permalink)
 
aslan's Avatar
 aslan 
Madison, WI
 
Experience: Advanced
Platform: ALT
Trading: ES
Posts: 625 since Jan 2010
Thanks Given: 356
Thanks Received: 1,127


There seems to be a perception that zero volume bars or gap filling is a bad thing. Personally, I think they are just fine as they contribute to the visual aspect of the Renko chart. If you were to put other indicators on a Renko chart, filling the gap can be good or bad depending what kind of behavior you want. Filling the gap can be good because it allows an indicator to normalize faster (i.e. an avg) or by the same token bad because it lets it normalize faster (i.e. want to maintain distance for longer period of time). Depends what you are trying to get out of it.

Of course you need to deal with that from a backtesting perspective, and unfortunately it appears Ninja no longer deals with zero volume bars.

Reply With Quote




Last Updated on January 6, 2016


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts