def round_quantity(self, quantity: str, rounding=ROUND_DOWN) -> Decimal: return Decimal(quantity).quantize(self.base_min_size, rounding=rounding)