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. קרא עוד בתנאים וההגבלות.