This sample project provides the ability to search for individual stocks and display their financial data charts for different time periods.
https://andrisgauracs.github.io/react-simple-stock-charts/
- Aplha Vantage - for retrieving financial data charts
- Financial Modeling Prep - for stock symbol lookup
$ yarn
$ yarn start
By default the app runs with demo data provided in the project.
To switch to live mode, you need to retrieve the API keys from the two API providers mentioned, and replace them in the config.ts
file:
export const ALPHA_VANTAGE_API_KEY = "{YOUR_API_KEY}";
export const FINANCIAL_MODELING_PREP_API_KEY = "{YOUR_API_KEY}";
MIT