Inside the main folder run:
python3 -m venv venv && source venv/bin/activate
pip install -r requirements.txtCreate a dot env file .env with the following content and add your bucket:
S3_CHART_BUCKET=s3://add_your_own_bucket_here
Inside the front2 folder:
python3 -m venv venv && source venv/bin/activate
pip install -r requirements.txtinside the main folder
source venv/bin/activate
python main.pyIn the folder front1 run the following commands:
npm run devOpen http://127.0.0.1:3000 with your browser to see the result.
Build the application for production:
npm run buildinside the main folder
source venv/bin/activate
python app.py- We have data from 25 Stocks (AMZN, Netflix, MSFT, GOOGL, Costco)
- The agents can fetch news for any stock (mode than the 25)
- The agents can run technical analysis on any of the 25 stocks.
- The agents can calculate the returns of any of the 25 stocks for up to 3 months
- Questions at this moment have to involve a stock or list of stocks:
- Example: Compare the returns of Amazon, Apple and Google Whats the correlation between Apple and Amazon?
The next step is to hook the whole universe of stocks and PySpark to have the agent running complex calcudlations.
- Adding PySpark and support using the aws_agents/parquet_agent.py
- Adding FDC3 support for the front-end
Security See CONTRIBUTING for more information.
License This library is licensed under the MIT-0 License. See the LICENSE file.