├── .coveragerc ├── .gitattributes ├── .gitignore ├── .lgtm.yml ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── about.rst ├── conf.py ├── getting_started.rst ├── index.rst ├── margot.data.column.cboe.rst ├── margot.rst ├── notebook.margot.data.ipynb └── requirements.txt ├── etc └── margot ├── margot ├── __init__.py ├── __main__.py ├── _version.py ├── config │ ├── __init__.py │ └── settings.py ├── data │ ├── __init__.py │ ├── alphavantage.py │ ├── cboe.py │ ├── columns.py │ ├── features │ │ ├── __init__.py │ │ └── finance.py │ ├── frames.py │ ├── ratio.py │ └── symbols.py ├── portfolio │ ├── __init__.py │ └── portfolio.py ├── signals │ ├── __init__.py │ ├── algos.py │ ├── backtest.py │ ├── order_types.py │ └── periods.py ├── tests │ ├── __init__.py │ ├── test_backtest.py │ ├── test_data.py │ └── test_signals.py ├── tools │ ├── __init__.py │ ├── ftxtools.py │ └── gcptools.py └── trade │ ├── __init__.py │ ├── algos.py │ ├── calibrate.py │ ├── ibkr.py │ ├── manager.py │ ├── scheduler.py │ ├── server.py │ └── worker.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── todo.md └── versioneer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | margot/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/.gitignore -------------------------------------------------------------------------------- /.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/.lgtm.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/README.md -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/margot.data.column.cboe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/margot.data.column.cboe.rst -------------------------------------------------------------------------------- /docs/margot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/margot.rst -------------------------------------------------------------------------------- /docs/notebook.margot.data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/notebook.margot.data.ipynb -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /etc/margot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/etc/margot -------------------------------------------------------------------------------- /margot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/__init__.py -------------------------------------------------------------------------------- /margot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/__main__.py -------------------------------------------------------------------------------- /margot/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/_version.py -------------------------------------------------------------------------------- /margot/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/config/__init__.py -------------------------------------------------------------------------------- /margot/config/settings.py: -------------------------------------------------------------------------------- 1 | INITED = False -------------------------------------------------------------------------------- /margot/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /margot/data/alphavantage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/alphavantage.py -------------------------------------------------------------------------------- /margot/data/cboe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/cboe.py -------------------------------------------------------------------------------- /margot/data/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/columns.py -------------------------------------------------------------------------------- /margot/data/features/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/features/__init__.py -------------------------------------------------------------------------------- /margot/data/features/finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/features/finance.py -------------------------------------------------------------------------------- /margot/data/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/frames.py -------------------------------------------------------------------------------- /margot/data/ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/ratio.py -------------------------------------------------------------------------------- /margot/data/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/data/symbols.py -------------------------------------------------------------------------------- /margot/portfolio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/portfolio/__init__.py -------------------------------------------------------------------------------- /margot/portfolio/portfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/portfolio/portfolio.py -------------------------------------------------------------------------------- /margot/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/signals/__init__.py -------------------------------------------------------------------------------- /margot/signals/algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/signals/algos.py -------------------------------------------------------------------------------- /margot/signals/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/signals/backtest.py -------------------------------------------------------------------------------- /margot/signals/order_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/signals/order_types.py -------------------------------------------------------------------------------- /margot/signals/periods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/signals/periods.py -------------------------------------------------------------------------------- /margot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /margot/tests/test_backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/tests/test_backtest.py -------------------------------------------------------------------------------- /margot/tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/tests/test_data.py -------------------------------------------------------------------------------- /margot/tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/tests/test_signals.py -------------------------------------------------------------------------------- /margot/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /margot/tools/ftxtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/tools/ftxtools.py -------------------------------------------------------------------------------- /margot/tools/gcptools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/tools/gcptools.py -------------------------------------------------------------------------------- /margot/trade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/__init__.py -------------------------------------------------------------------------------- /margot/trade/algos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/algos.py -------------------------------------------------------------------------------- /margot/trade/calibrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/calibrate.py -------------------------------------------------------------------------------- /margot/trade/ibkr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/ibkr.py -------------------------------------------------------------------------------- /margot/trade/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/manager.py -------------------------------------------------------------------------------- /margot/trade/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/scheduler.py -------------------------------------------------------------------------------- /margot/trade/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/server.py -------------------------------------------------------------------------------- /margot/trade/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/margot/trade/worker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/setup.py -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/todo.md -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymargot/margot/HEAD/versioneer.py --------------------------------------------------------------------------------