Skip to content

Idempotency

The property that re-sending the same intended order after a timeout cannot create a duplicate position. Achieved by generating a client order id and logging intent before sending, then checking the broker for that id on any retry so you adopt an existing order rather than opening a second one.

First used in Lesson 3.2 · Execution operations — the lesson that makes this term real.