在“松树脚本”的移动平均线上绘制水平线

时间:2020-10-22 13:56:34

标签: pine-script

我如何使用遵循EMA8的松树脚本输出水平线。您应该进行少量计算,然后在所需的时间以正确的价格打印该行。

EMA 8(关闭)减去ATR(14)的1/2 =线路输出。

1 个答案:

答案 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)

enter image description here