NexusFi: Find Your Edge


Home Menu

 





Custom Renko (WickedRenko) implementation


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one aslan with 4 posts (2 thanks)
    2. looks_two Zsolt with 3 posts (0 thanks)
    3. looks_3 sharmas with 1 posts (0 thanks)
    4. looks_4 RJay with 1 posts (0 thanks)
    1. trending_up 6,988 views
    2. thumb_up 2 thanks given
    3. group 4 followers
    1. forum 10 posts
    2. attach_file 2 attachments




 
Search this Thread

Custom Renko (WickedRenko) implementation

  #1 (permalink)
 Zsolt 
bp
 
Experience: Beginner
Platform: ninjatrader
Posts: 29 since Jul 2009
Thanks Given: 1
Thanks Received: 1

Hi,

I am using WickedRenko on NT7 but i noticed a problem when there are data outside the current market range much more than 1 tick, it is common, just 1 or 2 time and sales data, but because renkos forming this time, it can be a great mess..

I tried to filter data in the cs file like this:

if(
(Math.Abs(close-close[1])) > (1*tickSize)
){
close = close[1]+1*tickSize;
}

Lets suspect we trading is liquid market, so if the next tick is outside the current trading area more than 1 tick, than it is impossible, so correct this value back to normal.

But this code doesnt changed anything

Any idea how can it be solved?

WickedRenkoBarsType_NT7.zip


Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
PowerLanguage & EasyLanguage. How to get the platfor …
EasyLanguage Programming
Better Renko Gaps
The Elite Circle
REcommedations for programming help
Sierra Chart
Trade idea based off three indicators.
Traders Hideout
NT7 Indicator Script Troubleshooting - Camarilla Pivots
NinjaTrader
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Spoo-nalysis ES e-mini futures S&P 500
29 thanks
Just another trading journal: PA, Wyckoff & Trends
24 thanks
Tao te Trade: way of the WLD
24 thanks
Bigger Wins or Fewer Losses?
21 thanks
GFIs1 1 DAX trade per day journal
17 thanks
  #3 (permalink)
 sharmas 
Auckland
 
Experience: Advanced
Platform: Ninja Trader
Broker: Zen-Fire
Trading: CL and ES
Posts: 778 since Apr 2010
Thanks Given: 3,822
Thanks Received: 750


Hi

Is there any way I can get a Renko chart in version 6.5?

SS

Visit my NexusFi Trade Journal Reply With Quote
  #4 (permalink)
 
RJay's Avatar
 RJay 
Hartford, CT. USA
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG, Kinetick
Trading: RTY
Posts: 683 since Jun 2009
Thanks Given: 758
Thanks Received: 787

Several versions of Renko are available here in the misc. area.

Links and Downloads Manager - [AUTOLINK]NinjaTrader[/AUTOLINK] Support Forum

Reply With Quote
  #5 (permalink)
 Zoethecus 
United States of America
 
Experience: Advanced
Platform: NT
Posts: 1,145 since Aug 2009

Perhaps aslan can addressed this--he is the creator of WR.



Zsolt View Post
Hi,

I am using WickedRenko on NT7 but i noticed a problem when there are data outside the current market range much more than 1 tick, it is common, just 1 or 2 time and sales data, but because renkos forming this time, it can be a great mess..

I tried to filter data in the cs file like this:

if(
(Math.Abs(close-close[1])) > (1*tickSize)
){
close = close[1]+1*tickSize;
}

Lets suspect we trading is liquid market, so if the next tick is outside the current trading area more than 1 tick, than it is impossible, so correct this value back to normal.

But this code doesnt changed anything

Any idea how can it be solved?

Attachment 11393



Reply With Quote
  #6 (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


Zoethecus View Post
Perhaps aslan can addressed this--he is the creator of WR.

Not much to address. If your data is jumping around then you need to use a bigger brick size. For example, if your data can gap back and forth by 10 ticks, then using a 4 tick brick size is not going to work very well. If you were using a range bar, you would see the same thing. If you were using a time based bar, you would see larger bars. The data is what the data is.

I am not into filtering the data. WickedRenko was all about seeing all of the data.

Certainly a different kind of bar could be made to do something else.

Reply With Quote
Thanked by:
  #7 (permalink)
 Zsolt 
bp
 
Experience: Beginner
Platform: ninjatrader
Posts: 29 since Jul 2009
Thanks Given: 1
Thanks Received: 1

well, yes you are right in setting the right reversal amount, but in that case jumping data is not actual trades, they are just missed data from previous trades, so filtering is needed.

Started this thread Reply With Quote
  #8 (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


Zsolt View Post
well, yes you are right in setting the right reversal amount, but in that case jumping data is not actual trades, they are just missed data from previous trades, so filtering is needed.

Sure about that? Why doesn't NT filter it out if it is not a real trade? How do you tell a real trade from bad data? If just using price to filter, you will miss real data also? For example, around news data gaps back and forth instantly, but they are real trades. Don't know the answer, just thinking out loud.

Reply With Quote
  #9 (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

Take a look at the new BetterRenko thread. It will not filter data, but it does remove all of the waterfalling for gaps.

Reply With Quote
  #10 (permalink)
 Zsolt 
bp
 
Experience: Beginner
Platform: ninjatrader
Posts: 29 since Jul 2009
Thanks Given: 1
Thanks Received: 1


yeah i am looking it, and likes what you are doing, I am working on a stock trading company, and it is common to get +10,20 ticks data away from the current trading range, and all of the renkos are working weird this times, creating many bars without actual data(0 volume).


But look it from logical way, the market is trading between 35.14 and 35.15 and suddenly got a tick from 35.50 without clearing the 35.15. So this is all against the market rules, you cant get anything above 35.15 until that price level is cleared out. Your own safety if you enter a buy to 35.50, you will get it at 35.15. So in that case this data can be filtered out.

This all are fully liquid market so if you got a tick 2 tick away than the previous that is bad.

You say it can be filtered out by Ninjatrader alse? i dont know how, maybe that is the right solution.

Started this thread Reply With Quote




Last Updated on August 9, 2010


© 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