https://github.com/hummingbot/hummingbot/pull/5014 Split order_level_spread into bid_order_level_spread and ask_order_level_spread Allow configuration of multiple order_level_spread User can now set either a single number or a list of number to the order_level_spread. The spread will be cumulative added. e.g an order_level_spread 0.1, 0.2, 0.5, 0.1 Assume a bid spread of 1 The spread on top of the bid_spread/ask_spread of 2nd order will be 1 % + 0.1%, the 3rd will be 1% + 0.1% + 0.2%, the 4th will be 1%+ 0.1%+0.2%+0.5%, the 5th 1% + 0.1%+0.2%+0.5%+0.1% = 1.9%, if there are more order levels then the listed, order spread, the system will take the last setting to continue, i.e 1.9% + 0.1% since 0.1% was the last spread applied. This means if user does not need multiple different order level spread, he can set a single order level spread, 0.1 and the 1st to the 5th order level will just add +0.1% to the previous order level