首页 > TAG信息列表 > Tradingview

Tradingview 双均线系统

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © xichengjiang //@version=4 study("MA+EMA", overlay = true) e1 = ema(close, 20) c1 = sma(close, 20) e2 = ema(close, 60) c2 = sma(cl

vue 使用TradingView制作K线图(模仿火币)详解

前言: 项目需求要写K线图,echarts图表实现不了里面的功能,所以要用到TradingView,这个真心让人头疼,百度的东西也很少,花了很久才实现出来了。 效果图: k线是实时更新的,可以正常根据数据跳动 index.html 引入js和css文件 我这里是vue-cli4 ,vue-cli4和vue-cli2文件夹不一样 如果你是