josetolima

Alert GetTrendStrategy BTCUSD

//@version=2
study(title="Alert GetTrendStrategy BTCUSD", shorttitle="GTSBTC", overlay=true)
tim=input('370')

out1 = security(tickerid, tim, open)
out2 = security(tickerid, tim, close)


//buy = cross(out1,out2) and out1<out2 and close
//sell = cross(out1,out2) and out1>out2 and close
//long = (buy*close? buy*close : na)
//short = (sell*close? sell*close : na)

plot(out1,color=red, title='Rojo')
plot(out2,color=green, title='Verde')

//Marker
//plotshape(long, "Buy", shape.triangleup, location.belowbar, blue, offset=0, text="buy", size=size.tiny)
//plotshape(short, "Sell", shape.triangledown, location.abovebar, red, offset=0, text="sell", size=size.tiny)


gtsBuy = crossover(security(tickerid, tim, close),security(tickerid, tim, open))
alertcondition(gtsBuy,title='BuyCondition', message='BTCUSD GTS Buy')


gtsSell = crossunder(security(tickerid, tim, close),security(tickerid, tim, open))


alertcondition(gtsSell,title='SellCondition', message='BTCUSD GTS Sell')

plotshape(gtsBuy, "Buy", shape.triangleup, location.belowbar, #400FEA, offset=0, text="Buy", size=size.tiny)
plotshape(gtsSell, "Sell", shape.triangledown, location.abovebar, fuchsia, offset=0, text="Sell", size=size.tiny)
受保护脚本
该脚本是闭源发布的,您可以自由使用它。您可以收藏它以在图表上使用。您无法查看或修改其源代码。
免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?