TradingView
dysrupt
١٣ تموز يوليو ٢٠١٨ ٠٣:٢٦

FIB Band Signals with RSI Filter 

Binance Coin / EthereumBinance

الوصف

Original Author: Rashad

Added by Rashad 6-26-16
These Bollinger bands feature Fibonacci retracements to very clearly show areas of support and resistance . The basis is calculate off of the Volume Weighted Moving Average . The Bands are 3 standard deviations away from the mean. 99.73% of observations should be in this range.

Updated by Dysrupt 7-12-18
-Buy signals added on lower bands, mean and upper 3 bands
-Sell signals added to upper 3 bands
-RSI filter applied to signals
-Alerts not yet added
-Long Biased

NOTE: This is NOT a set and forget signal indicator. It is extremely versatile for all environments by adjusting the RSI filter and checking the band signals needed for the current trend and trading style.
التعليقات
genkir
exellent work brother!
felipeprenholato
I added few EMA/SMAs to your code:

len1 = input(20, title="EMA 20")
len2 = input(50, title="EMA 50")
len3 = input(100, title="EMA 100")
len4 = input(80, title="SMA 80")
len5 = input(200, title="SMA 200")

plot(ema(close, len1), title="EMA 20", color=green, linewidth=2)
plot(ema(close, len2), title="EMA 50", color=orange, linewidth=2)
plot(ema(close, len3), title="EMA 100", color=red, linewidth=2)
plot(sma(close, len4), title="SMA 80", color=yellow, linewidth=2)
plot(sma(close, len5), title="SMA 200", color=red, linewidth=2)
genkir
i added alertcondions will try it now, really great job!
dysrupt
@genkir, Great, share them after you test
genkir
@dysrupt,
d = buy and (cl6 or cl5 or cl4 or cl3 or cl2 or cl1)
alertcondition(d, title='BUY', message='BUY')
choose once per bar close option, more precise.
dysrupt
@genkir, great!
المزيد