ozgurhan

Hull Moving Average Buy and Sell

BITFINEX:BTCUSD   ビットコイン/米ドル
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")


免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。