Open Position
This section documents the open_position action
Example Request
This example opens a long position
on BTC
using a size of 10%
of available balance, with 1% stop-loss
and 2% take-profit
.
coin*
This required parameter indicates which coin to use for the action.
is_buy*
This required parameter indicates the direction to open the trade.
True
will open a Long positionFalse
will open a Short position
Sizes
size
This parameter indicates a size in contracts to use for the trade.
A value of
0.005
is equal to0.005 BTC
(requested coin)
size_usd
This parameter indicates a size in USD to use for the trade
A value of
100
is equal to$100 USD
size_pct
This parameter indicates a size % of available balance to use when opening an order
A value of
0.1
is equal to10%
of account balance
i.e. You have $1,000 USD in your account and open a position with 10% of your balance:
A new position will be opened with a size of $100 USD
This size is not affected by leverage, the position size will be $100 for both 1x or 10x leverage
Leverage only changes the % of margin used, not the position size.
*At 10x leverage, you can send a max. size_pct of 10 (1000%), which in this example would result in a total position size of $10,000 USD
Take Profit & Stop Loss
sl_pct
This parameter indicates the % from entry to place your stop-loss.
A value of
0.01
is equal to a1% stop-loss
tp_pct
This parameter indicates the % from entry to place your take-profit.
A value of
0.01
is equal to a1% take-profit
sl
This parameter indicates a direct price to place your stop-loss.
tp
This parameter indicates a direct price to place your take-profit.
slippage_pct
This parameter indicates the Max. % slippage allowed for the trade to execute.
A value of
0.05
is equal to5%
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
Last updated
Was this helpful?