├── .idea ├── .gitignore ├── ReversionSys-main.iml ├── codeStyles │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .vscode └── settings.json ├── README.md ├── S&P500 Components.csv ├── TA_Lib Installation ├── TA_Lib-0.4.19-cp37-cp37m-win_amd64.whl └── TA_Lib-0.4.19-cp39-cp39-win_amd64.whl ├── Trades_to_take ├── 2021-02-20 Reversion Trades.csv ├── 2021-07-15 Reversion Trades.csv └── 2021-08-18 Reversion Trades.csv ├── __pycache__ ├── get_data.cpython-37.pyc ├── get_trades.cpython-37.pyc ├── get_trades.cpython-39.pyc ├── get_yf_data.cpython-37.pyc ├── get_yf_data.cpython-39.pyc ├── ibkr_account.cpython-37.pyc ├── ibkr_custom_class.cpython-37.pyc ├── ibkr_custom_class.cpython-39.pyc ├── misc_func.cpython-37.pyc └── misc_func.cpython-39.pyc ├── get_trades.py ├── get_yf_data.py ├── ibkr_account.py ├── ibkr_custom_class.py ├── main.py ├── misc_func.py └── requirements.txt /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/ReversionSys-main.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.idea/ReversionSys-main.iml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/README.md -------------------------------------------------------------------------------- /S&P500 Components.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/S&P500 Components.csv -------------------------------------------------------------------------------- /TA_Lib Installation/TA_Lib-0.4.19-cp37-cp37m-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/TA_Lib Installation/TA_Lib-0.4.19-cp37-cp37m-win_amd64.whl -------------------------------------------------------------------------------- /TA_Lib Installation/TA_Lib-0.4.19-cp39-cp39-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/TA_Lib Installation/TA_Lib-0.4.19-cp39-cp39-win_amd64.whl -------------------------------------------------------------------------------- /Trades_to_take/2021-02-20 Reversion Trades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/Trades_to_take/2021-02-20 Reversion Trades.csv -------------------------------------------------------------------------------- /Trades_to_take/2021-07-15 Reversion Trades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/Trades_to_take/2021-07-15 Reversion Trades.csv -------------------------------------------------------------------------------- /Trades_to_take/2021-08-18 Reversion Trades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/Trades_to_take/2021-08-18 Reversion Trades.csv -------------------------------------------------------------------------------- /__pycache__/get_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/get_data.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/get_trades.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/get_trades.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/get_trades.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/get_trades.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/get_yf_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/get_yf_data.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/get_yf_data.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/get_yf_data.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/ibkr_account.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/ibkr_account.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/ibkr_custom_class.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/ibkr_custom_class.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/ibkr_custom_class.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/ibkr_custom_class.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/misc_func.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/misc_func.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/misc_func.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/__pycache__/misc_func.cpython-39.pyc -------------------------------------------------------------------------------- /get_trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/get_trades.py -------------------------------------------------------------------------------- /get_yf_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/get_yf_data.py -------------------------------------------------------------------------------- /ibkr_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/ibkr_account.py -------------------------------------------------------------------------------- /ibkr_custom_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/ibkr_custom_class.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/main.py -------------------------------------------------------------------------------- /misc_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/misc_func.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawsashimi1604/ReversionSys/HEAD/requirements.txt --------------------------------------------------------------------------------