2022-05-03 08:14:17 +00:00
|
|
|
{
|
|
|
|
"max_open_trades": 1,
|
|
|
|
"stake_currency": "USDT",
|
2022-05-26 19:07:50 +00:00
|
|
|
"stake_amount": 900,
|
2022-05-03 08:14:17 +00:00
|
|
|
"tradable_balance_ratio": 1,
|
|
|
|
"fiat_display_currency": "USD",
|
|
|
|
"dry_run": true,
|
|
|
|
"timeframe": "5m",
|
2022-05-29 12:45:46 +00:00
|
|
|
"dry_run_wallet": 4000,
|
2022-05-31 16:42:27 +00:00
|
|
|
"dataformat_ohlcv": "json",
|
2022-05-03 08:14:17 +00:00
|
|
|
"cancel_open_orders_on_exit": true,
|
|
|
|
"unfilledtimeout": {
|
|
|
|
"entry": 10,
|
|
|
|
"exit": 30
|
2022-05-04 15:42:34 +00:00
|
|
|
},
|
2022-05-03 08:14:17 +00:00
|
|
|
"exchange": {
|
2022-05-09 13:25:00 +00:00
|
|
|
"name": "binance",
|
2022-05-03 08:14:17 +00:00
|
|
|
"key": "",
|
|
|
|
"secret": "",
|
2022-05-04 15:42:34 +00:00
|
|
|
"ccxt_config": {
|
|
|
|
"enableRateLimit": true
|
|
|
|
},
|
2022-05-03 08:14:17 +00:00
|
|
|
"ccxt_async_config": {
|
|
|
|
"enableRateLimit": true,
|
|
|
|
"rateLimit": 200
|
|
|
|
},
|
|
|
|
"pair_whitelist": [
|
2022-05-30 00:12:31 +00:00
|
|
|
"BTC/USDT",
|
|
|
|
"ETH/USDT"
|
2022-05-03 08:14:17 +00:00
|
|
|
],
|
2022-05-04 15:42:34 +00:00
|
|
|
"pair_blacklist": []
|
2022-05-03 08:14:17 +00:00
|
|
|
},
|
|
|
|
"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": {
|
2022-05-30 00:12:31 +00:00
|
|
|
"price_side": "other",
|
2022-05-03 08:14:17 +00:00
|
|
|
"use_order_book": true,
|
|
|
|
"order_book_top": 1
|
|
|
|
},
|
|
|
|
"pairlists": [
|
2022-05-04 15:42:34 +00:00
|
|
|
{
|
|
|
|
"method": "StaticPairList"
|
|
|
|
}
|
2022-05-03 08:14:17 +00:00
|
|
|
],
|
|
|
|
"freqai": {
|
2022-05-31 16:42:27 +00:00
|
|
|
"startup_candles": 10000,
|
2022-07-10 10:34:09 +00:00
|
|
|
|
|
|
|
"train_period_days": 30,
|
|
|
|
"backtest_period_days": 7,
|
|
|
|
"live_retrain_hours": 1,
|
2022-05-17 16:15:03 +00:00
|
|
|
"identifier": "example",
|
2022-05-25 12:40:32 +00:00
|
|
|
"live_trained_timestamp": 0,
|
2022-05-04 15:42:34 +00:00
|
|
|
"feature_parameters": {
|
2022-07-10 10:34:09 +00:00
|
|
|
"include_timeframes": [
|
|
|
|
"5m",
|
|
|
|
"15m",
|
|
|
|
"4h"
|
|
|
|
],
|
|
|
|
"include_corr_pairlist": [
|
|
|
|
"BTC/USDT",
|
|
|
|
"ETH/USDT"
|
|
|
|
],
|
|
|
|
"label_period_candles": 500,
|
|
|
|
"include_shifted_candles": 1,
|
2022-05-26 19:07:50 +00:00
|
|
|
"DI_threshold": 0,
|
|
|
|
"weight_factor": 0.9,
|
2022-05-04 15:42:34 +00:00
|
|
|
"principal_component_analysis": false,
|
2022-05-29 12:45:46 +00:00
|
|
|
"use_SVM_to_remove_outliers": false,
|
2022-07-10 10:34:09 +00:00
|
|
|
"stratify_training_data": 0,
|
|
|
|
"indicator_max_period_candles": 50,
|
|
|
|
"indicator_periods_candles": [10, 20]
|
2022-05-04 15:42:34 +00:00
|
|
|
},
|
|
|
|
"data_split_parameters": {
|
2022-05-26 19:07:50 +00:00
|
|
|
"test_size": 0.33,
|
2022-05-04 15:42:34 +00:00
|
|
|
"random_state": 1
|
2022-05-03 08:14:17 +00:00
|
|
|
},
|
2022-05-04 15:42:34 +00:00
|
|
|
"model_training_parameters": {
|
2022-05-22 15:51:49 +00:00
|
|
|
"n_estimators": 1000,
|
2022-05-04 15:42:34 +00:00
|
|
|
"task_type": "CPU"
|
|
|
|
}
|
|
|
|
},
|
2022-05-03 08:14:17 +00:00
|
|
|
"bot_name": "",
|
|
|
|
"initial_state": "running",
|
|
|
|
"forcebuy_enable": false,
|
|
|
|
"internals": {
|
|
|
|
"process_throttle_secs": 5
|
|
|
|
}
|
|
|
|
}
|