-
Notifications
You must be signed in to change notification settings - Fork 0
ci/security/test: automated audit fixes for QuantRuntimeSettings #138
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -247,7 +247,7 @@ | |
| "label": "Binance", | ||
| "target_name": "default", | ||
| "cash_currency": "USD", | ||
| "default_strategy_profile": "crypto_live_pool_rotation", | ||
| "default_strategy_profile": "crypto_equity_combo", | ||
| "supported_domains": [ | ||
| "crypto" | ||
| ] | ||
|
|
@@ -504,6 +504,18 @@ | |
| "combo_mode": "dynamic" | ||
| } | ||
| }, | ||
| "cn_industry_etf_rotation": { | ||
| "label": "A股行业ETF轮动", | ||
| "label_en": "CN Industry ETF Rotation", | ||
| "domain": "cn_equity", | ||
| "runtime_enabled": true, | ||
|
Comment on lines
+507
to
+511
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Adding this QMT default profile to the generated catalog still leaves the checked-in browser fallback catalog incomplete: Useful? React with 👍 / 👎. |
||
| "features": { | ||
| "income_layer": false, | ||
| "option_overlay": false, | ||
| "dca": false, | ||
| "combo": false | ||
| } | ||
| }, | ||
| "cn_industry_etf_rotation_aggressive": { | ||
| "label": "A股ETF轮动", | ||
| "label_en": "CN ETF Rotation", | ||
|
|
@@ -595,4 +607,4 @@ | |
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding
binancehere makes the console/manual workflow able to dispatch Binance switches, but the UI/backend config already advertises Binance DCA support (DCA_SUPPORTED_PLATFORMSincludesbinanceandcrypto_btc_dcahas DCA defaults). For a Binancecrypto_btc_dcaswitch with DCA controls, the workflow reachesbuild_runtime_switch.py, whoseDCA_PROFILESstill only includes the two US DCA profiles, so it exits withDCA settings are only supported for DCA strategy profilesbefore applying anything. Please either add the crypto DCA profile to the builder’s DCA support or don’t expose Binance until that path is handled.Useful? React with 👍 / 👎.