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)

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.