Tìm kiếm
Sản phẩm
Cộng đồng
Thị trường
Tin tức
Nhà môi giới
Thêm nữa
VI
Bắt đầu
Cộng đồng
/
Ý tưởng
/
Its5
H
Hyzon Motors Inc.
Its5
Theo alsubihi
Theo dõi
Theo dõi
11 thg 9
0
11 thg 9
//
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
Theo dõi
Thông báo miễn trừ trách nhiệm
Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong
Điều khoản sử dụng
.