curl --request PUT \
--url https://api.perpo.trade/v1/algo/order \
--header 'Content-Type: application/json' \
--header 'perpo-account-id: <perpo-account-id>' \
--header 'perpo-key: <perpo-key>' \
--header 'perpo-signature: <perpo-signature>' \
--header 'perpo-timestamp: <perpo-timestamp>' \
--data '
{
"order_id": "<string>",
"price": 123,
"quantity": 123,
"trigger_price": 123,
"trigger_price_type": "<string>",
"child_orders": [
{
"order_id": "<string>",
"trigger_price": 123,
"price": 123,
"quantity": 123,
"is_activated": "<string>",
"trigger_price_type": "<string>",
"child_orders": [
{}
]
}
]
}
'