OPEN-SOURCE SCRIPT

Candle de Reversão

60
//version=5
indicator("Candle de Reversão", overlay=true)

// Condição de reversão
bullish_reversal = close > open and close[1] < open[1] and close > high[1]
bearish_reversal = close < open and close[1] > open[1] and close < low[1]

// Pintando o candle
barcolor(bullish_reversal ? color.green : bearish_reversal ? color.red : na)

Feragatname

Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.