102 lines
2.3 KiB
JSON
102 lines
2.3 KiB
JSON
{
|
|
"strategy": "freqaiprimer",
|
|
"max_open_trades": 3,
|
|
"stake_currency": "USDT",
|
|
"stake_amount": 25,
|
|
"tradable_balance_ratio": 0.99,
|
|
"fiat_display_currency": "USD",
|
|
"dry_run": true,
|
|
"cancel_open_orders_on_exit": false,
|
|
"trading_mode": "spot",
|
|
"exchange": {
|
|
"name": "binance",
|
|
"key": "",
|
|
"secret": "",
|
|
"ccxt_config": {"enableRateLimit": true},
|
|
"ccxt_async_config": {"enableRateLimit": true},
|
|
"pair_blacklist": [
|
|
"BNB/.*"
|
|
]
|
|
},
|
|
"pairlists": [
|
|
{
|
|
"method": "StaticPairList",
|
|
"pairs": ["SOL/USDT", "WCT/USDT"]
|
|
}
|
|
],
|
|
"freqai": {
|
|
"enabled": true,
|
|
"identifier": "test_mixed_models",
|
|
"purge_old_models": 2,
|
|
"train_period_days": 15,
|
|
"backtest_period_days": 7,
|
|
"live_retrain_candles": 100,
|
|
"fit_live_predictions_candles": 100,
|
|
"feature_parameters": {
|
|
"include_timeframes": ["3m", "15m", "1h"],
|
|
"label_period_candles": 12,
|
|
"include_shifted_candles": 3,
|
|
"indicator_periods_candles": [10, 20],
|
|
"DI_threshold": 30,
|
|
"weight_factor": 0.9
|
|
},
|
|
"data_split_parameters": {
|
|
"test_size": 0.2,
|
|
"shuffle": false
|
|
},
|
|
"model_training_parameters": {
|
|
"price_value_divergence": {
|
|
"model": "LightGBMRegressor",
|
|
"model_params": {
|
|
"n_estimators": 200,
|
|
"learning_rate": 0.05,
|
|
"num_leaves": 31,
|
|
"verbose": -1
|
|
}
|
|
},
|
|
"optimal_first_length": {
|
|
"model": "LightGBMClassifier",
|
|
"model_params": {
|
|
"n_estimators": 150,
|
|
"learning_rate": 0.1,
|
|
"num_leaves": 15,
|
|
"max_depth": 8,
|
|
"min_child_samples": 10,
|
|
"class_weight": "balanced",
|
|
"verbose": -1
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"timeframe": "3m",
|
|
"dry_run_wallet": 1000,
|
|
"unfilledtimeout": {
|
|
"entry": 10,
|
|
"exit": 30
|
|
},
|
|
"entry_pricing": {
|
|
"price_side": "same",
|
|
"use_order_book": true,
|
|
"order_book_top": 1,
|
|
"check_depth_of_market": {
|
|
"enabled": false,
|
|
"bids_to_ask_delta": 1
|
|
}
|
|
},
|
|
"exit_pricing": {
|
|
"price_side": "same",
|
|
"use_order_book": true,
|
|
"order_book_top": 1
|
|
},
|
|
"order_types": {
|
|
"entry": "limit",
|
|
"exit": "limit",
|
|
"emergency_exit": "market",
|
|
"force_exit": "market",
|
|
"stoploss": "market",
|
|
"stoploss_on_exchange": false
|
|
},
|
|
"edge": {
|
|
"enabled": false
|
|
}
|
|
} |