TradingView
nilux
2020λ…„ 8μ›” 5일 μ˜€μ „ 8μ‹œ 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 ;-)
더보기