pfund 0.0.2__tar.gz → 0.0.2.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pfund-0.0.2 → pfund-0.0.2.dev2}/PKG-INFO +4 -13
- {pfund-0.0.2 → pfund-0.0.2.dev2}/README.md +2 -2
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/cli/main.py +0 -2
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pyproject.toml +11 -17
- {pfund-0.0.2 → pfund-0.0.2.dev2}/LICENSE +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/CONTRIBUTING.md +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/accounts/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/accounts/account_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/accounts/account_crypto.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/accounts/account_ib.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/adapter.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/analyzer.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/backtest_history.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/balances/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/balances/balance_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/balances/balance_crypto.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/balances/balance_ib.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/broker_backtest.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/broker_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/broker_crypto.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/broker_defi.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/broker_live.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/ib/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/ib/broker_ib.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/ib/ib_api.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/ib/ib_client.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/brokers/ib/ib_wrapper.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/cli/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/cli/commands/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/cli/commands/config.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/cli/commands/docker_compose.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/binance/linear/config.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/binance/linear/lot_sizes_linear.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/binance/linear/pdt_matchings_linear.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/binance/linear/tick_sizes_linear.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/config.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/lot_sizes_inverse.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/lot_sizes_linear.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/lot_sizes_option.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/lot_sizes_spot.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/pdt_matchings_inverse.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/pdt_matchings_linear.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/pdt_matchings_option.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/pdt_matchings_spot.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/tick_sizes_inverse.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/tick_sizes_linear.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/tick_sizes_option.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/bybit/tick_sizes_spot.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/configuration.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config/ib/config.yml +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/config_handler.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/const/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/const/_zmq_routes.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/const/aliases.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/const/common.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/const/paths.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/data_tools/data_tool_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/data_tools/data_tool_pandas.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/data_tools/data_tool_polars.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/data_bar.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/data_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/data_quote.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/data_tick.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/data_time_based.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/resolution.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/datas/timeframe.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/engines/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/engines/backtest_engine.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/engines/base_engine.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/engines/sandbox_engine.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/engines/trade_engine.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/engines/train_engine.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/errors.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/binance/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/binance/exchange.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/binance/linear/exchange.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/binance/rest_api.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/binance/ws_api.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/exchange.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_inverse +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_linear +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_option +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_spot +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_inverse +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_linear +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_option +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_spot +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/ws_api.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/exchange_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/rest_api_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/ws_api_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/account_summary_tags.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/client.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/comm.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/commission_report.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/common.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/connection.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/contract.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/decoder.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/enum_implem.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/errors.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/execution.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/ibapi.pyproj +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/message.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/news.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/object_implem.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/order.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/order_condition.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/order_state.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/orderdecoder.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/reader.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/scanner.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/server_versions.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/softdollartier.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/tag_value.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/ticktype.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/utils.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/externals/ibapi/wrapper.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/git_controller.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/indicators/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/indicators/indicator_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/indicators/ta_indicator.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/indicators/talib_indicator.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/investment_profile.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/main.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/base_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/connection_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/data_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/order_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/portfolio_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/risk_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/managers/strategy_manager.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/assets/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/assets/all_assets_mixin.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/assets/crypto_assets_mixin.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/assets/defi_assets_mixin.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/assets/tradfi_assets_mixin.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/backtest_mixin.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/mixins/trade_mixin.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/models/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/models/model_backtest.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/models/model_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/models/model_meta.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/models/pytorch_model.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/models/sklearn_model.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/orders/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/orders/order_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/orders/order_crypto.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/orders/order_ib.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/orders/order_statuses.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/orders/order_time_in_force.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/plogging/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/plogging/config.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/plogging/filters.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/plogging/formatter.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/plogging/handlers.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/portfolios/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/portfolios/base_portfolio.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/portfolios/crypto_portfolio.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/portfolios/defi_portfolio.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/portfolios/portfolio.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/portfolios/tradfi_portfolio.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/positions/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/positions/position_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/positions/position_crypto.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/positions/position_ib.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/products/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/products/product_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/products/product_crypto.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/products/product_ib.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/allocation_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/diversification_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/execution_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/hedging_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/optimization_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/portfolio_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/rebalancing_strategy.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/strategy_backtest.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/strategy_base.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/strategies/strategy_meta.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/templates/dashboards/pfund-overview.streamlit.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/templates/notebooks/pfund-analytics.ipynb +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/templates/notebooks/pfund-overview.ipynb +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/types/backtest.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/types/bybit.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/types/common_literals.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/types/core.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/types/data_tool.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/universes/__init__.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/universes/base_universe.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/universes/crypto_universe.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/universes/defi_universe.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/universes/tradfi_universe.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/universes/universe.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/utils/envs.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/utils/utils.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/validations/backtest.py +0 -0
- {pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/zeromq.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pfund
|
|
3
|
-
Version: 0.0.2
|
|
3
|
+
Version: 0.0.2.dev2
|
|
4
4
|
Summary: A Complete Algo-Trading Framework for Machine Learning, enabling trading across TradFi, CeFi and DeFi. Supports Vectorized and Event-Driven Backtesting, Paper and Live Trading
|
|
5
5
|
Home-page: https://pfund.ai
|
|
6
6
|
License: Apache-2.0
|
|
@@ -8,20 +8,11 @@ Keywords: trading,algo-trading,stocks,cryptos,cryptocurrencies,TradFi,CeFi,DeFi,
|
|
|
8
8
|
Author: Stephen Yau
|
|
9
9
|
Author-email: softwareentrepreneer+pfund@gmail.com
|
|
10
10
|
Requires-Python: >=3.10,<4.0
|
|
11
|
-
Classifier: Intended Audience :: Developers
|
|
12
|
-
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
13
|
-
Classifier: Intended Audience :: Information Technology
|
|
14
|
-
Classifier: Intended Audience :: Science/Research
|
|
15
11
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
16
|
-
Classifier: Operating System :: OS Independent
|
|
17
12
|
Classifier: Programming Language :: Python :: 3
|
|
18
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
-
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
23
|
-
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
|
-
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
25
16
|
Provides-Extra: all
|
|
26
17
|
Provides-Extra: data
|
|
27
18
|
Provides-Extra: fe
|
|
@@ -37,7 +28,7 @@ Requires-Dist: mlflow (>=2.16.1,<3.0.0) ; extra == "ml" or extra == "all"
|
|
|
37
28
|
Requires-Dist: optuna (>=4.0.0,<5.0.0) ; extra == "train" or extra == "all"
|
|
38
29
|
Requires-Dist: orjson (>=3.10.1,<4.0.0)
|
|
39
30
|
Requires-Dist: papermill (>=2.6.0,<3.0.0) ; extra == "stats" or extra == "all"
|
|
40
|
-
Requires-Dist: pfeed[all] (>=0.0.2,<0.0.3) ; extra == "data" or extra == "all"
|
|
31
|
+
Requires-Dist: pfeed[all] (>=0.0.2.dev2,<0.0.3) ; extra == "data" or extra == "all"
|
|
41
32
|
Requires-Dist: pfolio (>=0.0.1.dev4,<0.0.2) ; extra == "stats" or extra == "train" or extra == "all"
|
|
42
33
|
Requires-Dist: platformdirs (>=4.3.6,<5.0.0)
|
|
43
34
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
@@ -68,10 +59,10 @@ Description-Content-Type: text/markdown
|
|
|
68
59
|

|
|
69
60
|
[](https://pypi.org/project/pfund)
|
|
70
61
|

|
|
71
|
-
[](https://marimo.io)
|
|
72
62
|
<!-- [](https://jupyterbook.org) -->
|
|
74
|
-
|
|
64
|
+
[](https://marimo.io)
|
|
65
|
+
[](https://python-poetry.org/)
|
|
75
66
|
|
|
76
67
|
[TradFi]: https://www.techopedia.com/definition/traditional-finance-tradfi
|
|
77
68
|
[CeFi]: https://www.techopedia.com/definition/centralized-finance-cefi
|
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|

|
|
6
6
|
[](https://pypi.org/project/pfund)
|
|
7
7
|

|
|
8
|
-
[](https://marimo.io)
|
|
9
8
|
<!-- [](https://jupyterbook.org) -->
|
|
11
|
-
|
|
10
|
+
[](https://marimo.io)
|
|
11
|
+
[](https://python-poetry.org/)
|
|
12
12
|
|
|
13
13
|
[TradFi]: https://www.techopedia.com/definition/traditional-finance-tradfi
|
|
14
14
|
[CeFi]: https://www.techopedia.com/definition/centralized-finance-cefi
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import click
|
|
2
|
-
from trogon import tui
|
|
3
2
|
|
|
4
3
|
from pfund.config_handler import ConfigHandler
|
|
5
4
|
from pfund.cli.commands.docker_compose import docker_compose
|
|
6
5
|
from pfund.cli.commands.config import config
|
|
7
6
|
|
|
8
7
|
|
|
9
|
-
@tui(command='tui', help="Open terminal UI")
|
|
10
8
|
@click.group(context_settings={"help_option_names": ["-h", "--help"]})
|
|
11
9
|
@click.pass_context
|
|
12
10
|
@click.version_option()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pfund"
|
|
3
|
-
version = "0.0.2"
|
|
3
|
+
version = "0.0.2.dev2"
|
|
4
4
|
description = "A Complete Algo-Trading Framework for Machine Learning, enabling trading across TradFi, CeFi and DeFi. Supports Vectorized and Event-Driven Backtesting, Paper and Live Trading"
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
authors = ["Stephen Yau <softwareentrepreneer+pfund@gmail.com>"]
|
|
@@ -9,20 +9,6 @@ homepage = "https://pfund.ai"
|
|
|
9
9
|
repository = "https://github.com/PFund-Software-Ltd/pfund"
|
|
10
10
|
documentation = "https://pfund-docs.pfund.ai"
|
|
11
11
|
keywords = ["trading", "algo-trading", "stocks", "cryptos", "cryptocurrencies", "TradFi", "CeFi", "DeFi", "portfolio management", "investment", "backtesting", "machine learning"]
|
|
12
|
-
classifiers = [
|
|
13
|
-
"Operating System :: OS Independent",
|
|
14
|
-
"Intended Audience :: Developers",
|
|
15
|
-
"Intended Audience :: Science/Research",
|
|
16
|
-
"Intended Audience :: Financial and Insurance Industry",
|
|
17
|
-
"Intended Audience :: Information Technology",
|
|
18
|
-
"Topic :: Office/Business :: Financial :: Investment",
|
|
19
|
-
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
20
|
-
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
21
|
-
"Programming Language :: Python :: 3.10",
|
|
22
|
-
"Programming Language :: Python :: 3.11",
|
|
23
|
-
"Programming Language :: Python :: 3.12",
|
|
24
|
-
"Programming Language :: Python :: 3.13",
|
|
25
|
-
]
|
|
26
12
|
|
|
27
13
|
[tool.poetry.dependencies]
|
|
28
14
|
python = "^3.10"
|
|
@@ -41,7 +27,7 @@ platformdirs = "^4.3.6"
|
|
|
41
27
|
python-dotenv = "^1.0.1"
|
|
42
28
|
websocket-client = "^1.8.0"
|
|
43
29
|
python-telegram-bot = "^21.5"
|
|
44
|
-
pfeed = { version = "^0.0.2", optional = true, extras = ["all"] }
|
|
30
|
+
pfeed = { version = "^0.0.2.dev2", optional = true, extras = ["all"] }
|
|
45
31
|
pfolio = { version = "^0.0.1.dev4", optional = true }
|
|
46
32
|
pyzmq = {version = "^26.2.0", optional = true}
|
|
47
33
|
redis = { version = "^5.1.1", optional = true, extras = ["hiredis"] }
|
|
@@ -96,7 +82,15 @@ pytest-xdist = "^3.6.1"
|
|
|
96
82
|
tox = "^4.21.2"
|
|
97
83
|
faker = "^30.1.0"
|
|
98
84
|
bandit = "^1.7.10"
|
|
99
|
-
pre-commit = "^4.0.
|
|
85
|
+
pre-commit = "^4.0.0"
|
|
86
|
+
|
|
87
|
+
[tool.poetry.group.doc]
|
|
88
|
+
optional = true
|
|
89
|
+
|
|
90
|
+
[tool.poetry.group.doc.dependencies]
|
|
91
|
+
jupyter-book = "^1.0.2"
|
|
92
|
+
notebook = "^7.2.2"
|
|
93
|
+
sphinxawesome-theme = "5.2.0"
|
|
100
94
|
|
|
101
95
|
[build-system]
|
|
102
96
|
requires = ["poetry-core"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_inverse
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_linear
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_option
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_spot
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_inverse
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_linear
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_option
RENAMED
|
File without changes
|
{pfund-0.0.2 → pfund-0.0.2.dev2}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_spot
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|