├── .github └── workflows │ └── workloads.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── config ├── config.yaml ├── help_command.txt ├── seperate_task_template.txt ├── start_command.txt ├── todo.txt └── todo_task_create_template.txt ├── doc ├── buysell.jpg ├── help.jpg ├── mulpattern.jpg ├── pbt.jpg ├── read.md ├── snr_and_risk.jpg ├── voice_summary.jpg └── winloss.jpg ├── notebook ├── Final_Version.ipynb ├── crawl_data.ipynb ├── filter-stocks.ipynb ├── find-motif.ipynb ├── langchain_test.ipynb ├── paybacktime.ipynb ├── summarize_sound.ipynb ├── support_resist.ipynb ├── test_indicator.ipynb └── trading_record.ipynb ├── run.bat ├── sample_voice.m4a ├── setup.txt ├── setup_win.txt ├── src ├── Indicators.py ├── Microsofttodo.py ├── PayBackTime.py ├── Utils │ ├── bot_utils.py │ ├── logger.py │ └── utils.py ├── api.py ├── apis │ ├── mcp_apis.py │ └── stock_apis.py ├── llm_with_rag.py ├── motif.py ├── stock_bot.py ├── stock_class.py ├── summarize_text.py ├── support_resist.py ├── test_api.py └── trading_record.py └── todo_assistant ├── EDA_task.ipynb ├── create_alpaca.py └── todo_data.json /.github/workflows/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/.github/workflows/workloads.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/help_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/config/help_command.txt -------------------------------------------------------------------------------- /config/seperate_task_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/config/seperate_task_template.txt -------------------------------------------------------------------------------- /config/start_command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/config/start_command.txt -------------------------------------------------------------------------------- /config/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/config/todo.txt -------------------------------------------------------------------------------- /config/todo_task_create_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/config/todo_task_create_template.txt -------------------------------------------------------------------------------- /doc/buysell.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/buysell.jpg -------------------------------------------------------------------------------- /doc/help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/help.jpg -------------------------------------------------------------------------------- /doc/mulpattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/mulpattern.jpg -------------------------------------------------------------------------------- /doc/pbt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/pbt.jpg -------------------------------------------------------------------------------- /doc/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/read.md -------------------------------------------------------------------------------- /doc/snr_and_risk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/snr_and_risk.jpg -------------------------------------------------------------------------------- /doc/voice_summary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/voice_summary.jpg -------------------------------------------------------------------------------- /doc/winloss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/doc/winloss.jpg -------------------------------------------------------------------------------- /notebook/Final_Version.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/Final_Version.ipynb -------------------------------------------------------------------------------- /notebook/crawl_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/crawl_data.ipynb -------------------------------------------------------------------------------- /notebook/filter-stocks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/filter-stocks.ipynb -------------------------------------------------------------------------------- /notebook/find-motif.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/find-motif.ipynb -------------------------------------------------------------------------------- /notebook/langchain_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/langchain_test.ipynb -------------------------------------------------------------------------------- /notebook/paybacktime.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/paybacktime.ipynb -------------------------------------------------------------------------------- /notebook/summarize_sound.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/summarize_sound.ipynb -------------------------------------------------------------------------------- /notebook/support_resist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/support_resist.ipynb -------------------------------------------------------------------------------- /notebook/test_indicator.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/test_indicator.ipynb -------------------------------------------------------------------------------- /notebook/trading_record.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/notebook/trading_record.ipynb -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/run.bat -------------------------------------------------------------------------------- /sample_voice.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/sample_voice.m4a -------------------------------------------------------------------------------- /setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/setup.txt -------------------------------------------------------------------------------- /setup_win.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/setup_win.txt -------------------------------------------------------------------------------- /src/Indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/Indicators.py -------------------------------------------------------------------------------- /src/Microsofttodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/Microsofttodo.py -------------------------------------------------------------------------------- /src/PayBackTime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/PayBackTime.py -------------------------------------------------------------------------------- /src/Utils/bot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/Utils/bot_utils.py -------------------------------------------------------------------------------- /src/Utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/Utils/logger.py -------------------------------------------------------------------------------- /src/Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/Utils/utils.py -------------------------------------------------------------------------------- /src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/api.py -------------------------------------------------------------------------------- /src/apis/mcp_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/apis/mcp_apis.py -------------------------------------------------------------------------------- /src/apis/stock_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/apis/stock_apis.py -------------------------------------------------------------------------------- /src/llm_with_rag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/llm_with_rag.py -------------------------------------------------------------------------------- /src/motif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/motif.py -------------------------------------------------------------------------------- /src/stock_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/stock_bot.py -------------------------------------------------------------------------------- /src/stock_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/stock_class.py -------------------------------------------------------------------------------- /src/summarize_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/summarize_text.py -------------------------------------------------------------------------------- /src/support_resist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/support_resist.py -------------------------------------------------------------------------------- /src/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/test_api.py -------------------------------------------------------------------------------- /src/trading_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/src/trading_record.py -------------------------------------------------------------------------------- /todo_assistant/EDA_task.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/todo_assistant/EDA_task.ipynb -------------------------------------------------------------------------------- /todo_assistant/create_alpaca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/todo_assistant/create_alpaca.py -------------------------------------------------------------------------------- /todo_assistant/todo_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrzaizai2k/stock_price_4_fun/HEAD/todo_assistant/todo_data.json --------------------------------------------------------------------------------