← cd ../strategies
liverisk: medium

grid

A ladder of limit orders across a price range — placed as one signed action.

commands

deliverator grid ETH buy --from 3400 --to 3000 --levels 8 --notional 1600

deliverator cancel --all --coin ETH # tear the ladder down

A grid lays a ladder of evenly-spaced limit orders across a price range and submits the whole thing in one signed action (one nonce). Classic mean-reversion / accumulation: buy lower as price falls, sell higher as it rises.

Why it’s a Deliverator primitive

Placing a grid by hand is a precision minefield — every level must be rounded to the coin’s tick and lot size, and a single bad value rejects the batch. Deliverator rounds each level, validates the ladder atomically, and attaches the builder fee per order. One command in, one envelope out.

Pair it with the loop

A grid is a great execution layer under a strategy: let the loop decide the range and inventory target from ctx (funding, open interest, premium) and candles, then express it as a grid. Tear it down with a single cancel --all --coin when the regime changes.

deliverator grid ETH buy --from 3400 --to 3000 --levels 8 --notional 1600 --json
HUMAN MACHINE