Skip to content

Instantly share code, notes, and snippets.

@ColinEberhardt
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ColinEberhardt/8f0fe81842c8e579818e to your computer and use it in GitHub Desktop.
Save ColinEberhardt/8f0fe81842c8e579818e to your computer and use it in GitHub Desktop.
Yahoo Finance Chart Step 7 - Annotations
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="http://colineberhardt.github.io/d3fc/Layout.js"></script>
<script src="http://colineberhardt.github.io/d3fc/d3fc.js"></script>
<link href="http://colineberhardt.github.io/d3fc/d3fc.css" rel="stylesheet"/>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<div style='margin-right: 40px;'>
<svg id='time-series' style='height: 300px; width: 100%; overflow: visible'>
<defs>
<linearGradient id="area-gradient"
x1="0%" y1="0%"
x2="0%" y2="100%">
<stop offset="0%" stop-opacity="0.3" stop-color="#fff" />
<stop offset="100%" stop-opacity="0" stop-color="#1a9af9" />
</linearGradient>
</defs>
</svg>
</div>
<script src="script.js"></script>
</body>
</html>
d3.csv('yahoo.csv')
.row(function(d) {
d.date = new Date(d.Timestamp * 1000);
return d;
})
.get(function(error, rows) { renderChart(rows); });
var yAxisWidth = 40,
xAxisHeight = 20;
var dateFormat = d3.time.format('%a %H:%M%p');
var priceFormat = d3.format('.2f');
function renderChart(data) {
var movingAverage = fc.indicator.algorithm.exponentialMovingAverage()
.value(function(d) { return d.close; })
.windowSize(20);
movingAverage(data);
var container = d3.select('#time-series');
var volumeContainer = container.selectAll('g.volume')
.data([data]);
volumeContainer.enter()
.append('g')
.attr({
'class': 'volume',
})
.layout({
position: 'absolute',
top: 150,
bottom: xAxisHeight,
right: yAxisWidth,
left: 0
});
var layout = fc.layout();
container.layout();
var volumeScale = d3.scale.linear()
.domain([0, d3.max(data, function (d) { return Number(d.volume); })])
.range([volumeContainer.layout('height'), 0]);
var chart = fc.chart.linearTimeSeries()
.xDomain(fc.util.extent(data, 'date'))
.yDomain(fc.util.extent(data, ['open', 'close']))
.xTickFormat(dateFormat)
.yTickFormat(priceFormat)
.yTicks(5)
.yNice(5)
.yOrient('right')
.yTickSize(yAxisWidth, 0)
.xTickSize(xAxisHeight)
.xTicks(3);
var emaClose = fc.annotation.line()
.value(function(d) { return d.exponentialMovingAverage; })
.label(function(d) { return priceFormat(d.exponentialMovingAverage); })
.decorate(function(sel) {
sel.enter().classed('ema', true);
});
var lastClose = fc.annotation.line()
.value(function(d) { return d.close; })
.label(function(d) { return priceFormat(d.close); })
.decorate(function(sel) {
sel.enter().classed('close', true);
});
var area = fc.series.area()
.y0Value(chart.yDomain()[0])
.yValue(function(d) { return d.open; });
var line = fc.series.line()
.yValue(function(d) { return d.open; });
var emaLine = fc.series.line()
.yValue(function(d) { return d.exponentialMovingAverage; })
.decorate(function(g) {
g.classed('ema', true);
});
var gridlines = fc.annotation.gridline()
.yTicks(5)
.xTicks(0);
var multi = fc.series.multi()
.series([gridlines, area, emaLine, line, emaClose, lastClose])
.mapping(function(series) {
switch (series) {
case emaClose:
case lastClose:
return [data[data.length - 1]];
default:
return data;
}
});
chart.plotArea(multi);
d3.select('#time-series')
.datum(data)
.call(chart);
var volume = fc.series.bar()
.xScale(chart.xScale())
.yScale(volumeScale)
.yValue(function(d) { return d.volume; })
.decorate(function(sel) {
sel.select('path')
.style('stroke', function(d, i) {
return d.close > d.open ? 'red' : 'green';
});
});
volumeContainer
.datum(data)
.call(volume);
d3.selectAll('.y-axis text')
.style('text-anchor', 'end')
.attr('transform', 'translate(-3, -8)');
d3.selectAll('.x-axis text')
.attr('dy', undefined)
.style({'text-anchor': 'start', 'dominant-baseline': 'central'})
.attr('transform', 'translate(3, -' + (xAxisHeight / 2 + 3) + ' )');
}
body {
margin: 0;
}
svg {
display: block;
}
path.area {
fill: url(#area-gradient);
fill-opacity: 1;
}
path.line {
stroke: rgb(26, 154, 249);
}
path.ema {
stroke: #c00;
fill: none;
}
.x-axis text {
font-weight: bold;
}
.background {
opacity: 0.7;
}
Timestamp close high low open volume
1433424650 43.0300 43.0500 43.0300 43.0400 176400
1433424718 42.9700 43.0598 42.9700 43.0300 53000
1433424720 43.0000 43.0400 42.9600 42.9900 49600
1433424836 42.9900 43.0500 42.9700 43.0000 50100
1433424899 42.9600 42.9900 42.9300 42.9800 68200
1433424959 43.0600 43.0900 42.9400 42.9600 84100
1433425015 43.1100 43.1300 43.0500 43.0500 26400
1433425078 43.1400 43.1400 43.0500 43.1200 26000
1433425080 43.1798 43.1900 43.1300 43.1400 19500
1433425140 43.2000 43.2100 43.1700 43.1700 20000
1433425259 43.2700 43.3100 43.2100 43.2100 48100
1433425319 43.2700 43.2800 43.2400 43.2800 39400
1433425378 43.2300 43.2700 43.2200 43.2700 41200
1433425431 43.2200 43.2400 43.2000 43.2300 25800
1433425447 43.3500 43.3600 43.2600 43.2700 53100
1433425558 43.3100 43.3500 43.3000 43.3500 32600
1433425610 43.3400 43.3500 43.2999 43.3000 27800
1433425674 43.2700 43.3400 43.2672 43.3300 17300
1433425738 43.2500 43.3000 43.2477 43.2800 38300
1433425795 43.1400 43.2400 43.1400 43.2400 23800
1433425858 43.1232 43.1800 43.1200 43.1800 25900
1433425918 43.1625 43.1700 43.1200 43.1200 7900
1433425979 43.2400 43.2400 43.1700 43.1700 15400
1433426034 43.2500 43.2600 43.2400 43.2500 19700
1433426043 43.2454 43.2659 43.2200 43.2400 25000
1433426218 43.2900 43.3100 43.2700 43.3000 9400
1433426278 43.3310 43.3310 43.2600 43.2840 17100
1433426339 43.3500 43.3800 43.3400 43.3400 37700
1433426340 43.3600 43.3700 43.3400 43.3400 15200
1433426458 43.4399 43.4400 43.3500 43.3700 37200
1433426516 43.3900 43.4400 43.3800 43.4400 17000
1433426576 43.3900 43.4000 43.3800 43.3800 21000
1433426632 43.3400 43.3700 43.3400 43.3700 8300
1433426699 43.3400 43.3600 43.3400 43.3500 18900
1433426706 43.3100 43.3400 43.3000 43.3400 13400
1433426763 43.2900 43.3100 43.2900 43.3000 5700
1433426821 43.2900 43.3000 43.2900 43.2900 12600
1433426886 43.2800 43.3000 43.2800 43.2900 24500
1433426999 43.3000 43.3000 43.2700 43.2770 34700
1433427055 43.2850 43.2900 43.2810 43.2850 4000
1433427062 43.3100 43.3200 43.2800 43.2800 24500
1433427177 43.3100 43.3200 43.3100 43.3100 16200
1433427234 43.3300 43.3500 43.3200 43.3300 17300
1433427241 43.2800 43.3200 43.2800 43.3200 5700
1433427355 43.2700 43.2800 43.2300 43.2800 19400
1433427367 43.2800 43.2850 43.2700 43.2750 12700
1433427468 43.2700 43.2900 43.2700 43.2850 9200
1433427511 43.2800 43.2800 43.2650 43.2700 1800
1433427593 43.2800 43.2800 43.2700 43.2750 1500
1433427642 43.3000 43.3000 43.2800 43.2800 13200
1433427662 43.2730 43.3000 43.2700 43.3000 10900
1433427726 43.2800 43.2800 43.2700 43.2700 5300
1433427795 43.2800 43.3000 43.2800 43.2900 17500
1433427894 43.2800 43.2810 43.2800 43.2800 7000
1433427958 43.2650 43.2868 43.2650 43.2800 16600
1433428018 43.2600 43.2600 43.2200 43.2300 14800
1433428071 43.2551 43.2551 43.2500 43.2500 200
1433428081 43.2700 43.2700 43.2500 43.2500 2600
1433428172 43.2700 43.2800 43.2400 43.2800 5000
1433428259 43.1600 43.2700 43.1550 43.2700 31200
1433428264 43.1500 43.1600 43.1200 43.1600 14300
1433428375 43.1100 43.1500 43.0800 43.1500 10300
1433428434 43.1300 43.1300 43.1100 43.1100 8300
1433428499 43.1300 43.1550 43.1200 43.1200 20000
1433428559 43.1300 43.1400 43.1200 43.1200 21300
1433428619 43.1200 43.1400 43.0900 43.1300 28100
1433428676 43.1300 43.1344 43.1000 43.1100 24800
1433428695 43.1467 43.1500 43.1200 43.1400 52300
1433428761 43.1300 43.1401 43.1000 43.1401 19700
1433428806 43.1250 43.1400 43.1200 43.1300 11000
1433428892 43.1200 43.1400 43.1200 43.1300 13300
1433428931 43.1200 43.1360 43.1200 43.1300 11300
1433428999 43.1400 43.1400 43.1300 43.1300 3500
1433429098 43.1500 43.1500 43.1300 43.1300 22900
1433429157 43.1700 43.1700 43.1400 43.1400 24400
1433429218 43.1500 43.1710 43.1500 43.1700 7800
1433429276 43.1223 43.1535 43.1200 43.1535 5800
1433429330 43.1400 43.1400 43.1100 43.1200 8100
1433429398 43.2000 43.2000 43.1400 43.1400 10400
1433429457 43.1990 43.2000 43.1800 43.1800 26800
1433429514 43.1901 43.2000 43.1900 43.2000 45600
1433429574 43.1926 43.2000 43.1700 43.1900 6900
1433429623 43.1900 43.1950 43.1900 43.1900 5300
1433429695 43.1900 43.1900 43.1800 43.1900 3900
1433429758 43.1750 43.1900 43.1700 43.1900 8600
1433429818 43.1700 43.1900 43.1600 43.1700 14300
1433429879 43.1600 43.1650 43.1600 43.1600 2600
1433429880 43.1700 43.1700 43.1500 43.1600 4300
1433429941 43.1400 43.1701 43.1400 43.1701 13900
1433430050 43.1100 43.1400 43.1100 43.1300 16900
1433430114 43.0800 43.1100 43.0800 43.1100 8500
1433430120 43.1200 43.1200 43.0800 43.0825 9000
1433430233 43.0900 43.1100 43.0700 43.1100 7300
1433430275 43.0900 43.1000 43.0800 43.0800 5200
1433430350 43.0600 43.0800 43.0500 43.0800 38800
1433430417 43.1000 43.1000 43.0500 43.0599 15800
1433430422 43.1000 43.1000 43.0900 43.1000 5800
1433430539 43.1253 43.1253 43.0900 43.1000 18000
1433430598 43.1021 43.1200 43.1000 43.1200 9900
1433430600 43.1000 43.1000 43.0700 43.1000 11000
1433430718 43.1200 43.1300 43.1000 43.1000 7400
1433430779 43.1700 43.1700 43.1200 43.1200 4600
1433430781 43.1600 43.1650 43.1500 43.1500 10800
1433430841 43.1900 43.2000 43.1700 43.1700 9900
1433430947 43.1861 43.1950 43.1800 43.1900 3700
1433431018 43.2699 43.2800 43.1850 43.1850 50800
1433431021 43.2900 43.3000 43.2500 43.2620 28900
1433431137 43.2900 43.3100 43.2725 43.2900 18900
1433431199 43.2630 43.2800 43.2600 43.2700 20200
1433431211 43.2600 43.2800 43.2500 43.2700 12600
1433431270 43.2550 43.2700 43.2400 43.2600 11000
1433431321 43.2700 43.2700 43.2500 43.2500 1800
1433431382 43.2900 43.2900 43.2800 43.2800 600
1433431492 43.2632 43.2850 43.2600 43.2850 7000
1433431559 43.2600 43.2800 43.2600 43.2700 19700
1433431562 43.2400 43.2800 43.2400 43.2649 8500
1433431630 43.2400 43.2550 43.2300 43.2500 8200
1433431737 43.2400 43.2600 43.2300 43.2500 14200
1433431798 43.2075 43.2400 43.2000 43.2400 12400
1433431859 43.2100 43.2100 43.2000 43.2100 11500
1433431860 43.2150 43.2200 43.2000 43.2050 18200
1433431977 43.1800 43.2200 43.1800 43.2100 16100
1433432039 43.1900 43.1900 43.1800 43.1800 6300
1433432099 43.1800 43.1900 43.1700 43.1800 3100
1433432108 43.1700 43.1900 43.1700 43.1790 6100
1433432218 43.2000 43.2100 43.1600 43.1700 20000
1433432277 43.1800 43.2100 43.1800 43.2000 3100
1433432335 43.2099 43.2100 43.1900 43.1900 10400
1433432358 43.2000 43.2100 43.2000 43.2000 9200
1433432451 43.2200 43.2300 43.2050 43.2100 15500
1433432461 43.2100 43.2400 43.2100 43.2200 22100
1433432575 43.2100 43.2200 43.2000 43.2200 62000
1433432612 43.2062 43.2200 43.2062 43.2200 26600
1433432642 43.1700 43.2050 43.1600 43.2000 27900
1433432700 43.1500 43.1600 43.1400 43.1600 16400
1433432805 43.1600 43.1600 43.1425 43.1600 7800
1433432878 43.1700 43.1800 43.1600 43.1600 11700
1433432935 43.1500 43.1672 43.1400 43.1600 9300
1433432999 43.1451 43.1700 43.1350 43.1400 9400
1433433054 43.1700 43.1700 43.1400 43.1400 6700
1433433065 43.1700 43.1700 43.1600 43.1700 12600
1433433179 43.1200 43.1600 43.1150 43.1600 12700
1433433181 43.1300 43.1300 43.1100 43.1200 5000
1433433294 43.1390 43.1390 43.1200 43.1255 10100
1433433357 43.1000 43.1428 43.0900 43.1357 23700
1433433418 43.0900 43.1100 43.0850 43.1000 5500
1433433477 43.1100 43.1100 43.0800 43.1000 35400
1433433539 43.0800 43.1100 43.0750 43.1100 7400
1433433540 43.0600 43.0900 43.0600 43.0800 18400
1433433658 43.0600 43.0650 43.0400 43.0600 52300
1433433660 43.0453 43.0600 43.0400 43.0600 26300
1433433775 43.0400 43.0600 43.0250 43.0500 41000
1433433838 43.0300 43.0500 43.0300 43.0300 6300
1433433899 43.0350 43.0400 43.0100 43.0300 25300
1433433900 43.0300 43.0400 43.0250 43.0400 48800
1433434018 43.0600 43.0800 43.0300 43.0300 52100
1433434021 43.0600 43.0700 43.0500 43.0700 9000
1433434135 43.0800 43.0800 43.0500 43.0500 21800
1433434199 43.0800 43.0844 43.0697 43.0844 5800
1433434200 43.0600 43.1000 43.0600 43.0700 24400
1433434318 43.0540 43.0700 43.0500 43.0500 15000
1433434330 43.0600 43.0700 43.0597 43.0600 5400
1433434381 43.0600 43.0700 43.0500 43.0700 13800
1433434499 43.0499 43.0700 43.0496 43.0600 7500
1433434511 43.0400 43.0500 43.0400 43.0400 4500
1433434619 43.0600 43.0700 43.0200 43.0400 8700
1433434620 43.0350 43.0600 43.0350 43.0600 6700
1433434739 43.0242 43.0400 43.0242 43.0400 4900
1433434750 43.0200 43.0400 43.0200 43.0215 17800
1433434800 43.0100 43.0400 43.0100 43.0100 10200
1433434913 43.0400 43.0450 43.0200 43.0200 12100
1433434920 43.0400 43.0550 43.0327 43.0400 17800
1433435032 43.0300 43.0400 43.0300 43.0400 9200
1433435048 43.0300 43.0400 43.0200 43.0400 5400
1433435101 43.0200 43.0400 43.0126 43.0300 18400
1433435219 43.0200 43.0300 43.0100 43.0200 24600
1433435271 43.0119 43.0400 43.0100 43.0300 18400
1433435334 42.9900 43.0100 42.9900 43.0100 31200
1433435345 43.0100 43.0200 42.9900 42.9900 9300
1433435443 43.0100 43.0100 42.9900 43.0000 4600
1433435460 43.0100 43.0200 43.0100 43.0200 3300
1433435576 43.0100 43.0300 43.0000 43.0000 3100
1433435639 42.9900 43.0300 42.9900 43.0035 18100
1433435651 43.0285 43.0300 43.0000 43.0000 10400
1433435753 43.0200 43.0400 43.0197 43.0200 6900
1433435760 43.0200 43.0380 43.0200 43.0200 7000
1433435876 43.0400 43.0400 43.0299 43.0300 9800
1433435890 43.0400 43.0500 43.0300 43.0500 5500
1433435940 43.0599 43.0599 43.0400 43.0400 7700
1433436005 43.0372 43.0470 43.0372 43.0405 7200
1433436061 43.0400 43.0450 43.0350 43.0400 3300
1433436179 43.0300 43.0400 43.0297 43.0300 12300
1433436180 43.0300 43.0400 43.0200 43.0300 14200
1433436293 43.0300 43.0300 43.0299 43.0300 4600
1433436332 43.0400 43.0450 43.0300 43.0300 9900
1433436419 43.0350 43.0400 43.0300 43.0400 1800
1433436453 43.0300 43.0328 43.0300 43.0300 1300
1433436536 43.0300 43.0362 43.0300 43.0300 1700
1433436599 43.0200 43.0300 43.0200 43.0300 20400
1433436654 43.0000 43.0210 43.0000 43.0210 8400
1433436660 43.0100 43.0100 43.0000 43.0000 7600
1433436769 43.0100 43.0200 42.9999 43.0000 7400
1433436830 43.0000 43.0100 43.0000 43.0100 1900
1433436876 42.9945 43.0000 42.9900 42.9940 8100
1433436958 42.9600 43.0000 42.9600 42.9955 46900
1433436962 42.9550 42.9700 42.9550 42.9600 5800
1433437078 42.9900 43.0000 42.9300 42.9500 50000
1433437139 42.9600 42.9850 42.9500 42.9850 12500
1433437191 42.9700 42.9800 42.9650 42.9700 13600
1433437257 42.9800 42.9800 42.9600 42.9700 11100
1433437262 42.9200 42.9800 42.9100 42.9800 25300
1433437320 42.9232 42.9500 42.9200 42.9200 14100
1433437434 42.9400 42.9600 42.9200 42.9200 6800
1433437498 42.9300 42.9500 42.9200 42.9499 14400
1433437558 42.9800 42.9800 42.9400 42.9400 19300
1433437619 42.9700 43.0000 42.9700 42.9700 28500
1433437678 42.9800 42.9800 42.9500 42.9700 31500
1433437686 42.9600 42.9800 42.9600 42.9800 21900
1433437745 42.9900 42.9900 42.9500 42.9500 8400
1433437859 42.9800 42.9800 42.9450 42.9800 20200
1433437862 42.9800 43.0000 42.9700 42.9800 8700
1433437979 42.9700 42.9800 42.9500 42.9700 8100
1433438039 42.9550 42.9800 42.9450 42.9800 8200
1433438043 42.9600 42.9700 42.9500 42.9565 9500
1433438149 42.9300 42.9500 42.9250 42.9500 16600
1433438218 42.9200 42.9400 42.9100 42.9300 17600
1433438279 42.9250 42.9400 42.9200 42.9200 17100
1433438334 42.9150 42.9400 42.9100 42.9400 110500
1433438399 42.9100 42.9250 42.8800 42.9195 65400
1433438459 42.9100 42.9301 42.9050 42.9100 33100
1433438460 42.9147 42.9200 42.8950 42.9100 36600
1433438578 42.8800 42.9400 42.8800 42.9200 18800
1433438632 42.8900 42.8920 42.8700 42.8800 14300
1433438642 42.8900 42.9000 42.8800 42.9000 59400
1433438759 42.9000 42.9150 42.8750 42.8950 23700
1433438819 42.9300 42.9400 42.9000 42.9090 17500
1433438872 42.9300 42.9500 42.9250 42.9350 17300
1433438938 42.8945 42.9245 42.8850 42.9245 18000
1433438944 42.8700 42.9000 42.8700 42.9000 5500
1433439059 42.8800 42.8900 42.8600 42.8700 27000
1433439096 42.9100 42.9100 42.8750 42.8800 17000
1433439179 42.9020 42.9100 42.8900 42.9000 51700
1433439239 42.9100 42.9100 42.8800 42.9000 47600
1433439240 42.9050 42.9100 42.8950 42.9100 10800
1433439353 42.8900 42.9000 42.8750 42.9000 13000
1433439414 42.8700 42.9000 42.8600 42.9000 7800
1433439420 42.8700 42.8710 42.8550 42.8700 7800
1433439481 42.8900 42.8900 42.8550 42.8700 10100
1433439599 42.9100 42.9100 42.8800 42.8900 5700
1433439600 42.8900 42.9100 42.8650 42.9100 27100
1433439679 42.8900 42.8900 42.8750 42.8800 5300
1433439771 42.8900 42.8900 42.8700 42.8800 8300
1433439820 42.8850 42.8901 42.8800 42.8901 4000
1433439849 42.8650 42.8801 42.8650 42.8801 3900
1433439956 42.8500 42.8700 42.8350 42.8700 20200
1433439960 42.8400 42.8433 42.8100 42.8433 28600
1433440021 42.8500 42.8600 42.8400 42.8400 7700
1433440139 42.8600 42.8600 42.8400 42.8400 10000
1433440198 42.8600 42.8800 42.8550 42.8630 12600
1433440257 42.8600 42.8800 42.8500 42.8600 11300
1433440317 42.8650 42.8751 42.8600 42.8600 7400
1433440321 42.8550 42.8600 42.8450 42.8600 9800
1433440394 42.8699 42.8700 42.8550 42.8550 3800
1433440492 42.8700 42.8700 42.8500 42.8667 18600
1433440506 42.8450 42.8700 42.8450 42.8625 16300
1433440599 42.8200 42.8500 42.8200 42.8500 11600
1433440621 42.8300 42.8300 42.8200 42.8205 10400
1433440734 42.8500 42.8600 42.8200 42.8300 16000
1433440742 42.8500 42.8700 42.8400 42.8600 26000
1433440857 42.8600 42.8600 42.8400 42.8500 30900
1433440919 42.8600 42.8600 42.8300 42.8500 70300
1433440920 42.8200 42.8600 42.8200 42.8600 31500
1433441039 42.8200 42.8400 42.8000 42.8200 47800
1433441090 42.8200 42.8500 42.8200 42.8200 22700
1433441157 42.8240 42.8300 42.8200 42.8200 3700
1433441215 42.8200 42.8300 42.8200 42.8300 700
1433441228 42.8100 42.8200 42.8050 42.8200 13100
1433441281 42.7900 42.8100 42.7900 42.8100 20900
1433441343 42.8100 42.8200 42.7900 42.7900 19000
1433441401 42.7950 42.8100 42.7800 42.8100 9800
1433441463 42.7950 42.8000 42.7600 42.7950 28900
1433441525 42.8100 42.8100 42.7900 42.7900 15000
1433441638 42.8500 42.8500 42.8200 42.8200 8900
1433441695 42.8450 42.8600 42.8250 42.8400 14100
1433441753 42.8400 42.8500 42.8400 42.8421 3300
1433441762 42.8501 42.8501 42.8300 42.8400 15200
1433441877 42.8700 42.8700 42.8600 42.8600 1800
1433441881 42.8500 42.8700 42.8500 42.8700 5100
1433441998 42.8600 42.8600 42.8401 42.8500 8700
1433442055 42.8550 42.8700 42.8500 42.8500 6600
1433442119 42.8700 42.8800 42.8601 42.8700 13200
1433442120 42.8501 42.8800 42.8400 42.8600 25600
1433442239 42.8600 42.8600 42.8500 42.8550 13400
1433442298 42.8550 42.8700 42.8500 42.8500 14500
1433442312 42.8900 42.8900 42.8500 42.8600 22700
1433442393 42.8751 42.8850 42.8700 42.8850 5700
1433442420 42.8700 42.8765 42.8535 42.8765 12900
1433442539 42.8700 42.8700 42.8450 42.8600 12800
1433442599 42.8445 42.8800 42.8445 42.8700 8900
1433442657 42.8350 42.8600 42.8300 42.8500 7900
1433442670 42.8400 42.8500 42.8200 42.8300 15500
1433442720 42.8250 42.8600 42.8200 42.8500 26900
1433442785 42.8300 42.8400 42.8201 42.8300 4200
1433442862 42.8251 42.8300 42.8251 42.8300 400
1433442954 42.8200 42.8250 42.8000 42.8250 27500
1433443014 42.8400 42.8400 42.8150 42.8167 9100
1433443079 42.8250 42.8400 42.8200 42.8324 7900
1433443138 42.8250 42.8300 42.8200 42.8200 2900
1433443195 42.8125 42.8290 42.8100 42.8246 7600
1433443250 42.8100 42.8200 42.8000 42.8150 19500
1433443311 42.8450 42.8500 42.8150 42.8200 7000
1433443320 42.8546 42.8600 42.8500 42.8500 5800
1433443434 42.8500 42.8600 42.8500 42.8600 7300
1433443499 42.8900 42.8900 42.8400 42.8500 15900
1433443558 42.8750 42.8800 42.8700 42.8800 6700
1433443615 42.8800 42.8800 42.8735 42.8750 1800
1433443677 42.8400 42.8800 42.8400 42.8750 14900
1433443722 42.8400 42.8500 42.8300 42.8400 8400
1433443799 42.8250 42.8400 42.8200 42.8400 18300
1433443850 42.8400 42.8500 42.8400 42.8400 2600
1433443862 42.8350 42.8500 42.8320 42.8400 5300
1433443978 42.8350 42.8500 42.8300 42.8400 19500
1433444032 42.8300 42.8400 42.8200 42.8300 24000
1433444099 42.8350 42.8500 42.8201 42.8300 25100
1433444159 42.8350 42.8500 42.8300 42.8400 28800
1433444216 42.8700 42.8800 42.8350 42.8400 22900
1433444278 42.9000 42.9000 42.8600 42.8650 13400
1433444282 42.9200 42.9200 42.8950 42.9000 15500
1433444397 42.8900 42.9200 42.8900 42.9150 5500
1433444458 42.8950 42.9000 42.8900 42.9000 7900
1433444460 42.8950 42.9100 42.8900 42.8900 8900
1433444577 42.9200 42.9250 42.9050 42.9100 19100
1433444638 42.9100 42.9150 42.9000 42.9150 13100
1433444696 42.9300 42.9300 42.9050 42.9051 5100
1433444700 42.9200 42.9400 42.9200 42.9300 8900
1433444808 42.9200 42.9200 42.8950 42.9200 26100
1433444876 42.9130 42.9200 42.9100 42.9200 14000
1433444937 42.9100 42.9100 42.8800 42.9100 13900
1433444996 42.9100 42.9100 42.8900 42.9100 7000
1433445059 42.9026 42.9150 42.9000 42.9100 8800
1433445060 42.9000 42.9100 42.8800 42.9100 17500
1433445122 42.9100 42.9100 42.8950 42.9100 13800
1433445238 42.9032 42.9100 42.8800 42.9100 13500
1433445297 42.8950 42.9015 42.8900 42.9015 6100
1433445358 42.8700 42.8900 42.8650 42.8900 31100
1433445419 42.8500 42.8900 42.8400 42.8800 30300
1433445420 42.8600 42.8715 42.8500 42.8500 21400
1433445483 42.8600 42.8700 42.8500 42.8600 20200
1433445598 42.8600 42.8600 42.8400 42.8500 12500
1433445655 42.8601 42.8700 42.8500 42.8500 11100
1433445709 42.8700 42.8700 42.8600 42.8700 1400
1433445778 42.8400 42.8600 42.8300 42.8600 24700
1433445831 42.8500 42.8500 42.8300 42.8342 10600
1433445899 42.8600 42.8800 42.8401 42.8401 29400
1433445959 42.8700 42.8700 42.8500 42.8600 8700
1433446019 42.8800 42.8840 42.8600 42.8700 15900
1433446025 42.8700 42.8800 42.8600 42.8800 9700
1433446131 42.8650 42.8800 42.8650 42.8700 7700
1433446198 42.8400 42.8600 42.8400 42.8600 9300
1433446258 42.8400 42.8800 42.8350 42.8500 38000
1433446260 42.8700 42.8800 42.8350 42.8500 12600
1433446328 42.8800 42.8800 42.8700 42.8800 2700
1433446439 42.8600 42.8700 42.8500 42.8700 15300
1433446497 42.8699 42.8700 42.8650 42.8700 1500
1433446558 42.8350 42.8625 42.8300 42.8625 28100
1433446566 42.8500 42.8500 42.8329 42.8350 36600
1433446631 42.8450 42.8500 42.8400 42.8500 2800
1433446739 42.8450 42.8500 42.8400 42.8500 3700
1433446740 42.8400 42.8500 42.8300 42.8499 23200
1433446859 42.8600 42.8800 42.8300 42.8354 82400
1433446918 42.8700 42.8800 42.8600 42.8600 23200
1433446977 42.8850 42.8900 42.8650 42.8650 27600
1433446984 42.8850 42.9000 42.8800 42.8900 14000
1433447048 42.8600 42.8899 42.8600 42.8800 4300
1433447103 42.8650 42.8700 42.8600 42.8650 5900
1433447217 42.8650 42.8700 42.8600 42.8650 8600
1433447222 42.8700 42.8800 42.8600 42.8600 44400
1433447280 42.8700 42.8790 42.8400 42.8600 69700
1433447399 42.8700 42.9000 42.8650 42.8750 34300
1433447400 42.8400 42.8700 42.8000 42.8700 145700
1433447460 42.8500 42.8500 42.8400 42.8450 18800
1433447574 42.8250 42.8547 42.8250 42.8500 21800
1433447580 42.8500 42.8500 42.8000 42.8300 59200
1433447699 42.8450 42.8600 42.8400 42.8500 32700
1433447700 42.8600 42.8650 42.8400 42.8500 83000
1433447760 42.8600 42.8650 42.8500 42.8550 68500
1433447879 42.8550 42.8650 42.8400 42.8600 144000
1433447939 42.8550 42.8600 42.8400 42.8550 57200
1433447940 42.9000 42.9100 42.8550 42.8550 150600
1433448000 42.8500 42.8500 42.8500 42.8500 350300
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment