highcharts简单移动平均每天,每周,每月

时间:2018-02-12 23:43:04

标签: highcharts moving-average candlestick-chart

我想使用按钮按天,周和月显示烛台,但我希望移动平均线不会自动更改(仅限日移动平均线)。

_chart = new Highcharts.stockChart('container', {

    rangeSelector: {
        selected: 2
    },

    title: {
        text: 'AAPL Stock Price'
    },

    legend: {
        enabled: true
    },

    plotOptions: {
        series: {
            showInLegend: true
        }
    },

    series: [{
        type: 'ohlc',
        id: 'aapl',
        name: 'AAPL Stock Price',
        data: data
    }, {
        type: 'sma',
        linkedTo: 'aapl'
    }, {
        type: 'sma',
        linkedTo: 'aapl',
        params: {
            period: 50
        }
    }]
  });
  });
 change(function() {

    var unit = $(this).val();
    console.log(123123);

    _chart.series.forEach(function(ser) {
        ser.update({
            dataGrouping: {
                units: [ [unit, [1]] ]
            }
        }, false);
    });

    console.log(unit);
    _chart.redraw(unit);
    console.log(_chart);
});

0 个答案:

没有答案