Under the Hood
This part of the website is dedicated to those who want to understand how Econ Surge obtains its information and how it is handled. If you care about programming or you don't mind learning, I encourage you to read this short passage:
This page conducts regular API requests to Alpha Vantage whenever needed. Once data is pulled from Alpha Vantage, it is reformated, exported to a SQL database, then it is finally pulled from the database and shown to the consumer. By treating data in this way, we incur a small punishment in data processing in exchange for future returns in efficiency. By using this method, not only can we prevent unnecessary API calls (which prove time-consuming by themselves), but we can also streamline the distance between information and the consumer and benefit from a 97.6% decrease in data handling time.
The backend of the website is mostly handled by Django's framework, which prevents unauthorized tinkering with protection against HTML and SQL injections thanks to its CSRF token functionality and text filtering. The frontend is of course HTML, CSS and Javascript with the help of SCSS scripts. Interestingly however, the graphs that are displayed throughout this website can be acredited to Chart.js and their wonderful work.