.gitignore
.python-version
Dockerfile
LICENSE
MANIFEST.in
README.md
SECURITY.md
logo.png
pyproject.toml
pyrightconfig.json
.github/workflows/docs.yml
.github/workflows/python-publish.yml
docs/.gitignore
docs/Makefile
docs/README.md
docs/conf.py
docs/index.rst
docs/make.bat
docs/requirements.txt
docs/run.py
docs/source/about.rst
docs/source/installation.rst
docs/source/history/history.rst
docs/source/history/history_schema.rst
docs/source/history/index.rst
docs/source/interfaces/index.rst
docs/source/interfaces/external/index.rst
docs/source/interfaces/external/investing_com.rst
docs/source/interfaces/external/ibkr/get_started.rst
docs/source/interfaces/external/ibkr/ibkr_account.rst
docs/source/interfaces/external/ibkr/ibkr_market.rst
docs/source/interfaces/external/ibkr/index.rst
docs/source/quickstart/index.rst
docs/source/strategy/index.rst
docs/source/strategy/custom/index.rst
docs/source/strategy/custom/rsi.rst
dxlib/__init__.py
dxlib/benchmark.py
dxlib/common.py
dxlib/module_proxy.py
dxlib/types.py
dxlib.egg-info/PKG-INFO
dxlib.egg-info/SOURCES.txt
dxlib.egg-info/dependency_links.txt
dxlib.egg-info/requires.txt
dxlib.egg-info/top_level.txt
dxlib/core/__init__.py
dxlib/core/formatter.py
dxlib/core/manager.py
dxlib/core/portfolio.py
dxlib/core/signal.py
dxlib/core/dynamics/__init__.py
dxlib/core/dynamics/cox_ingersoll_ross.py
dxlib/core/dynamics/geometric_brownian_motion.py
dxlib/core/dynamics/hawkes.py
dxlib/core/dynamics/ohrnstein_uhlenbeck.py
dxlib/core/dynamics/stochastic_process.py
dxlib/core/indicators/__init__.py
dxlib/core/indicators/bollinger_bands.py
dxlib/core/indicators/rsi.py
dxlib/core/indicators/filters/__init__.py
dxlib/core/indicators/filters/momentum.py
dxlib/core/indicators/filters/reversion.py
dxlib/core/indicators/filters/volatility.py
dxlib/core/instruments/__init__.py
dxlib/core/instruments/instrument.py
dxlib/core/instruments/instrument_store.py
dxlib/core/instruments/universe.py
dxlib/data/__init__.py
dxlib/data/hdf.py
dxlib/data/registry.py
dxlib/data/serializable.py
dxlib/data/storage.py
dxlib/data/dtos/__init__.py
dxlib/data/dtos/dto.py
dxlib/data/dtos/history_dto.py
dxlib/data/dtos/instrument_dto.py
dxlib/history/__init__.py
dxlib/history/bar.py
dxlib/history/dtype_validation.py
dxlib/history/history.py
dxlib/history/history_schema.py
dxlib/history/history_view.py
dxlib/interfaces/__init__.py
dxlib/interfaces/account_interface.py
dxlib/interfaces/interface.py
dxlib/interfaces/market_interface.py
dxlib/interfaces/order_interface.py
dxlib/interfaces/trading_interface.py
dxlib/interfaces/external/__init__.py
dxlib/interfaces/external/utils.py
dxlib/interfaces/external/cboe/__init__.py
dxlib/interfaces/external/cboe/cboe.py
dxlib/interfaces/external/ibkr/__init__.py
dxlib/interfaces/external/ibkr/ibkr.py
dxlib/interfaces/external/ibkr/ibkr_account.py
dxlib/interfaces/external/ibkr/ibkr_market.py
dxlib/interfaces/external/ibkr/position.py
dxlib/interfaces/external/ibkr/requirements.txt
dxlib/interfaces/external/ibkr/wrapper.py
dxlib/interfaces/external/investing_com/__init__.py
dxlib/interfaces/external/investing_com/investing_com.py
dxlib/interfaces/external/investing_com/requirements.txt
dxlib/interfaces/external/mock/__init__.py
dxlib/interfaces/external/mock/mock_market.py
dxlib/interfaces/external/twelvedata/__init__.py
dxlib/interfaces/external/twelvedata/twelvedata.py
dxlib/interfaces/external/wikipedia/wikipedia.py
dxlib/interfaces/external/yfinance/__init__.py
dxlib/interfaces/external/yfinance/yfinance.py
dxlib/interfaces/internal/__init__.py
dxlib/interfaces/internal/internal_market.py
dxlib/interfaces/internal/requirements.txt
dxlib/interfaces/internal/history/__init__.py
dxlib/interfaces/internal/history/history_handlers.py
dxlib/interfaces/internal/history/history_interfaces.py
dxlib/interfaces/internal/history/models.py
dxlib/interfaces/internal/mesh/__init__.py
dxlib/interfaces/internal/mesh/mesh_interface.py
dxlib/interfaces/internal/mesh/mesh_service.py
dxlib/interfaces/mock/__init__.py
dxlib/interfaces/mock/backtest_interface.py
dxlib/interfaces/mock/paper_interface.py
dxlib/interfaces/services/__init__.py
dxlib/interfaces/services/endpoint.py
dxlib/interfaces/services/protocols.py
dxlib/interfaces/services/server.py
dxlib/interfaces/services/service.py
dxlib/interfaces/services/service_registry.py
dxlib/interfaces/services/http/__init__.py
dxlib/interfaces/services/http/fastapi.py
dxlib/interfaces/services/http/http.py
dxlib/interfaces/services/http/requirements.txt
dxlib/market/__init__.py
dxlib/market/order_book.py
dxlib/market/red_black_tree.py
dxlib/market/transaction.py
dxlib/market/orders/__init__.py
dxlib/market/orders/limit_order.py
dxlib/market/orders/market_order.py
dxlib/market/orders/order.py
dxlib/market/orders/order_engine.py
dxlib/market/orders/size.py
dxlib/market/simulators/__init__.py
dxlib/market/simulators/fill_model.py
dxlib/market/simulators/gbm.py
dxlib/market/simulators/lob.py
dxlib/market/simulators/market_simulator.py
dxlib/market/simulators/simulator.py
dxlib/optimizers/__init__.py
dxlib/optimizers/mvo.py
dxlib/strategy/__init__.py
dxlib/strategy/executor.py
dxlib/strategy/strategy.py
dxlib/strategy/arbitrage/pairs/pairs_trading.py
dxlib/strategy/arbitrage/pairs/solver.py
dxlib/strategy/context/__init__.py
dxlib/strategy/context/portfolio_context.py
dxlib/strategy/market_making/__init__.py
dxlib/strategy/market_making/avstoi_strategy.py
dxlib/strategy/order_generator/__init__.py
dxlib/strategy/order_generator/order_generator.py
dxlib/strategy/order_generator/portfolio_strategy.py
dxlib/strategy/signal/__init__.py
dxlib/strategy/signal/signal_generator.py
dxlib/strategy/signal/signal_strategy.py
dxlib/strategy/signal/custom/__init__.py
dxlib/strategy/signal/custom/rsi.py
dxlib/strategy/signal/custom/wick_reversal.py
dxlib/strategy/views/__init__.py
dxlib/strategy/views/security_price_view.py
dxlib/strategy/views/security_quotes_view.py
dxlib/strategy/views/security_signal_view.py
dxlib/utils/__init__.py
dxlib/utils/periodic_timer.py
examples/README.md
examples/arima.py
examples/avstoikov.py
examples/mvo.py
examples/rsi.py
examples/wick.py
test/__init__.py
test/benchmark.py
test/data.py
test/test_executor.py
test/test_portfolio.py
test/test_storage.py
test/core/__init__.py
test/core/test_dynamics.py
test/core/test_lob.py
test/core/test_portfolio.py
test/core/test_security.py
test/core/indicators/test_filters.py
test/data/test_history.py
test/history/__init__.py
test/history/test_history.py
test/integration/test_rsi.py
test/interfaces/__init__.py
test/interfaces/test_backtest.py
test/interfaces/test_ibkr.py
test/interfaces/test_investing_com.py
test/interfaces/test_mock.py
test/interfaces/test_twelvedata.py
test/interfaces/test_yfinance.py
test/market/test_order_engine.py
test/strategies/__init__.py
test/strategies/test_signals.py
test/strategies/signal/test_order_generator.py
test/strategies/signal/test_wick.py