Hello, I've made a charting tool for time-series.<p>I was frustrated with existing charting tools for many reasons:<p><pre><code> - Too complex to setup
- Too complex to use
- Too expensive
- Too slow
- Not interactive
- Not flexible/programmable enough
- Difficult to integrate with other datasources/tools
- Inconsistent time-axis labels
- Looks like Omega SuperCharts from the 90s
</code></pre>
But the most annoying for me:<p><pre><code> - Limited Zoom. What can you conclude without the full picture or the details?
- And irregular time axis. I don't know if this is normal in the excel/finance world, but drawing straight lines on charts with irregular x-axis makes no sense to me.
</code></pre>
That's why I build my own tool.
Currently, my main use case is to analyze financial data and the data which influences it.<p>On the technology-side I've made some bold decisions:<p><pre><code> - Cross-platform, web-first.
- WebGL 2.0: stable/boring.
- Java: stable/boring. Integrate easily financial calculation libraries.
- libGDX: stable/boring. More than just a game framework.
- No fancy JavaScript framework needed: Look at the DOM, there's just a canvas. Frameworkless.
- Backend: This PWA runs offline in your browser. Serverless for real.
</code></pre>
N.B.: Browsers have limited network access due to CORS. (access-control-allow-origin, <a href="https://developer.mozilla.org/docs/Web/HTTP/CORS" rel="nofollow">https://developer.mozilla.org/docs/Web/HTTP/CORS</a>)
E.g. Yahoo does not allow direct reuse of their API, so you cannot open it as URL.
However, you can try to open it as file, as your OS might download it to a temporary file and hand it over to the browser.
(e.g. <a href="https://query1.finance.yahoo.com/v7/finance/download/BAC?period1=0&period2=2000000000&interval=1d&events=history" rel="nofollow">https://query1.finance.yahoo.com/v7/finance/download/BAC?per...</a> )<p>P.S.: Chrome-based browsers are probably faster than Firefox, because Firefox still has some WebGL performance issues.