freqai config update

This commit is contained in:
Ubuntu 2026-02-13 21:54:17 +08:00
parent ba9f570315
commit a97a11d17c

View File

@ -82,10 +82,11 @@
"live_retrain_hours": 2,
"outlier_detection": {
"method": "IsolationForest",
"contamination": 0.1
"contamination": 0.15 //
},
"feature_selection": {
"method": "recursive_elimination"
"method": "recursive_elimination",
"feature_number": 20 //
},
"feature_parameters": {
"include_timeframes": [
@ -95,36 +96,36 @@
"4h"
],
"include_corr_pairlist": [
"ETH/USDT",
"SOL/USDT"
"XAUT/USDT" //
],
"outlier_protection_percentage": 0.1,
"label_period_candles": 100,
"include_shifted_candles": 3,
"include_shifted_candles": 2, //
"DI_threshold": 0.5,
"weight_factor": 0.9,
"principal_component_analysis": false,
"principal_component_analysis": true, // PCA
"use_SVM_to_remove_outliers": true,
"indicator_periods_candles": [
10,
20,
50,
100
50 //
],
"plot_feature_importances": 10
},
"data_split_parameters": {
"test_size": 0.15,
"test_size": 0.2, //
"shuffle": false
},
"model_training_parameters": {
"n_estimators": 400,
"learning_rate": 0.01,
"max_depth": 8,
"min_child_weight": 1,
"subsample": 0.8,
"colsample_bytree": 0.8,
"verbosity": 0
"n_estimators": 200, //
"learning_rate": 0.05, //
"max_depth": 5, //
"min_child_weight": 3, //
"subsample": 0.7, //
"colsample_bytree": 0.7, //
"verbosity": 0,
"reg_alpha": 0.1, // L1
"reg_lambda": 1.0 // L2
}
},
"fee": 0.0008,
@ -133,4 +134,4 @@
"listen_ip_address": "0.0.0.0",
"listen_port": 8080
}
}
}