TradingView
nilux
5 авг 2020 г., 08:57

Tool: Chop & Trade Zones 

Bitcoin / US Dollar Perpetual Inverse Swap ContractBitMEX

Описание

A simple yet powerful way to filter out choppy ranges or sideways moves without missing out on good trades

It calculates the %-distance of the price to a moving average so you can ignore buy/sell signals around the center line.
The upper and lower line are thresholds to catch reversals of the trend when the distance to moving average is increasing.

Thanks @dgtrd and @imzeeshan for the inspiration 🙏
Комментарии
Omaraa90
Hi, I added the indicator, but it shows a straight line all along - I have looked at all time frames and it's still does display as a straight line.

Is it designed for Crypto only?

Thanks.
rhanna
@Omaraa90, i experience the same.@nilux how can we apply your filter on other assets other than crypto?
bondnuetron
When applied to my chart it shows market is forever in Chop zone. Can someone help me set it up properly?
pmdb2
Maybe update settings. For example for Forex thresholds could be 0.04, -0.04, 0.08, -0.08 (depends on movement of course). Sma length also needs to be adjusted according to selected time frame. (for 1 min sma 20/50/100 only).
nilux
Here is the v2 version with lots of additional filters, plots and alerts: tradingview.com/script/eZr1BIke-Tool-Chop-and-Trade-Zones-v2/
Yahmez
Neither of the versions work
ASIFKERIM
Hi Bro,is it useful for scalping...
nilux
@hjsjshs, this is not an indicator for entries and exits but a filter to use one top of your strategy. if it's good for scalping, I don't know... probably it is.
xtricten
it needs lower values minutes charts:
len = input(21, title='Length')
src = input(close, title='Source')
dist_limit_long_h = input.float(0.05, title='% Distance Threshold Center (Long)', step=0.1, minval=0.0)
dist_limit_long_l = input.float(-0.2, title='% Distance Threshold Lower (Long)', step=0.1, maxval=0.0)
dist_limit_short_l = input.float(-0.05, title='% Distance Threshold Center (Short)', step=0.1, maxval=0.0)
dist_limit_short_h = input.float(0.2, title='% Distance Threshold Upper (Short)', step=0.1, minval=0.0)

ma = ta.ema(src, len)
dgtrd
very well done,
i keep deriving from distance concept and as I can see you do too cleverly ;-)
Ещё