TradingView
Ben_Neumann
23 gru 2021 12:54

Consensio 

Bitcoin all time history indexINDEX

Opis

This indicator is based on Consensio strategy.

Green = 100% Bullish,
Yellow = 75%-90% Bullish,
Orange = 30%-75% Bullish,
Red = 100% Cash Position

1-4 Green candles = Bullish trend momentum (4 is stronger)
1-4 Red candles = Bearish trend momentum (4 is stronger)

Informacje o Wersji

- Signal Bug fixed
- code refactored
Komentarze
Ben_Neumann
I personally use this indicator as my main indicator on 1d chart with default settings.
I recommend not to buy on signal when momentum is Bearish or sell on signal when momentum is Bullish.
thomsonraja
Just a suggestion.... and keep up the good work bro.... works good in combination with tradingview.com/script/Lmqh0eEr-Semafor/

line5 : indicator("consencio", overlay=true, max_bars_back=500, max_labels_count=500)

additional lines added : show4 = input(true)
additional lines added : show3 = input(true)
additional lines added : show2 = input(true)
additional lines added : show1 = input(true)

line 33 : if show4 and (l > l[1] and m > m[1] and s > s[1])
line 35 : if show3 and (l > l[1] and m < m[1] and s > s[1])
line 37 : if show2 and (l > l[1] and m > m[1] and s < s[1])
line 39 : if show1 and (l > l[1] and m < m[1] and s < s[1])
line 43 : if show1 and (l < l[1] and m > m[1] and s > s[1])
line 45 : if show2 and (l < l[1] and m < m[1] and s > s[1])
line 48 : if show2 and (l < l[1] and m > m[1] and s < s[1])
line 50 : if show4 and (l < l[1] and m < m[1] and s < s[1])
Ben_Neumann
Hey @thomsonraja,
Thank you for that. Very good suggestion
Więcej