Stop Market Order
This section documents the stop_market_order action
Example Request
This example will open a long position
on BTC
at a price of 100,000
using a size of $100 USD
{
"action": "stop_market_order",
"coin": "BTC",
"is_buy": true,
"price": 100000,
"size_usd": 100,
"reduce_only": false,
"bot_id": BOT_ID,
"api_key": "API_KEY"
}
This example will close a long position
on BTC
at a price of 105,000
using 100% of current position size
{
"action": "stop_market_order",
"coin": "BTC",
"is_buy": false,
"price": 105000,
"size_pct": 1,
"reduce_only": true,
"bot_id": BOT_ID,
"api_key": "API_KEY"
}
coin*
This required parameter indicates which coin to use for the action.
"coin": "BTC"
is_buy*
This required parameter indicates the direction of the trade.
True
can open a Long position or close a Short positionFalse
can open a Short position or close a Long position
"is_buy": true
reduce_only*
This required parameter indicates whether the order is allowed to only reduce position size or not.
A value of
true
will only allow closing/reducing positionA value of
false
will allow both opening and closing position
"reduce_ony": true
price*
This required parameter indicates the price to trigger the order
A value of
105000
places a stop market order at the price105,000
"price": 105000
Sizes*
size
This parameter indicates a size in contracts.
A value of
0.005
is equal to0.005 BTC
"size": 0.005
size_usd
This parameter indicates a size in USD.
A value of
100
is equal to$100 USD
"size_usd": 100
size_pct
This parameter indicates either a size in percentage of available balance when opening an order, or a size in percentage of current position when closing an order.
A value of
0.1
is equal to10%
"size_pct": 0.1
slippage_pct
This parameter indicates the Max. % slippage allowed for the trade to execute.
A value of
0.05
is equal to5%
"slippage_pct": 0.05
delay
This parameter indicates a number of seconds to wait before triggering the action
A value of
5
is equal to a5 seconds
delayMax. allowed delay is
10 seconds
"delay": 5
Last updated
Was this helpful?