如何在Pinescript中自定义图表?

时间:2019-06-20 22:53:49

标签: charts pine-script

我正在尝试创建自己的图表。对图表上的自定义交易时间感兴趣。

找到了类似的代码。但是它不能正常工作。问题在于它切掉了所有数据的开始和结束。而且我需要削减每天的开始和结束。

study("Candle cutter", overlay=false)

bar_num = nz(bar_num[1]) + 1
threshold = input(1, "candle # start")

_open = (bar_num > threshold) ? open : na
_high = (bar_num > threshold) ? high : na
_low = (bar_num > threshold) ? low : na
_close = (bar_num > threshold) ? close : na

plotcandle(_open, _high, _low, _close, title='Title', color = _open < _close ? green : red, wickcolor=black)

告诉我,怎么可能改变?如何解决问题?

0 个答案:

没有答案