pfund 0.0.1.dev6__tar.gz → 0.0.1.dev8__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.1.dev6 → pfund-0.0.1.dev8}/PKG-INFO +13 -2
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/CONTRIBUTING.md +0 -5
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pyproject.toml +17 -24
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/LICENSE +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/README.md +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/accounts/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/accounts/account_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/accounts/account_crypto.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/accounts/account_ib.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/adapter.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/analyzer.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/balances/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/balances/balance_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/balances/balance_crypto.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/balances/balance_ib.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/broker_backtest.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/broker_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/broker_crypto.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/broker_live.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/ib/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/ib/broker_ib.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/ib/ib_api.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/ib/ib_client.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/brokers/ib/ib_wrapper.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/cli/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/cli/commands/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/cli/commands/config.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/cli/commands/docker_compose.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/cli/main.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/config.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/lot_sizes_inverse.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/lot_sizes_linear.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/lot_sizes_option.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/lot_sizes_spot.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/pdt_matchings_inverse.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/pdt_matchings_linear.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/pdt_matchings_option.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/pdt_matchings_spot.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/tick_sizes_inverse.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/tick_sizes_linear.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/tick_sizes_option.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/bybit/tick_sizes_spot.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/configuration.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/ib/config.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config/logging.yml +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/config_handler.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/const/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/const/_zmq_routes.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/const/commons.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/const/paths.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/data_tools/data_tool_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/data_tools/data_tool_pandas.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/data_bar.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/data_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/data_quote.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/data_tick.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/data_time_based.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/resolution.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/datas/timeframe.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/engines/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/engines/backtest_engine.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/engines/base_engine.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/engines/test_engine.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/engines/trade_engine.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/engines/train_engine.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/errors.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/exchange.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_inverse +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_linear +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_option +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_spot +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_inverse +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_linear +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_option +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_return_spot +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/types.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/ws_api.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/exchange_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/rest_api_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/ws_api_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/account_summary_tags.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/client.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/comm.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/commission_report.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/common.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/connection.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/contract.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/decoder.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/enum_implem.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/errors.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/execution.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/ibapi.pyproj +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/message.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/news.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/object_implem.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/order.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/order_condition.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/order_state.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/orderdecoder.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/reader.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/scanner.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/server_versions.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/softdollartier.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/tag_value.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/ticktype.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/utils.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/externals/ibapi/wrapper.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/indicators/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/indicators/indicator_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/indicators/ta_indicator.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/indicators/talib_indicator.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/investment_profile.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/main.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/base_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/connection_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/data_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/order_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/portfolio_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/risk_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/managers/strategy_manager.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/mixins/backtest.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/models/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/models/model_backtest.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/models/model_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/models/model_meta.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/models/pytorch_model.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/models/sklearn_model.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/orders/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/orders/order_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/orders/order_crypto.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/orders/order_ib.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/orders/order_statuses.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/orders/order_time_in_force.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/plogging/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/plogging/config.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/plogging/filters.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/plogging/formatter.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/plogging/handlers.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/portfolio.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/positions/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/positions/position_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/positions/position_crypto.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/positions/position_ib.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/products/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/products/product_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/products/product_crypto.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/products/product_ib.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/risk_monitor.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/__init__.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/allocation_strategy.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/diversification_strategy.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/hedging_strategy.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/optimization_strategy.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/portfolio_strategy.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/rebalancing_strategy.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/strategy_backtest.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/strategy_base.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/strategies/strategy_meta.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/types/backtest.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/types/common_literals.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/types/core.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/universe.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/utils/aliases.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/utils/envs.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/utils/utils.py +0 -0
- {pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/pfund/zeromq.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pfund
|
|
3
|
-
Version: 0.0.1.
|
|
3
|
+
Version: 0.0.1.dev8
|
|
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
|
|
@@ -13,14 +13,25 @@ Classifier: Programming Language :: Python :: 3
|
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Provides-Extra: data
|
|
17
|
+
Provides-Extra: ml
|
|
16
18
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
17
19
|
Requires-Dist: gitpython (>=3.1.43,<4.0.0)
|
|
18
|
-
Requires-Dist:
|
|
20
|
+
Requires-Dist: mlflow (>=2.11.3,<3.0.0) ; extra == "ml"
|
|
21
|
+
Requires-Dist: orjson (>=3.9.14,<4.0.0) ; extra == "data"
|
|
22
|
+
Requires-Dist: pfeed[boost,df] (>=0.0.1.dev8,<0.0.2) ; extra == "data"
|
|
19
23
|
Requires-Dist: platformdirs (>=4.2.0,<5.0.0)
|
|
24
|
+
Requires-Dist: psutil (>=5.9.8,<6.0.0) ; extra == "data"
|
|
25
|
+
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
|
20
26
|
Requires-Dist: python-telegram-bot (>=20.7,<21.0)
|
|
21
27
|
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
|
|
28
|
+
Requires-Dist: pyzmq (>=25.1.2,<26.0.0) ; extra == "data"
|
|
29
|
+
Requires-Dist: requests (>=2.31.0,<3.0.0)
|
|
22
30
|
Requires-Dist: rich (>=13.7.0,<14.0.0)
|
|
23
31
|
Requires-Dist: schedule (>=1.2.1,<2.0.0)
|
|
32
|
+
Requires-Dist: scikit-learn (>=1.4.0,<2.0.0) ; extra == "ml"
|
|
33
|
+
Requires-Dist: ta (>=0.11.0,<0.12.0) ; extra == "ml"
|
|
34
|
+
Requires-Dist: torch (>=2.1.2,<3.0.0) ; extra == "ml"
|
|
24
35
|
Requires-Dist: websocket-client (>=1.7.0,<2.0.0)
|
|
25
36
|
Project-URL: Documentation, https://pfund-docs.pfund.ai
|
|
26
37
|
Project-URL: Repository, https://github.com/PFund-Software-Ltd/pfund
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pfund"
|
|
3
|
-
version = "0.0.1.
|
|
3
|
+
version = "0.0.1.dev8"
|
|
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>"]
|
|
@@ -12,36 +12,32 @@ keywords = ["trading", "algo-trading", "stocks", "cryptos", "cryptocurrencies",
|
|
|
12
12
|
|
|
13
13
|
[tool.poetry.dependencies]
|
|
14
14
|
python = ">=3.10 <3.13"
|
|
15
|
-
|
|
15
|
+
python-dotenv = "^1.0.1"
|
|
16
16
|
pyyaml = "^6.0.1"
|
|
17
17
|
rich = "^13.7.0"
|
|
18
|
+
click = "^8.1.7"
|
|
18
19
|
schedule = "^1.2.1"
|
|
20
|
+
platformdirs = "^4.2.0"
|
|
21
|
+
requests = "^2.31.0"
|
|
19
22
|
websocket-client = "^1.7.0"
|
|
20
23
|
python-telegram-bot = "^20.7"
|
|
21
|
-
click = "^8.1.7"
|
|
22
|
-
platformdirs = "^4.2.0"
|
|
23
24
|
gitpython = "^3.1.43"
|
|
25
|
+
pfeed = { version = "^0.0.1.dev8", optional = true, extras=["df", "boost"] }
|
|
26
|
+
psutil = { version = "^5.9.8", optional = true }
|
|
27
|
+
orjson = { version = "^3.9.14", optional = true }
|
|
28
|
+
pyzmq = { version = "^25.1.2", optional = true }
|
|
29
|
+
ta = { version = "^0.11.0", optional = true }
|
|
30
|
+
scikit-learn = { version = "^1.4.0", optional = true }
|
|
31
|
+
torch = { version = "^2.1.2", optional = true }
|
|
32
|
+
mlflow = { version = "^2.11.3", optional = true }
|
|
33
|
+
|
|
34
|
+
[tool.poetry.extras]
|
|
35
|
+
data = ["pfeed", "psutil", "orjson", "pyzmq"]
|
|
36
|
+
ml = ["ta", "scikit-learn", "torch", "mlflow"]
|
|
24
37
|
|
|
25
38
|
[tool.poetry.scripts]
|
|
26
39
|
pfund = "pfund.main:run_cli"
|
|
27
40
|
|
|
28
|
-
[tool.poetry.group.pyodide-incompatible.dependencies]
|
|
29
|
-
psutil = "^5.9.8"
|
|
30
|
-
orjson = "^3.9.14"
|
|
31
|
-
ta = "^0.11.0"
|
|
32
|
-
pyzmq = "^25.1.2"
|
|
33
|
-
|
|
34
|
-
[tool.poetry.group.ml]
|
|
35
|
-
optional = true
|
|
36
|
-
|
|
37
|
-
[tool.poetry.group.ml.dependencies]
|
|
38
|
-
torch = "^2.1.2"
|
|
39
|
-
scikit-learn = "^1.4.0"
|
|
40
|
-
mlflow = "^2.11.3"
|
|
41
|
-
|
|
42
|
-
[tool.poetry.group.dev]
|
|
43
|
-
optional = true
|
|
44
|
-
|
|
45
41
|
[tool.poetry.group.dev.dependencies]
|
|
46
42
|
pfeed = {path = "../pfeed", develop = true}
|
|
47
43
|
pybit = "^5.6.2"
|
|
@@ -58,9 +54,6 @@ ruff = "^0.3.5"
|
|
|
58
54
|
pytest-mock = "^3.14.0"
|
|
59
55
|
pytest-cov = "^5.0.0"
|
|
60
56
|
|
|
61
|
-
[tool.poetry.group.doc]
|
|
62
|
-
optional = true
|
|
63
|
-
|
|
64
57
|
[tool.poetry.group.doc.dependencies]
|
|
65
58
|
jupyter-book = "^1.0.0"
|
|
66
59
|
notebook = "^7.1.0"
|
|
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.1.dev6 → pfund-0.0.1.dev8}/pfund/exchanges/bybit/rest_api_samples/get_markets_result_spot
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pfund-0.0.1.dev6 → pfund-0.0.1.dev8}/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
|