From 1e02f6d05cab09413b4bfab1f50971a68e8fce4d Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 24 Nov 2025 23:30:54 +0100 Subject: [PATCH] docs: correct default label_weights MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- README.md | 2 +- quickadapter/user_data/config-template.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e7de678..df3b26e 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ docker compose up -d --build | freqai.feature_parameters.max_label_natr_ratio | 12.0 | float > 0 | Maximum labeling NATR ratio used for reversals labeling HPO. | | freqai.feature_parameters.label_frequency_candles | `auto` | int >= 2 \| `auto` | Reversals labeling frequency. `auto` = max(2, 2 \* number of whitelisted pairs). | | freqai.feature_parameters.label_metric | `euclidean` | string (supported: `euclidean`,`minkowski`,`cityblock`,`chebyshev`,`mahalanobis`,`seuclidean`,`jensenshannon`,`sqeuclidean`,...) | Metric used in distance calculations to ideal point. | -| freqai.feature_parameters.label_weights | [0.5,0.5,0.5] | list[float] | Per-objective weights used in distance calculations to ideal point. First objective is the number of detected reversals. Second objective is the median swing amplitude of Zigzag reversals (reversals quality). Third objective is the median volatility-adjusted swing amplitude. | +| freqai.feature_parameters.label_weights | [1/3,1/3,1/3] | list[float] | Per-objective weights used in distance calculations to ideal point. First objective is the number of detected reversals. Second objective is the median swing amplitude of Zigzag reversals (reversals quality). Third objective is the median volatility-adjusted swing amplitude. | | freqai.feature_parameters.label_p_order | `None` | float | p-order used by Minkowski / power-mean calculations (optional). | | freqai.feature_parameters.label_medoid_metric | `euclidean` | string | Metric used with `medoid`. | | freqai.feature_parameters.label_kmeans_metric | `euclidean` | string | Metric used for k-means clustering. | diff --git a/quickadapter/user_data/config-template.json b/quickadapter/user_data/config-template.json index 4654272..b84682a 100644 --- a/quickadapter/user_data/config-template.json +++ b/quickadapter/user_data/config-template.json @@ -144,7 +144,6 @@ "include_timeframes": ["5m", "15m", "1h", "4h"], "label_period_candles": 18, "label_metric": "euclidean", - "label_weights": [0.5, 0.5, 0.5], "include_shifted_candles": 6, "DI_threshold": 10, "weight_factor": 0.9, -- 2.43.0