├── .bumpversion.cfg ├── .cookiecutterrc ├── .coveragerc ├── .editorconfig ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── app.py ├── docs ├── anatomy_of_a_backtest.md ├── datasource.md ├── loaders.md └── rationale.md ├── examples ├── DataSource.ipynb ├── Introduction.ipynb ├── Loaders.ipynb ├── PivotPoints.ipynb ├── Tradebook.ipynb ├── apps │ ├── code_generator.py │ ├── option_payoff.py │ └── simple.py ├── backtest_template.xls └── data │ ├── BTC.csv │ ├── bank.csv │ └── data.csv ├── ruff.toml ├── setup.cfg ├── setup.py ├── src └── fastbt │ ├── Meta.py │ ├── __init__.py │ ├── app.py │ ├── brokers │ ├── __init__.py │ ├── api.yaml │ ├── fivepaisa.py │ ├── fivepaisa.yaml │ ├── fyers.py │ ├── fyers.yaml │ ├── master_trust.py │ ├── master_trust.yaml │ ├── spec.yaml │ ├── zerodha.py │ └── zerodha.yaml │ ├── datasource.py │ ├── experimental.py │ ├── features.py │ ├── files │ ├── IndexConstituents.xlsx │ ├── __init__.py │ └── sectors.csv │ ├── loaders.py │ ├── metrics.py │ ├── models │ ├── base.py │ └── breakout.py │ ├── option_chain.py │ ├── options │ ├── backtest.py │ ├── order.py │ ├── payoff.py │ ├── store.py │ └── utils.py │ ├── plotting.py │ ├── rapid.py │ ├── simulation.py │ ├── static │ ├── script.js │ └── vue.js │ ├── templates │ ├── backtest.html │ ├── datastore.html │ └── index.html │ ├── tradebook.py │ ├── urlpatterns.py │ └── utils.py ├── tests ├── Test.ipynb ├── brokers │ ├── keys.conf │ ├── test_fivepaisa.py │ ├── test_init.py │ └── test_master_trust.py ├── context.py ├── data │ ├── BT.yaml │ ├── BTC.csv │ ├── NASDAQ │ │ ├── adjustments │ │ │ └── splits.csv │ │ ├── data │ │ │ ├── NASDAQ_20180730.zip │ │ │ ├── NASDAQ_20180731.zip │ │ │ ├── NASDAQ_20180801.zip │ │ │ ├── NASDAQ_20180802.zip │ │ │ ├── NASDAQ_20180803.zip │ │ │ ├── NASDAQ_20180806.zip │ │ │ ├── NASDAQ_20180807.zip │ │ │ └── NASDAQ_20180808.zip │ │ └── nasdaq_results.csv │ ├── backtest.json │ ├── backtest.xls │ ├── backtest.yaml │ ├── bhav_nifty.csv │ ├── data.sqlite3 │ ├── eoddata │ │ ├── INDEX_20180727.txt │ │ ├── INDEX_20180730.txt │ │ ├── INDEX_20180731.txt │ │ ├── INDEX_20180801.txt │ │ └── INDEX_20180802.txt │ ├── index.csv │ ├── is_pret.csv │ ├── option_strategies.yaml │ ├── options_payoff.xlsx │ ├── results.csv │ ├── sample.csv │ └── sample.xlsx ├── options │ ├── test_option_utils.py │ ├── test_order.py │ ├── test_payoff.py │ └── test_store.py ├── test_base.py ├── test_breakout.py ├── test_datasource.py ├── test_features.py ├── test_generate_correlated_data.py ├── test_loaders.py ├── test_meta.py ├── test_metrics.py ├── test_rapid.py ├── test_simulation.py ├── test_tradebook.py └── test_utils.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.cookiecutterrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.cookiecutterrc -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/app.py -------------------------------------------------------------------------------- /docs/anatomy_of_a_backtest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/docs/anatomy_of_a_backtest.md -------------------------------------------------------------------------------- /docs/datasource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/docs/datasource.md -------------------------------------------------------------------------------- /docs/loaders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/docs/loaders.md -------------------------------------------------------------------------------- /docs/rationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/docs/rationale.md -------------------------------------------------------------------------------- /examples/DataSource.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/DataSource.ipynb -------------------------------------------------------------------------------- /examples/Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/Introduction.ipynb -------------------------------------------------------------------------------- /examples/Loaders.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/Loaders.ipynb -------------------------------------------------------------------------------- /examples/PivotPoints.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/PivotPoints.ipynb -------------------------------------------------------------------------------- /examples/Tradebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/Tradebook.ipynb -------------------------------------------------------------------------------- /examples/apps/code_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/apps/code_generator.py -------------------------------------------------------------------------------- /examples/apps/option_payoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/apps/option_payoff.py -------------------------------------------------------------------------------- /examples/apps/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/apps/simple.py -------------------------------------------------------------------------------- /examples/backtest_template.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/backtest_template.xls -------------------------------------------------------------------------------- /examples/data/BTC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/data/BTC.csv -------------------------------------------------------------------------------- /examples/data/bank.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/data/bank.csv -------------------------------------------------------------------------------- /examples/data/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/examples/data/data.csv -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/ruff.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/setup.py -------------------------------------------------------------------------------- /src/fastbt/Meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/Meta.py -------------------------------------------------------------------------------- /src/fastbt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/__init__.py -------------------------------------------------------------------------------- /src/fastbt/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/app.py -------------------------------------------------------------------------------- /src/fastbt/brokers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/__init__.py -------------------------------------------------------------------------------- /src/fastbt/brokers/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/api.yaml -------------------------------------------------------------------------------- /src/fastbt/brokers/fivepaisa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/fivepaisa.py -------------------------------------------------------------------------------- /src/fastbt/brokers/fivepaisa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/fivepaisa.yaml -------------------------------------------------------------------------------- /src/fastbt/brokers/fyers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/fyers.py -------------------------------------------------------------------------------- /src/fastbt/brokers/fyers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/fyers.yaml -------------------------------------------------------------------------------- /src/fastbt/brokers/master_trust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/master_trust.py -------------------------------------------------------------------------------- /src/fastbt/brokers/master_trust.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/master_trust.yaml -------------------------------------------------------------------------------- /src/fastbt/brokers/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/spec.yaml -------------------------------------------------------------------------------- /src/fastbt/brokers/zerodha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/zerodha.py -------------------------------------------------------------------------------- /src/fastbt/brokers/zerodha.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/brokers/zerodha.yaml -------------------------------------------------------------------------------- /src/fastbt/datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/datasource.py -------------------------------------------------------------------------------- /src/fastbt/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/experimental.py -------------------------------------------------------------------------------- /src/fastbt/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/features.py -------------------------------------------------------------------------------- /src/fastbt/files/IndexConstituents.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/files/IndexConstituents.xlsx -------------------------------------------------------------------------------- /src/fastbt/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fastbt/files/sectors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/files/sectors.csv -------------------------------------------------------------------------------- /src/fastbt/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/loaders.py -------------------------------------------------------------------------------- /src/fastbt/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/metrics.py -------------------------------------------------------------------------------- /src/fastbt/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/models/base.py -------------------------------------------------------------------------------- /src/fastbt/models/breakout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/models/breakout.py -------------------------------------------------------------------------------- /src/fastbt/option_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/option_chain.py -------------------------------------------------------------------------------- /src/fastbt/options/backtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/options/backtest.py -------------------------------------------------------------------------------- /src/fastbt/options/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/options/order.py -------------------------------------------------------------------------------- /src/fastbt/options/payoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/options/payoff.py -------------------------------------------------------------------------------- /src/fastbt/options/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/options/store.py -------------------------------------------------------------------------------- /src/fastbt/options/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/options/utils.py -------------------------------------------------------------------------------- /src/fastbt/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/plotting.py -------------------------------------------------------------------------------- /src/fastbt/rapid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/rapid.py -------------------------------------------------------------------------------- /src/fastbt/simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/simulation.py -------------------------------------------------------------------------------- /src/fastbt/static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/static/script.js -------------------------------------------------------------------------------- /src/fastbt/static/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/static/vue.js -------------------------------------------------------------------------------- /src/fastbt/templates/backtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/templates/backtest.html -------------------------------------------------------------------------------- /src/fastbt/templates/datastore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/templates/datastore.html -------------------------------------------------------------------------------- /src/fastbt/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/templates/index.html -------------------------------------------------------------------------------- /src/fastbt/tradebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/tradebook.py -------------------------------------------------------------------------------- /src/fastbt/urlpatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/urlpatterns.py -------------------------------------------------------------------------------- /src/fastbt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/src/fastbt/utils.py -------------------------------------------------------------------------------- /tests/Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/Test.ipynb -------------------------------------------------------------------------------- /tests/brokers/keys.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/brokers/keys.conf -------------------------------------------------------------------------------- /tests/brokers/test_fivepaisa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/brokers/test_fivepaisa.py -------------------------------------------------------------------------------- /tests/brokers/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/brokers/test_init.py -------------------------------------------------------------------------------- /tests/brokers/test_master_trust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/brokers/test_master_trust.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/data/BT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/BT.yaml -------------------------------------------------------------------------------- /tests/data/BTC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/BTC.csv -------------------------------------------------------------------------------- /tests/data/NASDAQ/adjustments/splits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/adjustments/splits.csv -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180730.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180730.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180731.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180731.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180801.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180801.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180802.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180802.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180803.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180803.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180806.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180806.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180807.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180807.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/data/NASDAQ_20180808.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/data/NASDAQ_20180808.zip -------------------------------------------------------------------------------- /tests/data/NASDAQ/nasdaq_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/NASDAQ/nasdaq_results.csv -------------------------------------------------------------------------------- /tests/data/backtest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/backtest.json -------------------------------------------------------------------------------- /tests/data/backtest.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/backtest.xls -------------------------------------------------------------------------------- /tests/data/backtest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/backtest.yaml -------------------------------------------------------------------------------- /tests/data/bhav_nifty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/bhav_nifty.csv -------------------------------------------------------------------------------- /tests/data/data.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/data.sqlite3 -------------------------------------------------------------------------------- /tests/data/eoddata/INDEX_20180727.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/eoddata/INDEX_20180727.txt -------------------------------------------------------------------------------- /tests/data/eoddata/INDEX_20180730.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/eoddata/INDEX_20180730.txt -------------------------------------------------------------------------------- /tests/data/eoddata/INDEX_20180731.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/eoddata/INDEX_20180731.txt -------------------------------------------------------------------------------- /tests/data/eoddata/INDEX_20180801.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/eoddata/INDEX_20180801.txt -------------------------------------------------------------------------------- /tests/data/eoddata/INDEX_20180802.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/eoddata/INDEX_20180802.txt -------------------------------------------------------------------------------- /tests/data/index.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/index.csv -------------------------------------------------------------------------------- /tests/data/is_pret.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/is_pret.csv -------------------------------------------------------------------------------- /tests/data/option_strategies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/option_strategies.yaml -------------------------------------------------------------------------------- /tests/data/options_payoff.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/options_payoff.xlsx -------------------------------------------------------------------------------- /tests/data/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/results.csv -------------------------------------------------------------------------------- /tests/data/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/sample.csv -------------------------------------------------------------------------------- /tests/data/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/data/sample.xlsx -------------------------------------------------------------------------------- /tests/options/test_option_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/options/test_option_utils.py -------------------------------------------------------------------------------- /tests/options/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/options/test_order.py -------------------------------------------------------------------------------- /tests/options/test_payoff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/options/test_payoff.py -------------------------------------------------------------------------------- /tests/options/test_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/options/test_store.py -------------------------------------------------------------------------------- /tests/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_base.py -------------------------------------------------------------------------------- /tests/test_breakout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_breakout.py -------------------------------------------------------------------------------- /tests/test_datasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_datasource.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_generate_correlated_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_generate_correlated_data.py -------------------------------------------------------------------------------- /tests/test_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_loaders.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_rapid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_rapid.py -------------------------------------------------------------------------------- /tests/test_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_simulation.py -------------------------------------------------------------------------------- /tests/test_tradebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_tradebook.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uberdeveloper/fastbt/HEAD/tox.ini --------------------------------------------------------------------------------