Enable or disable Dollar Cost Averaging.
Setting to true or a number value enables DCA.
The bot will use the strategies defined in dca_config.
In the example below, -2.5 is -2.5%, so the coin will not be sent into the DCA Log until the profit margin falls to -2.5% or below.
Conversely 0.86 means the coin will not be sent to the DCA log until the profit rises to 0.86% or more.
The coin will NOT go back into the pairs log if it has been DCA'd 1 or more times regardless of the profit margin.
This property has limited support for dynamic logic.
You can only make use of the dynamic data of the following places
Using open position information can lead to errors as the position moves in and out of DCA.
# Option 1 - Always enable DCA
DEFAULT_DCA_enabled = true
# Option 2 - Enable DCA if P% drops below -2.5
DEFAULT_DCA_enabled = -2.5
# Option 3 - Enable DCA if P% goes above 0.86%
DEFAULT_DCA_enabled = 0.86