TEST
Last active
August 19, 2019 11:06
-
-
Save rrag/88cd65baa331d57caa83 to your computer and use it in GitHub Desktop.
CandleStickChart with volume histogram overlay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| license: MIT | |
| height: 420 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| var { ChartCanvas, Chart, series, scale, coordinates, tooltip, axes, indicator, helper } = ReStock; | |
| var { CandlestickSeries, BarSeries } = series; | |
| var { discontinuousTimeScaleProvider } = scale; | |
| var { XAxis, YAxis } = axes; | |
| var { fitWidth, TypeChooser } = helper; | |
| class CandleStickStockScaleChartWithVolumeBarV1 extends React.Component { | |
| render() { | |
| var { data, type, width, ratio } = this.props; | |
| return ( | |
| <ChartCanvas ratio={ratio} width={width} height={400} | |
| margin={{left: 50, right: 50, top:10, bottom: 30}} type={type} | |
| seriesName="MSFT" | |
| data={data} | |
| xAccessor={d => d.date} xScaleProvider={discontinuousTimeScaleProvider} | |
| xExtents={[new Date(2012, 0, 1), new Date(2012, 6, 2)]}> | |
| <Chart id={1} yExtents={d => [d.high, d.low]}> | |
| <XAxis axisAt="bottom" orient="bottom"/> | |
| <YAxis axisAt="right" orient="right" ticks={5} /> | |
| <CandlestickSeries /> | |
| </Chart> | |
| <Chart id={2} yExtents={d => d.volume}> | |
| <YAxis axisAt="left" orient="left" ticks={5} tickFormat={d3.format(".0s")}/> | |
| <BarSeries yAccessor={d => d.volume} /> | |
| </Chart> | |
| </ChartCanvas> | |
| ); | |
| } | |
| } | |
| CandleStickStockScaleChartWithVolumeBarV1.propTypes = { | |
| data: React.PropTypes.array.isRequired, | |
| width: React.PropTypes.number.isRequired, | |
| ratio: React.PropTypes.number.isRequired, | |
| type: React.PropTypes.oneOf(["svg", "hybrid"]).isRequired, | |
| }; | |
| CandleStickStockScaleChartWithVolumeBarV1.defaultProps = { | |
| type: "svg", | |
| }; | |
| CandleStickStockScaleChartWithVolumeBarV1 = fitWidth(CandleStickStockScaleChartWithVolumeBarV1); | |
| var parseDate = d3.timeParse("%Y-%m-%d %H:%M:%S"); | |
| d3["tsv"]("//rrag.github.io/react-stockcharts/data/MSFT.tsv", (err, data) => { | |
| /* change MSFT.tsv to MSFT_full.tsv above to see how this works with lots of data points */ | |
| data.forEach((d, i) => { | |
| d.date = new Date(d3.timeParse("%Y-%m-%d")(d.date).getTime()); | |
| d.open = +d.open; | |
| d.high = +d.high; | |
| d.low = +d.low; | |
| d.close = +d.close; | |
| d.volume = +d.volume; | |
| // console.log(d); | |
| }); | |
| /* change the type from hybrid to svg to compare the performance between svg and canvas */ | |
| ReactDOM.render(<TypeChooser type="hybrid">{type => <CandleStickStockScaleChartWithVolumeBarV1 data={data} type={type} />}</TypeChooser>, document.getElementById("chart")); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| var { ChartCanvas, Chart, DataSeries } = ReStock; | |
| var { CandlestickSeries, HistogramSeries } = ReStock.series; | |
| var { StockscaleTransformer } = ReStock.transforms; | |
| var { XAxis, YAxis } = ReStock.axes; | |
| var { fitWidth, TypeChooser } = ReStock.helper; | |
| class CandleStickStockScaleChartWithVolumeHistogramV1 extends React.Component { | |
| render() { | |
| var { data, type, width } = this.props; | |
| return ( | |
| <ChartCanvas width={width} height={400} | |
| margin={{left: 50, right: 50, top:10, bottom: 30}} initialDisplay={100} | |
| dataTransform={[ { transform: StockscaleTransformer } ]} | |
| data={data} type={type}> | |
| <Chart id={1} > | |
| <XAxis axisAt="bottom" orient="bottom"/> | |
| <YAxis axisAt="right" orient="right" ticks={5} /> | |
| <DataSeries id={0} yAccessor={CandlestickSeries.yAccessor} > | |
| <CandlestickSeries /> | |
| </DataSeries> | |
| </Chart> | |
| <Chart id={2}> | |
| <YAxis axisAt="left" orient="left" ticks={5} tickFormat={d3.format("s")}/> | |
| <DataSeries id={0} yAccessor={(d) => d.volume} > | |
| <HistogramSeries /> | |
| </DataSeries> | |
| </Chart> | |
| </ChartCanvas> | |
| ); | |
| } | |
| } | |
| CandleStickStockScaleChartWithVolumeHistogramV1.propTypes = { | |
| data: React.PropTypes.array.isRequired, | |
| width: React.PropTypes.number.isRequired, | |
| type: React.PropTypes.oneOf(["svg", "hybrid"]).isRequired, | |
| }; | |
| CandleStickStockScaleChartWithVolumeHistogramV1.defaultProps = { | |
| type: "svg", | |
| }; | |
| CandleStickStockScaleChartWithVolumeHistogramV1 = fitWidth(CandleStickStockScaleChartWithVolumeHistogramV1); | |
| var parseDate = d3.time.format("%Y-%m-%d").parse; | |
| d3.tsv("//rrag.github.io/react-stockcharts/data/MSFT.tsv", (err, data) => { | |
| /* change MSFT.tsv to MSFT_full.tsv above to see how this works with lots of data points */ | |
| data.forEach((d, i) => { | |
| d.date = new Date(parseDate(d.date).getTime()); | |
| d.open = +d.open; | |
| d.high = +d.high; | |
| d.low = +d.low; | |
| d.close = +d.close; | |
| d.volume = +d.volume; | |
| // console.log(d); | |
| }); | |
| /* change the type from hybrid to svg to compare the performance between svg and canvas */ | |
| ReactDOM.render(<TypeChooser type="hybrid">{type => <CandleStickStockScaleChartWithVolumeHistogramV1 data={data} type={type} />}</TypeChooser>, document.getElementById("chart")); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>React Stockcharts - CandleStickStockScaleChartWithVolumeBarV1 Example</title> | |
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.7/d3.min.js"></script> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react.min.js"></script> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-dom.min.js"></script> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.17.0/babel.min.js"></script> | |
| <!-- <script type="text/javascript" src="//unpkg.com/react-stockcharts@latest/dist/react-stockcharts.min.js"></script> --> | |
| <script type="text/javascript" src="//rrag.github.io/react-stockcharts/dist/react-stockcharts.min.js"></script> | |
| </head> | |
| <body> | |
| <span id="iconPreload" class="glyphicon glyphicon-arrow-down"></span> | |
| <div id="chart"> | |
| </div> | |
| <script> | |
| // Use babel transform so the examples work on the browser | |
| d3.request("./CandleStickStockScaleChartWithVolumeBarV1.jsx") | |
| .get(function(err, data) { | |
| var outputEl = document.getElementById('chart'); | |
| try { | |
| var output = Babel.transform(data.responseText, { presets: ["es2015", "react", "stage-3"] }).code; | |
| eval(output); | |
| } catch (ex) { | |
| outputEl.innerHTML = 'ERROR: ' + ex.message; | |
| } | |
| }) | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment