DCAv2/configs/trader_config.json.example

27 lines
2.5 KiB
Plaintext
Executable File

{
"pair": "BCC/USDT", #Symbol of the market to trade.
"order_size": 15, #Order size of the trader.
"tp_level": 1.02, #Take profit percentage. (check strategy documentation for more details)
"no_of_safety_orders": 23, #Amount of safety orders. (check strategy documentation for more details)
"safety_order_deviance": 2, #Deviance of safety orders. (check strategy documentation for more details)
"safety_order_scale": 0.0105, #Size multiplier of every subsequent safety order. (check strategy documentation for more details)
"write_logs": false, #Write logs to file.
"calculate_fees": true, #Take into account the fees when calculating profits.
"check_slippage": true, #Slippage checks before sending orders.
"slippage_default_threshold": .03 #Default threshold.
"cleanup": true, #Execute the cleanup routine every trader (re)start.
"telegram": true, #Send Telegram notifications.
"tp_mode": 3, #Take profit mode. (check strategy documentation for more details)
"tp_table": [], #Profit percentage table. (check strategy documentation for more details)
"is_short": true, #Signals the trader mode (true if short, false if long)
"autoswitch": true, #If the trader is operating in short mode, switches to long mode if certain conditions are met. (check strategy documentation for more details)
"attempt_restart": true, #Attempts to restart the trader if there is an error.
"check_old_long_price": true, #Compares the current price with the old_long price. (check strategy documentation for more details)
"dynamic_so_deviance": true, #Uses a non-linear safety order deviance algorithm. (check strategy documentation for more details)
"dsd_range": 1, #Range of the dynamic deviance algorithm. (check strategy documentation for more details)
"bias": -0.5, #Bias of the dynamic deviance algorithm. (check strategy documentation for more details)
"boosted_deals_range": 4, #Amount of deals within a timespan to trigger the boost algorithm.
"boosted_time_range": 3600, #Timespan in seconds to count closed trades.
"boosted_amount": .01 #Amount of percentage to add to the profit target if boosted.
}