// Positive and Negative Rotation positiveRotation = ema3 > ema9 and ema9 > ema20 and ema20 > ema50 and ema50 > ema200 negativeRotation = ema3 < ema9 and ema9 < ema20 and ema20 < ema50 and ema50 < ema200
// Entry Conditions enterLong = crossover(macdLine, signalLine) and close > upper and kst > 0 and positiveRotation enterShort = crossunder(macdLine, signalLine) and close < lower and kst < 0 and negativeRotation
// Exit Conditions exitLong = crossunder(macdLine, signalLine) or close < lower exitShort = crossover(macdLine, signalLine) or close > upper
As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.