Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions examples/targets/binance/crypto_combo.example.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "../../../schemas/runtime-target.schema.json",
"target_id": "binance/crypto_combo",
"description": "Binance target for crypto_equity_combo (50/50 BTC DCA/altcoin trend rotation with dynamic regime adjustment).",
"description": "Binance target for crypto_equity_combo R5 cash-cap shadow parameters (50/50 risk-on, 40/20 neutral, 25/0 hard risk-off).",
"github": {
"repository": "QuantStrategyLab/BinancePlatform",
"variable_scope": "repository"
Expand All @@ -23,7 +23,17 @@
}
},
"extra_variables": {
"BTC_WEIGHT": "0.50",
"TREND_WEIGHT": "0.50",
"DYNAMIC_MODE": "true",
"DYNAMIC_REGIME_OFF_CUT": "0.50"
"DYNAMIC_REGIME_MODE": "cash_cap",
"DYNAMIC_REGIME_OFF_CUT": "0.00",
"DYNAMIC_HARD_SMA200_RATIO": "0.95",
"DYNAMIC_HARD_MA200_SLOPE": "0.00",
"DYNAMIC_SOFT_SMA200_RATIO": "1.00",
"DYNAMIC_HARD_BTC_WEIGHT": "0.25",
"DYNAMIC_HARD_TREND_WEIGHT": "0.00",
"DYNAMIC_SOFT_BTC_WEIGHT": "0.40",
"DYNAMIC_SOFT_TREND_WEIGHT": "0.20"
}
}
4 changes: 2 additions & 2 deletions internal_dependency_matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"path": "requirements-lock.txt",
"package": "crypto-strategies",
"source_repo": "CryptoStrategies",
"ref": "6fe378adc6602412a1763ca115b5d17d311a65a9"
"ref": "746440683f63c3f696a12278aff9c7af030700c2"
},
{
"consumer_repo": "BinancePlatform",
Expand All @@ -20,7 +20,7 @@
"path": "requirements.txt",
"package": "crypto-strategies",
"source_repo": "CryptoStrategies",
"ref": "6fe378adc6602412a1763ca115b5d17d311a65a9"
"ref": "746440683f63c3f696a12278aff9c7af030700c2"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Align requirements.txt pin with BinancePlatform

When the dependency matrix checker runs with the BinancePlatform sibling checkout, it compares this row against BinancePlatform/requirements.txt. I checked the current BinancePlatform requirements.txt, and it still pins crypto-strategies at ccd3e8e25be285f72c92eacc72f7734ae8043fe3 while only requirements-lock.txt is on 746440...; this new row will therefore produce a ref mismatch for BinancePlatform/requirements.txt under check_internal_dependency_matrix.py --strict until the consumer file is updated or this matrix row is kept on the actual requirements pin.

Useful? React with 👍 / 👎.

},
{
"consumer_repo": "BinancePlatform",
Expand Down
Loading