Financial App to monitor stock prices and stock news built on React Native with Alpha Vantage APIs
Go to https://www.alphavantage.co/ to generate a free API key Create a file named constants.js in the root directory. Copy paste this code below :
constants = {
alpha_vantage_api_intraday : 'https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=',
alpha_vantage_api_intraday_pt2 : '&interval=5min&apikey=',
alpha_vantage_api_key : '<YOUR API KEY>',
alpha_vantage_news_url : 'https://www.alphavantage.co/query/?function=NEWS_SENTIMENT&tickers=',
alpha_vantage_news_url_pt2 : '&apikey='
}
export default constants;
- Clone the Repository
- Switch to a new local branch using
git checkout -b <branch-name>
npm install
cd ios
pod install
- To run the app on an iOS simulator
npx react-native run-ios