我如何使用遵循EMA8的松树脚本输出水平线。您应该进行少量计算,然后在所需的时间以正确的价格打印该行。
EMA 8(关闭)减去ATR(14)的1/2 =线路输出。
答案 0 :(得分:0)
要减去atr,您可以调用内置的atr
函数
atr14 = atr(14)
要绘制水平射线,可以设置trackprice
函数的plot
自变量。但是,它也会将线向左扩展。
//@version=3
study("LINE", overlay=true)
ma_len = 8
src = close
res = "D"
htf_ma = sma(src, ma_len)
out = security(tickerid, res, htf_ma)
plot(out, color=red, show_last=1, linewidth=3)
atr14 = atr(14)
plot(out - (atr14/2), color=red, linewidth=3, show_last=1, trackprice = true)