我想画一条水平线,将所有价格水平的蜡烛高点和低点连接起来 以确定需求供应区域并显示在所有价格水平下水平线连接的蜡烛高点和低点的数量。
我想确定较早起到支撑/阻力作用的价格水平。
//@version=2
study("Horizontal line", overlay=true)
plot(high, trackprice=true, offset=-9999)
plot(high[1], trackprice=true, offset=-9999)
plot(high[2], trackprice=true, offset=-9999)
plot(high[20], trackprice=true, offset=-9999)
// trackprice=true plots horizontal line on high[1]
// offset=-9999 hides the plot
//plot(high, color=#FFFFFFFF) // forces to show study
使用上面的代码,我只能绘制单个蜡烛高的水平线,但是问题是:
如何绘制水平线,该水平线连接至少10支蜡烛,在特定的给定范围内(例如最近的500支蜡烛)。
如何显示以特定价格水平水平线连接的蜡烛的数量?
请帮助。