Define which coins you want to group in order for them to use the same logic, and instead of coin specific make a property "group" specific.
List all pairs you want separated by comma
You can put the group name anywhere in the config where you can normally put DEFAULT_
See the examples.
GROUP1_pairs = ETH, ADA
GROUP2_pairs = LTC
# This initial cost is the default
DEFAULT_initial_cost = 10
# This initial cost is for coins in group 1
GROUP1_initial_cost = 30
# This initial cost is for coins in group 2
GROUP2_initial_cost = 14
DCA_GROUP1_pairs = ETH, ADA
DCA_GROUP2_pairs = LTC
# This buy percentage is the default.
DEFAULT_DCA_buy_percentage = 30
# This buy percentage is for coins in group 1
GROUP1_DCA_buy_percentage = 30
# This buy percentage is for coins in group 2
GROUP2_DCA_buy_percentage = 65