rqalpha 5.5.0__tar.gz → 5.5.2__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.
- rqalpha-5.5.2/PKG-INFO +48 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/_version.py +3 -3
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/interface.py +7 -3
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/config.py +1 -1
- rqalpha-5.5.2/rqalpha.egg-info/PKG-INFO +48 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/setup.cfg +1 -1
- rqalpha-5.5.0/PKG-INFO +0 -20
- rqalpha-5.5.0/rqalpha.egg-info/PKG-INFO +0 -20
- {rqalpha-5.5.0 → rqalpha-5.5.2}/CHANGELOG.rst +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/LICENSE +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/MANIFEST.in +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/README.rst +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/__main__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/api.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/apis/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/apis/api_abstract.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/apis/api_base.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/apis/api_rqdatac.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/apis/names.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/cmds/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/cmds/bundle.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/cmds/entry.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/cmds/misc.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/cmds/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/cmds/run.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/config.yml +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/const.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/events.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/execution_context.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/executor.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/global_var.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/strategy.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/strategy_context.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/strategy_loader.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/core/strategy_universe.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/bar_dict_price_board.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/base_data_source/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/base_data_source/adjust.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/base_data_source/data_source.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/base_data_source/storage_interface.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/base_data_source/storages.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/bundle.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/data_proxy.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/data/trading_dates_mixin.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/environment.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/IF1706_20161108.csv +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/IF_macd.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/buy_and_hold.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/data_source/get_csv_module.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/data_source/import_get_csv_module.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/data_source/read_csv_as_df.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/extend_api/rqalpha_mod_extend_api_demo.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/extend_api/test_extend_api.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/golden_cross.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/macd.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/pair_trading.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/rsi.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/run_code_demo.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/run_file_demo.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/run_func_demo.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/subscribe_event.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/test_pt.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/examples/turtle.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/main.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/api/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/api/api_future.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/api/api_stock.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/component_validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/position_model.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/position_validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_accounts/validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/plot/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/plot/consts.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/plot/plot.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/plot/utils.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/plot_store.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/report/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/report/excel_template.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/report/report.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/report/templates/summary.xlsx +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_progress/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_progress/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/cash_validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/is_trading_validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/price_validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/self_trade_validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_scheduler/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_scheduler/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_scheduler/scheduler.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/matcher.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/signal_broker.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/simulation_broker.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/simulation_event_source.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/slippage.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/testing.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/validator.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_transaction_cost/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_transaction_cost/deciders.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_transaction_cost/mod.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/utils.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod_config.yml +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/model/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/model/bar.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/model/instrument.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/model/order.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/model/tick.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/model/trade.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/portfolio/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/portfolio/account.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/portfolio/position.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/resource/ricequant-logo.png +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/user_module.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/arg_checker.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/class_helper.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/click_helper.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/concurrent.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/datetime_func.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/dict_func.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/exception.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/functools.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/i18n.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/log_capture.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/logger.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/package_helper.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/persisit_helper.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/repr.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/risk_free_helper.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/rq_json.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/strategy_loader_help.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/testing/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/testing/fixtures.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/testing/mocking.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/LC_MESSAGES/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/LC_MESSAGES/messages.mo +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/LC_MESSAGES/messages.po +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/typing.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha.egg-info/SOURCES.txt +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha.egg-info/dependency_links.txt +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha.egg-info/entry_points.txt +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha.egg-info/not-zip-safe +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha.egg-info/requires.txt +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha.egg-info/top_level.txt +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/setup.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_accounts/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_accounts/test_account_model.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_accounts/test_futures_settlement_price_type.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_accounts/test_margin_stocks.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_accounts/test_position_models.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_scheduler/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_scheduler/test_physical_time.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_scheduler/test_scheduler.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_management_fee.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_match.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_signal_broker.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_simulation_broker.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_simulation_event_source.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_transaction_cost/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_transaction_cost/test_commission_multiplier.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/test_api_base.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/test_api_future.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/test_api_stock.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/test_config.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/utils.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_f_buy_and_hold.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_f_delivery.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_f_macd.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_f_macd_signal.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_f_mean_reverting.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_f_tick_size.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_buy_and_hold.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_dual_thrust.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_pit_tax.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_scheduler.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_tick_size.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_turtle.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_s_turtle_signal.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/test_sf_buy_and_hold.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_data/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_data/test_auto_update_bundle/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_data/test_auto_update_bundle/test_auto_update_bundle_mixin.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_data/test_instrument_mixin.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_data/test_trading_dates_mixin.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_mod/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_mod/test_sys_simulation/__init__.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_mod/test_sys_simulation/test_simulation_event_source.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/tests/utils.py +0 -0
- {rqalpha-5.5.0 → rqalpha-5.5.2}/versioneer.py +0 -0
rqalpha-5.5.2/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rqalpha
|
|
3
|
+
Version: 5.5.2
|
|
4
|
+
Summary: Ricequant Algorithm Trading System
|
|
5
|
+
Home-page: https://github.com/ricequant/rqalpha
|
|
6
|
+
Author: ricequant
|
|
7
|
+
Author-email: public@ricequant.com
|
|
8
|
+
License: Apache License v2
|
|
9
|
+
Classifier: Programming Language :: Python
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.6
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: requests
|
|
21
|
+
Requires-Dist: numpy<2.0.0
|
|
22
|
+
Requires-Dist: pandas>=1.0.5
|
|
23
|
+
Requires-Dist: python-dateutil
|
|
24
|
+
Requires-Dist: six
|
|
25
|
+
Requires-Dist: logbook
|
|
26
|
+
Requires-Dist: click>=7.0.0
|
|
27
|
+
Requires-Dist: jsonpickle
|
|
28
|
+
Requires-Dist: simplejson
|
|
29
|
+
Requires-Dist: PyYAML
|
|
30
|
+
Requires-Dist: tabulate
|
|
31
|
+
Requires-Dist: rqrisk>=1.0.6
|
|
32
|
+
Requires-Dist: h5py
|
|
33
|
+
Requires-Dist: matplotlib>=3.1.0
|
|
34
|
+
Requires-Dist: openpyxl
|
|
35
|
+
Requires-Dist: methodtools
|
|
36
|
+
Requires-Dist: filelock
|
|
37
|
+
Provides-Extra: profiler
|
|
38
|
+
Requires-Dist: line_profiler; extra == "profiler"
|
|
39
|
+
Dynamic: author
|
|
40
|
+
Dynamic: author-email
|
|
41
|
+
Dynamic: classifier
|
|
42
|
+
Dynamic: home-page
|
|
43
|
+
Dynamic: license
|
|
44
|
+
Dynamic: license-file
|
|
45
|
+
Dynamic: provides-extra
|
|
46
|
+
Dynamic: requires-dist
|
|
47
|
+
Dynamic: requires-python
|
|
48
|
+
Dynamic: summary
|
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2025-
|
|
11
|
+
"date": "2025-04-21T18:11:56+0800",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "5.5.
|
|
14
|
+
"full-revisionid": "c65579eb9466ccdf76adfe6abea9a61ccd75a8e6",
|
|
15
|
+
"version": "5.5.2"
|
|
16
16
|
}
|
|
17
17
|
''' # END VERSION_JSON
|
|
18
18
|
|
|
@@ -470,11 +470,15 @@ class AbstractDataSource(object):
|
|
|
470
470
|
"""
|
|
471
471
|
raise NotImplementedError
|
|
472
472
|
|
|
473
|
-
def get_futures_trading_parameters(self, instrument):
|
|
473
|
+
def get_futures_trading_parameters(self, instrument, dt):
|
|
474
474
|
"""
|
|
475
475
|
获取期货合约的时序手续费信息
|
|
476
|
-
:param instrument:
|
|
477
|
-
:
|
|
476
|
+
:param instrument: 合约对象
|
|
477
|
+
:type instrument: :class:`~Instrument`
|
|
478
|
+
|
|
479
|
+
:param datetime.datetime dt: 交易日
|
|
480
|
+
|
|
481
|
+
:return: :class:`FuturesTradingParameters`
|
|
478
482
|
"""
|
|
479
483
|
raise NotImplementedError
|
|
480
484
|
|
|
@@ -236,7 +236,7 @@ def parse_accounts(accounts):
|
|
|
236
236
|
def parse_init_positions(positions):
|
|
237
237
|
# --position 000001.XSHE:1000,IF1701:-1
|
|
238
238
|
result = []
|
|
239
|
-
if not isinstance(positions, str):
|
|
239
|
+
if not isinstance(positions, str) or not positions:
|
|
240
240
|
return result
|
|
241
241
|
for s in positions.split(','):
|
|
242
242
|
try:
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rqalpha
|
|
3
|
+
Version: 5.5.2
|
|
4
|
+
Summary: Ricequant Algorithm Trading System
|
|
5
|
+
Home-page: https://github.com/ricequant/rqalpha
|
|
6
|
+
Author: ricequant
|
|
7
|
+
Author-email: public@ricequant.com
|
|
8
|
+
License: Apache License v2
|
|
9
|
+
Classifier: Programming Language :: Python
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Python: >=3.6
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Requires-Dist: requests
|
|
21
|
+
Requires-Dist: numpy<2.0.0
|
|
22
|
+
Requires-Dist: pandas>=1.0.5
|
|
23
|
+
Requires-Dist: python-dateutil
|
|
24
|
+
Requires-Dist: six
|
|
25
|
+
Requires-Dist: logbook
|
|
26
|
+
Requires-Dist: click>=7.0.0
|
|
27
|
+
Requires-Dist: jsonpickle
|
|
28
|
+
Requires-Dist: simplejson
|
|
29
|
+
Requires-Dist: PyYAML
|
|
30
|
+
Requires-Dist: tabulate
|
|
31
|
+
Requires-Dist: rqrisk>=1.0.6
|
|
32
|
+
Requires-Dist: h5py
|
|
33
|
+
Requires-Dist: matplotlib>=3.1.0
|
|
34
|
+
Requires-Dist: openpyxl
|
|
35
|
+
Requires-Dist: methodtools
|
|
36
|
+
Requires-Dist: filelock
|
|
37
|
+
Provides-Extra: profiler
|
|
38
|
+
Requires-Dist: line_profiler; extra == "profiler"
|
|
39
|
+
Dynamic: author
|
|
40
|
+
Dynamic: author-email
|
|
41
|
+
Dynamic: classifier
|
|
42
|
+
Dynamic: home-page
|
|
43
|
+
Dynamic: license
|
|
44
|
+
Dynamic: license-file
|
|
45
|
+
Dynamic: provides-extra
|
|
46
|
+
Dynamic: requires-dist
|
|
47
|
+
Dynamic: requires-python
|
|
48
|
+
Dynamic: summary
|
rqalpha-5.5.0/PKG-INFO
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: rqalpha
|
|
3
|
-
Version: 5.5.0
|
|
4
|
-
Summary: Ricequant Algorithm Trading System
|
|
5
|
-
Home-page: https://github.com/ricequant/rqalpha
|
|
6
|
-
Author: ricequant
|
|
7
|
-
Author-email: public@ricequant.com
|
|
8
|
-
License: Apache License v2
|
|
9
|
-
Classifier: Programming Language :: Python
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Requires-Python: >=3.6
|
|
19
|
-
Provides-Extra: profiler
|
|
20
|
-
License-File: LICENSE
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: rqalpha
|
|
3
|
-
Version: 5.5.0
|
|
4
|
-
Summary: Ricequant Algorithm Trading System
|
|
5
|
-
Home-page: https://github.com/ricequant/rqalpha
|
|
6
|
-
Author: ricequant
|
|
7
|
-
Author-email: public@ricequant.com
|
|
8
|
-
License: Apache License v2
|
|
9
|
-
Classifier: Programming Language :: Python
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Requires-Python: >=3.6
|
|
19
|
-
Provides-Extra: profiler
|
|
20
|
-
License-File: LICENSE
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/report/excel_template.py
RENAMED
|
File without changes
|
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_analyser/report/templates/summary.xlsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/cash_validator.py
RENAMED
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/is_trading_validator.py
RENAMED
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/price_validator.py
RENAMED
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_risk/validators/self_trade_validator.py
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
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/mod/rqalpha_mod_sys_simulation/simulation_event_source.py
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
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/LC_MESSAGES/__init__.py
RENAMED
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/LC_MESSAGES/messages.mo
RENAMED
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/rqalpha/utils/translations/zh_Hans_CN/LC_MESSAGES/messages.po
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
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_simulation_broker.py
RENAMED
|
File without changes
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/tests/api_tests/mod/sys_simulation/test_simulation_event_source.py
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
|
{rqalpha-5.5.0 → rqalpha-5.5.2}/tests/unittest/test_data/test_auto_update_bundle/__init__.py
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
|