搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
Iskandar ok
SHIB / TetherUS
Iskandar ok
由yanbalian491提供
關注
關注
2024年12月10日
3
2024年12月10日
//
version
=5
indicator("Custom Crypto Indicator", shorttitle="CCI", overlay=true)
// Input parameters
fastLength = input.int(12, minval=1, title="Fast EMA Length")
slowLength = input.int(26, minval=1, title="Slow EMA Length")
signalLength = input.int(9, minval=1, title="Signal Line Length")
rsiLength = input.int(14, minval=1, title="RSI Length")
rsiOverbought = input.int(70, minval=50, maxval=100, title="RSI Overbought Level")
rsiOversold = input.int(30, minval=0, maxval=50, title="RSI Oversold Level")
// MACD calculation
[macdLine, signalLine, _] = ta.macd(close, fastLength, slowLength, signalLength)
// RSI calculation
rsi = ta.rsi(close, rsiLength)
// Signals
longSignal = ta.crossover(macdLine, signalLine) and rsi < rsiOversold
shortSignal = ta.crossunder(macdLine, signalLine) and rsi > rsiOverbought
// Plotting
plot(macdLine, color=color.new(color.blue, 0), linewidth=2, title="MACD Line")
plot(signalLine, color=color.new(color.red, 0), linewidth=2, title="Signal Line")
hline(0, "Zero Line", color=color.gray)
bgcolor(longSignal ? color.new(color.green, 90) : na)
bgcolor(shortSignal ? color.new(color.red, 90) : na)
// Alerts
alertcondition(longSignal, title="Long Signal", message="MACD and RSI indicate a Long entry")
alertcondition(shortSignal, title="Short Signal", message="MACD and RSI indicate a Short entry")
Technical Indicators
Oscillators
Trend Analysis
yanbalian491
關注
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。