搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
5mins strategy
BNBUSDT Perpetual Contract
教育
5mins strategy
由Ronzerep提供
關注
關注
3月1日
0
3月1日
//
version
=4
strategy("5-Minute Chart Strategy", overlay=true)
// Input parameters
rsiLength = input(14, title="RSI Length")
overbought = input(70, title="Overbought Level")
oversold = input(30, title="Oversold Level")
emaLength = input(20, title="EMA Length")
// Calculate RSI
rsi = rsi(close, rsiLength)
// Calculate EMA
ema = ema(close, emaLength)
// Define entry and exit conditions
if crossover(close, ema) and rsi < oversold
strategy.entry("Buy", strategy.long)
if crossunder(close, ema) and rsi > overbought
strategy.entry("Sell", strategy.short)
// Plot EMA
plot(ema, color=color.blue)
// Plot RSI
plot(rsi, color=color.red)
Trend Analysis
Ronzerep
關注
更多:
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。