我正在建立一个比特币交易网站。我想使用我在工作区中提取的交易视图图表库。我想知道如何提供我自己的数据源。数据馈送文件应采用哪种格式(如 php、js、json)?
var _datafeed = new Datafeeds.UDFCompatibleDatafeed("http://localhost/workspace/charting");
//var _datafeed = new Datafeeds.UDFCompatibleDatafeed("https://demo_feed.tradingview.com");
TradingView.onready(function () {
var widget = window.tvWidget = new TradingView.widget({
debug: true, // uncomment this line to see Library errors and warnings in the console
fullscreen: false,
symbol: 'A',
interval: 'D',
timezone: "America/New_York",
container_id: "tv_chart_container",
locale: getParameterByName('lang') || "en",
datafeed: _datafeed,
library_path: "charting_library/",
});
});
在上面的代码中,图表是用演示链接绘制的。当我将其更改为我的路径时,出现“无效符号”错误。我在哪里指定 config 和 symbol_info 以及它们的文件格式是什么?我是一个完全的新手。请帮忙 。
任何以正确方式移动的建议表示赞赏。我被困住了!!