在highstock的所有股票报价中将日期更改为UNIX时间戳

时间:2014-10-27 16:43:11

标签: javascript highstock

我想制作股票报价图(从yahoo finance下载为csv并更改为json数组),但是日期是标准格式(mm / dd / yyyy),但highstocks仅适用于unix时间戳(我猜)。请给我关于如何更改时间格式的完整代码。我知道date.parse()但我不知道如何将它应用于整个数据。 请帮我提供代码

$(function() {
    $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?a=e&filename=aapl-ohlc.json&callback=?', function(data) {

        // create the chart
        $('#container').highcharts('StockChart', {
            rangeSelector: {
                inputEnabled: $('#container').width() > 480,
                selected: 1
            },
            title: {
                text: 'AAPL Stock Price'
            },
            series: [{
                type: 'candlestick',
                name: 'AAPL Stock Price',
                data: [ // Y: [Open, High ,Low, Close]
                    /* May 2006 */
                    [Date.parse("8/2/2012"), 602.84, 610.69, 600.25, 607.79, 83039600],
                    [Date.parse("8/3/2012"), 613.63, 617.98, 611.56, 615.7, 86230200],
                    [Date.parse("8/6/2012"), 617.29, 624.87, 615.26, 622.55, 75525800],
                    [Date.parse("8/7/2012"), 622.77, 625, 618.04, 620.91, 72611700]
                    ["8/7/2012", 622.77, 625, 618.04, 620.91, 72611700],
                    ["8/6/2012", 617.29, 624.87, 615.26, 622.55, 75525800],
                    ["8/3/2012", 613.63, 617.98, 611.56, 615.7, 86230200],
                    ["8/2/2012", 602.84, 610.69, 600.25, 607.79, 83039600],
                    ["8/1/2012", 615.91, 616.4, 603, 606.81, 96125400]
                ],
                dataGrouping: {
                    units: [
                        [
                            'week', // unit name
                            [1] // allowed multiples
                        ],
                        [
                            'month', [1, 2, 3, 4, 6]
                        ]
                    ]
                }
            }]
        });
    });
});

我手动输入数据,但我不知道使用样本数据

 $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?a=e&filename=aapl-ohlc.json&callback=?', function (data) {

1 个答案:

答案 0 :(得分:1)

当您从json获取数据时,您需要在预处理中使用将日期映射到时间戳。使用任何循环/条件来准备包含序列的新数组,包括正确的值。