我正在尝试建立一个谐波模式检测系统。我想使用Tradingview UI作为前端,但我想知道是否有可能通过他们的API以编程方式绘制这些模式。
在图表上,我们可以手动绘制它,从pattern工具箱中选择tool。例如:bat pattern
我们能设法用代码来绘制它吗?
发布于 2019-03-24 07:35:44
可以,在使用createMultipointShape()
使用TradingView Charting Library时,您可以绘制复杂的形状/绘图
tradingViewWidget.chart.createMultipointShape(
// indicator points
[
{time: pointTime1, price: pointPrice1},
{time: pointTime2, price: pointPrice2},
{time: pointTime3, price: pointPrice3},
{time: pointTime4, price: pointPrice4},
{time: pointTime5, price: pointPrice5}
],
// settings/overrrides
{
shape: 'xabcd_pattern'
}
)
https://stackoverflow.com/questions/55034033
复制