├── .coveragerc ├── .editorconfig ├── .flake8 ├── .github └── workflows │ └── test-plugin-installation.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .sourcery.yaml ├── LICENSE ├── Makefile ├── README.md ├── helpers.bat ├── helpers.sh ├── pylintrc ├── pyproject.toml ├── requirements.txt ├── run_pylint.py ├── src └── auto_gpt_alpacatrader_plugin │ ├── __init__.py │ └── trader.py └── test_function.ipynb.txt /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/test-plugin-installation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.github/workflows/test-plugin-installation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /helpers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/helpers.bat -------------------------------------------------------------------------------- /helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/helpers.sh -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_pylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/run_pylint.py -------------------------------------------------------------------------------- /src/auto_gpt_alpacatrader_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/src/auto_gpt_alpacatrader_plugin/__init__.py -------------------------------------------------------------------------------- /src/auto_gpt_alpacatrader_plugin/trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/src/auto_gpt_alpacatrader_plugin/trader.py -------------------------------------------------------------------------------- /test_function.ipynb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danikhan632/Auto-GPT-AlpacaTrader-Plugin/HEAD/test_function.ipynb.txt --------------------------------------------------------------------------------