TradingView
daotug8691
15 Th05 2018 14:59

GTM - Team signal Buy/Sell 

ICON / BitcoinBinance

Mô tả

study(title="GTM - Team signal Buy/Sell", shorttitle="GTM - Team signal Buy/Sell", overlay=true)
len = input(10, minval=1, title="Length")
src = input(close, title="Source")
out = ema(src, len)

bearish = cross(close,out) == 1 and close[1] > close
bullish = cross(close,out) == 1 and close[1] < close

plotshape(bearish, color=red, style=shape.arrowdown, text="Sell", location=location.abovebar)
plotshape(bullish, color=green, style=shape.arrowup, text="Buy", location=location.belowbar)

Bình luận
Antelop123
how to make alert email on the bar signal?
msY
I like this script. It has a way of releasing sales alarms and buying alarms.
VladimirPogrebnoy
good
Thêm nữa