Order entry
Place limit order
from decimal import Decimal
from architect_py import OrderDir
order = await client.place_limit_order(
symbol="BTC Crypto/USD",
execution_venue="COINBASE",
account=None, # required for some venues
dir=OrderDir.BUY,
quantity=Decimal(1),
limit_price=Decimal(10000),
post_only=True, # optional
)
print(order.status)Order request fields
Field
Required
Description
Order types
Order type
Description
Required fields
Time-in-force instructions
TIF instruction
Description
Place batch order
Cancel order
Cancel all orders
Batch cancel orders
Reconcile out orders
Orderflow channel
Stream orderflow
Get open orders
Get historical orders
Get fills
Fill IDs
Last updated