ozgurhan

Hull Moving Average Buy and Sell

BITFINEX:BTCUSD   Bitcoin
The buy and sell indicator that I made with the Hull Moving Average formula.
I recommend its use in daily charts.
Hull Moving Average formülü ile apmış olduğum alım ve satım indikatörü.
Günlük gafikte kullanımını tavsiye ederim.

//@version=4
study(title="Hull Moving Average", shorttitle="HMA", resolution="", overlay=true)
length = input(140, minval=1)
src = input(close, title="Source")
hullma = wma(2*wma(src, length/2)-wma(src, length), floor(sqrt(length)))



var cizgiRengi3 = color.white
if hullma > hullma and close > hullma

cizgiRengi3 := color.green
else if (hullma > hullma and close < hullma) or (hullma < hullma and close > hullma)
cizgiRengi3 := color.orange
else
cizgiRengi3 := color.red

plot(hullma, color=cizgiRengi3, linewidth=2, transp=40)

plot(hullma, color=cizgiRengi3, linewidth=10, transp=0)

yesil=(hullma > hullma and close > hullma)
orange=(hullma > hullma and close < hullma) or (hullma < hullma and close > hullma)

b1=barssince(yesil)
s1=barssince(orange)
plotshape(yesil and b1>s1, size=size.small, style=shape.labelup, location=location.belowbar, color=color.green, text="BUY", textcolor=color.black)
plotshape(orange and s1>b1, size=size.small, style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL", textcolor=color.black)
alertcondition(green and b1>s1, title="BUY", message="BUY")
alertcondition(orange and s1>b1, title="BUY", message="SELL")


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.