├── .gitignore ├── LICENSE ├── README.rst ├── YFhist.py ├── big_algo_framework ├── __init__.py ├── big │ ├── __init__.py │ ├── forex.txt │ ├── helper.py │ ├── options.py │ ├── position_sizing.py │ └── social_media.py ├── brokers │ ├── __init__.py │ ├── abstract_broker.py │ ├── ib.py │ ├── mt5.py │ └── td.py ├── data │ ├── __init__.py │ ├── abstract_data.py │ ├── td.py │ └── yf.py └── strategies │ ├── __init__.py │ └── abstract_strategy.py ├── docs ├── Makefile ├── brokers.rst ├── conf.py ├── index.rst └── make.bat ├── examples ├── __init__.py ├── ib │ ├── __init__.py │ ├── config.py │ ├── options.py │ └── stocks.py ├── td │ ├── __init__.py │ ├── config.py │ ├── options.py │ ├── orders_positions.py │ └── stocks.py └── yf │ ├── YFhist.py │ └── __init__.py ├── output ├── .gitkeep └── readme.md ├── parms ├── .gitkeep ├── readme.md └── sample_parms.json ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/README.rst -------------------------------------------------------------------------------- /YFhist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/YFhist.py -------------------------------------------------------------------------------- /big_algo_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /big_algo_framework/big/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /big_algo_framework/big/forex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/big/forex.txt -------------------------------------------------------------------------------- /big_algo_framework/big/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/big/helper.py -------------------------------------------------------------------------------- /big_algo_framework/big/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/big/options.py -------------------------------------------------------------------------------- /big_algo_framework/big/position_sizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/big/position_sizing.py -------------------------------------------------------------------------------- /big_algo_framework/big/social_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/big/social_media.py -------------------------------------------------------------------------------- /big_algo_framework/brokers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /big_algo_framework/brokers/abstract_broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/brokers/abstract_broker.py -------------------------------------------------------------------------------- /big_algo_framework/brokers/ib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/brokers/ib.py -------------------------------------------------------------------------------- /big_algo_framework/brokers/mt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/brokers/mt5.py -------------------------------------------------------------------------------- /big_algo_framework/brokers/td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/brokers/td.py -------------------------------------------------------------------------------- /big_algo_framework/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /big_algo_framework/data/abstract_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/data/abstract_data.py -------------------------------------------------------------------------------- /big_algo_framework/data/td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/data/td.py -------------------------------------------------------------------------------- /big_algo_framework/data/yf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/data/yf.py -------------------------------------------------------------------------------- /big_algo_framework/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /big_algo_framework/strategies/abstract_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/big_algo_framework/strategies/abstract_strategy.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/brokers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/docs/brokers.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/ib/config.py -------------------------------------------------------------------------------- /examples/ib/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/ib/options.py -------------------------------------------------------------------------------- /examples/ib/stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/ib/stocks.py -------------------------------------------------------------------------------- /examples/td/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/td/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/td/config.py -------------------------------------------------------------------------------- /examples/td/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/td/options.py -------------------------------------------------------------------------------- /examples/td/orders_positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/td/orders_positions.py -------------------------------------------------------------------------------- /examples/td/stocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/td/stocks.py -------------------------------------------------------------------------------- /examples/yf/YFhist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/examples/yf/YFhist.py -------------------------------------------------------------------------------- /examples/yf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /output/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/output/readme.md -------------------------------------------------------------------------------- /parms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/parms/readme.md -------------------------------------------------------------------------------- /parms/sample_parms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/parms/sample_parms.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brahma-investment-group/big-algo-framework/HEAD/setup.py --------------------------------------------------------------------------------