如何使用TradingView轻量级库绘制具有不同颜色的多个图表?

问题描述

我正在尝试使用以下代码绘制两个不同的图表(长度不同),但不知道如何为图表指定颜色?还不确定下面的代码是否会在同一TradingView窗口中绘制两个图表?

this.apiService.predictor(this.selectedStock,this.startDay,this.endDay).subscribe((results) => {
  const lineSeries = this.chart.addLineSeries()

    for(let result of results[0]['prediction_value']) {
      console.log("the result1 is",result);
      lineSeries.update({time : result.time,value : result.price})
    }
  const lineSeries2 = this.chart.addLineSeries()

    for(let result of results[0]['real_value']) {
      console.log("the result2 is",result);

      lineSeries.update({time : result.time,value : result.price})
    }

result数组如下所示:

the result1 is {price: 18,time: "2019-09-28"}
the result1 is {price: 68,time: "2019-10-01"}
the result1 is {price: 5,time: "2019-10-04"}
the result1 is {price: 11,time: "2019-10-07"}
the result1 is {price: 8,time: "2019-10-11"}
the result1 is {price: 14,time: "2019-10-14"}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...