This software allows users to interact with stock price information made available by Alphavantage through the command line.
- After cloning this repo, create a
.envfile within the main directory. - Obtain an API key from Alphavantage (https://www.alphavantage.co/)
- Open the
.envfile using a text editor and paste the following
ALPHAVANTAGE_API_KEY="abc1234"
Then replace abc1234 with the API key you recieved from Alphavantage
- Install the required dependencies using pip
pip install -r requirements.txt
- To run the program, execute
app/robo-advisor.py. For example, you could do it the following way:
python app/robo-advisor.py
- Follow the instructions in the program itself.