是否可以使用Tradingview API绘制图案(XABCD)?

时间:2019-03-06 23:57:16

标签: trading algorithmic-trading tradingview-api

我正在尝试构建谐波模式检测系统。我想在前端使用Tradingview UI,但我想知道是否可以通过其API以编程方式绘制这些模式。

在图表上,我们可以从模式工具箱中选择工具来手动绘制它。例如: bat pattern

我们可以用代码绘制吗?

1 个答案:

答案 0 :(得分:0)

是的,使用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'
        }
    )