Define what priority to use when multiple PAIRS are true.
Extra Info
The bot loops/itirates through all the coins in the list 1 by 1.
So, by sorting you make sure that once a new iteration starts it goes through the coins in the order you want.
- DEFAULT
Random loop over coins
- VOLUMEASC / VOLUMEDESC
Sorted by coin volume
- SPREADASC / SPREADDESC
Sorted by coin spread
- PROFITASC / PROFITDESC
DCA
Sorted by coins profit (P%)
- BOUGHTTIMESASC / BOUGHTTIMESDESC
DCA
Sorted by DCA bought times
- STRATASC-(X)/STRATDESC-(X)
Sorted by the (BSV) of strategy with the defined letter (X)
or list of comma separated coin names.
e.g. LTC, ADA, XRP, NANO, etc.
- NOTE: You can only use 1 of the sorting mechanism at a time.
PAIRSDCA
- If multiple pairs are true, first buy ETH, then BTC then sorted by SPREAD the one with lowest spread first.
trading_pairs_buy_priority = ETH, BTC, SPREADASC
- If multiple pairs are true, buy PAIR with highest volume first.
trading_pairs_buy_priority = VOLUMEDESC
- If multiple pairs are true, buy PAIR with lowest value for Strategy with letter B
// Setup your strategy correctly
DEFAULT_B_buy_strategy = CHANGEPERCENTAGE
trading_pairs_buy_priority = STRATASC-B
- If multiple pairs are true, first buy ETH, then BTC then sorted by SPREAD the one with lowest spread first.
DCA_trading_pairs_buy_priority = ETH, BTC, SPREADASC
- If multiple pairs are true, buy PAIR with highest volume first.
DCA_trading_pairs_buy_priority = VOLUMEDESC
- If multiple pairs are true, buy PAIR with lowest value for Strategy with letter B
// Setup your strategy correctly
DEFAULT_DCA_B_buy_strategy = CHANGEPERCENTAGE
DCA_trading_pairs_buy_priority = STRATASC-B
1.You can only use 1 of the sorting mechanism at a time.