TradingView
UnknownUnicorn1060835
9 Jul 2018 pukul 07.59

BAHbO - multi indicators and signals SMA,BB,RSI,Engulfing,Signal 

Bitcoin / DollarBitfinex

Huraian

4 SMAs - 9,21,55,200
Bollinger Bands - 21
Engulfing patterns
Fractal Support Resistance
Bullish and Bearish Engulfing signals
Engulfing Candles
Bollinger Bands + RSI combined indicator with signals
Komen
dpanday
repaint?
Joeanucha
wow thanks for this great indicator bb and rsi rules!
Mixogen83
At first glance this looks very good. Thanks for the work!
A couple of questions, if you can.
On timeframes 2,3 and 4 hours the indicator does not draw arrows for some reason. But I'm just working on 4 hours. :-(
On a weekly timeframe, too, but there, I think, just data is not enough. But with a 4-hour is very bad, that it is.
Second question about redrawing signals. As I understand it, after watching the system on a minute chart, there is no redrawing?
And third (sorry), what means bar colours (gray, black)?
Thanks alot!
UnknownUnicorn1060835
@Mixogen83, Maybe soon ill fix the 4H timeframe indicator-signals. Bar colours are Engulfing Candles
UnknownUnicorn1060835
@Mixogen83, to fix the 2,3,4,6,12 hour timeframes - just change 60 to 960 here:

// Check indicator result
showIndicator = interval <= 60 and ( (rsi > 70 and close > open and close[1] > open[1]) or (rsi < 30 and close < open and close[1] < open[1]))
indicator = rsi > 70 and (close > BBupper) and showIndicator ? -1 : rsi < 30 and (close < BBlower) and showIndicator ? 1 : 0

to:

// Check indicator result
showIndicator = interval <= 720 and ( (rsi > 70 and close > open and close[1] > open[1]) or (rsi < 30 and close < open and close[1] < open[1]))
indicator = rsi > 70 and (close > BBupper) and showIndicator ? -1 : rsi < 30 and (close < BBlower) and showIndicator ? 1 : 0
Lebih