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.
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.
The following 2 users say Thank You to aslan for this 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.
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.
I agree there could be data that should be filtered, but doing so during bar building is probably not the right place to do it. In NT, there is an option under Tools->Options->Data that allows you to "filter bad ticks" by setting a percentage away from the market that is considered bad. I have never used the option, so be sure to understand what it really does (you may need to post on the Ninja forum).