// $ZEC/USDT Short Setup - 15m
стратегия("ZEC Short Setup", overlay=true)
ma7 = ta.sma(close, 7)
ma25 = ta.sma(close, 25)
rsi = ta.rsi(close, 6)
shortCondition = close < ma7 и close < ma25 и rsi < 30
если (shortCondition)
strategy.entry("Short", strategy.short)
plot(ma7, color=color.yellow)
plot(ma25, color=color.red)
$ZEC
стратегия("ZEC Short Setup", overlay=true)
ma7 = ta.sma(close, 7)
ma25 = ta.sma(close, 25)
rsi = ta.rsi(close, 6)
shortCondition = close < ma7 и close < ma25 и rsi < 30
если (shortCondition)
strategy.entry("Short", strategy.short)
plot(ma7, color=color.yellow)
plot(ma25, color=color.red)
$ZEC
