pub fn derive_limit_from_trigger(
trigger_price: Decimal,
is_buy: bool,
slippage_bps: u32,
) -> DecimalExpand description
Derives a limit price from a trigger price with a configurable
slippage buffer in basis points, widening the limit so BUY satisfies
limit_px >= trigger_px and SELL satisfies limit_px <= trigger_px.