搜尋
產品
社群
市場
新聞
經紀商
更多
TW
立即開始
社群
/
投資想法
/
Its5
H
Hyzon Motors Inc.
Its5
由alsubihi提供
關注
關注
9月11日
0
9月11日
//
version
=5
indicator("HMA Trend Signal", overlay=true)
// Parameters
length = input.int(21, title="HMA Length")
// Calculate the Hull Moving Average
wma1 = ta.wma(close, length)
wma2 = ta.wma(close, length / 2)
hma = ta.wma(2 * wma2 - wma1, math.round(math.sqrt(length)))
// Define conditions for buy and sell signals
buySignal = ta.crossover(close, hma)
sellSignal = ta.crossunder(close, hma)
// Plot the Hull Moving Average
plot(hma, color=color.blue, title="HMA")
// Plot signals
plotshape(buySignal, color=color.green, style=shape.labelup, location=location.belowbar, text="BUY", size=size.small)
plotshape(sellSignal, color=color.red, style=shape.labeldown, location=location.abovebar, text="SELL", size=size.small)
Harmonic Patterns
Technical Indicators
Trend Analysis
alsubihi
關注
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在
使用條款
閱讀更多資訊。