From 4ddfa74ebeda03aa2501f2eb37e074b83266608a Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 13 Feb 2026 21:04:21 +0800 Subject: [PATCH] startup_candle_count 900 --- config_examples/freqaiprimer.json | 2 +- ...aiprimer_LightGBMRegressorMultiTarget.json | 148 ------------------ ...qaiprimer_XGBoostRegressorMultiTarget.json | 146 ----------------- config_examples/live.json | 12 +- 4 files changed, 5 insertions(+), 303 deletions(-) delete mode 100644 config_examples/freqaiprimer_LightGBMRegressorMultiTarget.json delete mode 100644 config_examples/freqaiprimer_XGBoostRegressorMultiTarget.json diff --git a/config_examples/freqaiprimer.json b/config_examples/freqaiprimer.json index 24d8fa16..ed7c1bf8 100644 --- a/config_examples/freqaiprimer.json +++ b/config_examples/freqaiprimer.json @@ -26,7 +26,7 @@ "exit": 15 }, "dry_run": false, - "startup_candle_count": 200, + "startup_candle_count": 900, "exchange": { "name": "okx", "key": "314e75b0-1113-47e8-ad01-1fca7e3c0496", diff --git a/config_examples/freqaiprimer_LightGBMRegressorMultiTarget.json b/config_examples/freqaiprimer_LightGBMRegressorMultiTarget.json deleted file mode 100644 index 5bb6e101..00000000 --- a/config_examples/freqaiprimer_LightGBMRegressorMultiTarget.json +++ /dev/null @@ -1,148 +0,0 @@ -{ - "$schema": "https://schema.freqtrade.io/schema.json", - "redis": { - "url": "redis://192.168.1.215:6379/0" - }, - "trading_mode": "spot", - "margin_mode": "isolated", - "max_open_trades": 5, - "stake_currency": "USDT", - "stake_amount": 350, - "tradable_balance_ratio": 1, - "process_only_new_candles": true, - "fiat_display_currency": "USD", - "dry_run": true, - "enable_strategy_log": true, - "timeframe": "3m", - "additional_timeframes": ["4h"], - "dry_run_wallet": 2000, - "cancel_open_orders_on_exit": true, - "stoploss": -0.14, - "max_entry_position_adjustment": 3, - "position_adjustment_enable": true, - "amount_reserve_percent": 0.05, - "unfilledtimeout": { - "entry": 5, - "exit": 15 - }, - "dry_run": false, - "startup_candle_count": 200, - "exchange": { - "name": "okx", - "key": "314e75b0-1113-47e8-ad01-1fca7e3c0496", - "secret": "9C8B170390F46EA6FB87592AD46F5A34", - "password": "nekFoylf:Om0", - "enable_ws": false, - "ccxt_config": { - "enableRateLimit": true, - "rateLimit": 500, - "options": { - "defaultType": "spot" - } - }, - "ccxt_async_config": { - "enableRateLimit": true, - "rateLimit": 3000, - "timeout": 20000 - }, - "pair_whitelist": ["BTC/USDT", "TON/USDT", "DOT/USDT", "XRP/USDT", "OKB/USDT", "SOL/USDT", "DOGE/USDT", "WCT/USDT", "TRUMP/USDT", "SUI/USDT", "PEPE/USDT", "TRB/USDT", "MASK/USDT", "UNI/USDT", "KAITO/USDT", "XAUT/USDT"], - "pair_blacklist": ["DORA/USDT"] - }, - "entry_pricing": { - "price_side": "same", - "use_order_book": true, - "order_book_top": 1, - "price_last_balance": 0.0, - "check_depth_of_market": { - "enabled": false, - "bids_to_ask_delta": 1 - } - }, - "exit_pricing": { - "price_side": "other", - "use_order_book": true, - "order_book_top": 1 - }, - "pairlists": [ - { - "method": "StaticPairList" - } - ], - "freqai": { - "enabled": true, - "data_kitchen": { - "fillna": "ffill" - }, - "freqaimodel": "LightGBMRegressorMultiTarget", - "purge_old_models": 2, - "train_period_days": 12, - "backtest_period_days": 2, - "live_retrain_hours": 2, - "outlier_detection": { - "method": "IsolationForest", - "contamination": 0.1 - }, - "feature_selection": { - "method": "recursive_elimination" - }, - "feature_parameters": { - "include_timeframes": [ - "3m", - "15m", - "1h" - ], - "include_corr_pairlist": [ - "BTC/USDT", - "SOL/USDT" - ], - "outlier_protection_percentage": 0.1, - "label_period_candles": 100, - "include_shifted_candles": 3, - "DI_threshold": 0.5, - "weight_factor": 0.9, - "principal_component_analysis": false, - "use_SVM_to_remove_outliers": true, - "indicator_periods_candles": [ - 10, - 20, - 50 - ], - "plot_feature_importances": 10 - }, - "data_split_parameters": { - "test_size": 0.15, - "shuffle": false - }, - "model_training_parameters": { - "n_estimators": 400, - "learning_rate": 0.01, - "num_leaves": 40, - "max_depth": 10, - "min_data_in_leaf": 20, - "feature_fraction": 0.8, - "bagging_fraction": 0.8, - "bagging_freq": 5, - "verbose": -1 - } - }, - "api_server": { - "enabled": true, - "listen_ip_address": "0.0.0.0", - "listen_port": 8080, - "verbosity": "error", - "enable_openapi": false, - "jwt_secret_key": "6a599ab046dbb419014807dffd7b8823bfa7e5df56b17d545485deb87331b4ca", - "ws_token": "6O5pBDiRigiZrmIsofaE2rkKMJtf9h8zVQ", - "CORS_origins": [], - "username": "freqAdmin", - "password": "admin" - }, - "bot_name": "freqtrade", - "initial_state": "running", - "force_entry_enable": false, - "internals": { - "process_throttle_secs": 5, - "heartbeat_interval": 20, - "loglevel": "DEBUG" - } -} \ No newline at end of file diff --git a/config_examples/freqaiprimer_XGBoostRegressorMultiTarget.json b/config_examples/freqaiprimer_XGBoostRegressorMultiTarget.json deleted file mode 100644 index 5faabae7..00000000 --- a/config_examples/freqaiprimer_XGBoostRegressorMultiTarget.json +++ /dev/null @@ -1,146 +0,0 @@ -{ - "$schema": "https://schema.freqtrade.io/schema.json", - "redis": { - "url": "redis://192.168.1.215:6379/0" - }, - "trading_mode": "spot", - "margin_mode": "isolated", - "max_open_trades": 5, - "stake_currency": "USDT", - "stake_amount": 350, - "tradable_balance_ratio": 1, - "process_only_new_candles": true, - "fiat_display_currency": "USD", - "dry_run": true, - "enable_strategy_log": true, - "timeframe": "3m", - "additional_timeframes": ["4h"], - "dry_run_wallet": 2000, - "cancel_open_orders_on_exit": true, - "stoploss": -0.14, - "max_entry_position_adjustment": 3, - "position_adjustment_enable": true, - "amount_reserve_percent": 0.05, - "unfilledtimeout": { - "entry": 5, - "exit": 15 - }, - "dry_run": false, - "startup_candle_count": 200, - "exchange": { - "name": "okx", - "key": "314e75b0-1113-47e8-ad01-1fca7e3c0496", - "secret": "9C8B170390F46EA6FB87592AD46F5A34", - "password": "nekFoylf:Om0", - "enable_ws": false, - "ccxt_config": { - "enableRateLimit": true, - "rateLimit": 500, - "options": { - "defaultType": "spot" - } - }, - "ccxt_async_config": { - "enableRateLimit": true, - "rateLimit": 3000, - "timeout": 20000 - }, - "pair_whitelist": ["BTC/USDT", "TON/USDT", "DOT/USDT", "XRP/USDT", "OKB/USDT", "SOL/USDT", "DOGE/USDT", "WCT/USDT", "TRUMP/USDT", "SUI/USDT", "PEPE/USDT", "TRB/USDT", "MASK/USDT", "UNI/USDT", "KAITO/USDT", "XAUT/USDT"], - "pair_blacklist": ["DORA/USDT"] - }, - "entry_pricing": { - "price_side": "same", - "use_order_book": true, - "order_book_top": 1, - "price_last_balance": 0.0, - "check_depth_of_market": { - "enabled": false, - "bids_to_ask_delta": 1 - } - }, - "exit_pricing": { - "price_side": "other", - "use_order_book": true, - "order_book_top": 1 - }, - "pairlists": [ - { - "method": "StaticPairList" - } - ], - "freqai": { - "enabled": true, - "data_kitchen": { - "fillna": "ffill" - }, - "freqaimodel": "XGBoostRegressorMultiTarget", - "purge_old_models": 2, - "train_period_days": 12, - "backtest_period_days": 2, - "live_retrain_hours": 2, - "outlier_detection": { - "method": "IsolationForest", - "contamination": 0.1 - }, - "feature_selection": { - "method": "recursive_elimination" - }, - "feature_parameters": { - "include_timeframes": [ - "3m", - "15m", - "1h" - ], - "include_corr_pairlist": [ - "BTC/USDT", - "SOL/USDT" - ], - "outlier_protection_percentage": 0.1, - "label_period_candles": 100, - "include_shifted_candles": 3, - "DI_threshold": 0.5, - "weight_factor": 0.9, - "principal_component_analysis": false, - "use_SVM_to_remove_outliers": true, - "indicator_periods_candles": [ - 10, - 20, - 50 - ], - "plot_feature_importances": 10 - }, - "data_split_parameters": { - "test_size": 0.15, - "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 - } - }, - "api_server": { - "enabled": true, - "listen_ip_address": "0.0.0.0", - "listen_port": 8080, - "verbosity": "error", - "enable_openapi": false, - "jwt_secret_key": "6a599ab046dbb419014807dffd7b8823bfa7e5df56b17d545485deb87331b4ca", - "ws_token": "6O5pBDiRigiZrmIsofaE2rkKMJtf9h8zVQ", - "CORS_origins": [], - "username": "freqAdmin", - "password": "admin" - }, - "bot_name": "freqtrade", - "initial_state": "running", - "force_entry_enable": false, - "internals": { - "process_throttle_secs": 5, - "heartbeat_interval": 20, - "loglevel": "DEBUG" - } -} \ No newline at end of file diff --git a/config_examples/live.json b/config_examples/live.json index 3f30178a..6d83965d 100644 --- a/config_examples/live.json +++ b/config_examples/live.json @@ -19,25 +19,21 @@ "timeout": 20000 }, "pair_whitelist": [ - "ADA/USDT", "AVAX/USDT", + "BCH/USDT", "BNB/USDT", "BTC/USDT", "DOGE/USDT", - "DOT/USDT", "ETH/USDT", - "LINK/USDT", + "FIL/USDT", + "IP/USDT", "LTC/USDT", "PEPE/USDT", "SOL/USDT", "SUI/USDT", - "TON/USDT", "TRB/USDT", "TRUMP/USDT", - "TRX/USDT", - "UNI/USDT", - "WLD/USDT", - "XLM/USDT", + "XAUT/USDT", "XRP/USDT" ], "pair_blacklist": [