// Configuration Short ZEC/USDT - 15m
stratégie("Configuration Short ZEC", overlay=true)
ma7 = ta.sma(close, 7)
ma25 = ta.sma(close, 25)
rsi = ta.rsi(close, 6)
conditionShort = close < ma7 et close < ma25 et rsi < 30
si (conditionShort)
strategy.entry("Short", strategy.short)
tracer(ma7, color=color.yellow)
tracer(ma25, color=color.red)
$ZEC
stratégie("Configuration Short ZEC", overlay=true)
ma7 = ta.sma(close, 7)
ma25 = ta.sma(close, 25)
rsi = ta.rsi(close, 6)
conditionShort = close < ma7 et close < ma25 et rsi < 30
si (conditionShort)
strategy.entry("Short", strategy.short)
tracer(ma7, color=color.yellow)
tracer(ma25, color=color.red)
$ZEC
