nikkaramessinis / StockExploration

0 stars 0 forks source link

structure code #19

Closed viv3kc closed 4 months ago

viv3kc commented 4 months ago

stock_prediction_app/ ├── main.py ├── cli/ │ ├── parser.py (parse the command line arguments) │ ├── commands.py (handle the parsed commands) ├── core/ │ ├── data_fetching.py (fetch the company data) │ ├── prediction.py (predict based on multiple strategies) │ ├── email_alert.py (send email alerts; in future can add mobile alerts) ├── strategies/ (All the strategies are in this folder) │ ├── moving_average.py │ ├── linear_regression.py │ ├── custom_strategy.py ├── config/ │ ├── config.py (reading the yaml file) │ └── settings.yaml (configuration file) ├── utils/ │ ├── helpers.py ├── tests/ │ ├── test.py (for future testing) ├── requirements.txt └── README.md