Trading

Preview order

post
https://api.snaptrade.com/api/v1/accounts/{accountId}/trading/simple/preview

Previews an order using the specified account.

Execute an API Request

Path
accountIdstring (format: uuid)required

Unique identifier for the connected brokerage account. This is the UUID used to reference the account in SnapTrade.

Query
userIdstringrequired

SnapTrade User ID. This is chosen by the API partner and can be any string that is a) unique to the user, and b) immutable for the user. It is recommended to NOT use email addresses for this property because they are usually not immutable.

userSecretstringrequired

SnapTrade User Secret. This is a randomly generated string and should be stored securely. If compromised, please rotate it via the rotate user secret endpoint.

Request Body
instrumentobjectrequired
symbolstringrequired

The instrument's trading ticker symbol

typestringrequired

The instrument's type

sidestringrequired

The action describes the intent or side of a trade. This is either BUY or SELL.

typestringrequired

The type of order to place.

time_in_forcestringrequired

The Time in Force type for the order. This field indicates how long the order will remain active before it is executed or expires.

  • GTC - Good Til Canceled. The order is valid until it is executed or canceled.
  • FOK - Fill Or Kill. The order must be executed in its entirety immediately or be canceled completely.
  • IOC - Immediate Or Cancel. The order must be executed immediately. Any portion of the order that cannot be filled immediately will be canceled.
  • GTD - Good Til Date. The order is valid until the specified date.
amountstring (format: decimal)required

The amount of the base currency to buy or sell.

limit_pricestring (format: decimal)

The limit price. Required if the order type is LIMIT, STOP_LOSS_LIMIT or TAKE_PROFIT_LIMIT.

stop_pricestring (format: decimal)

The stop price. Required if the order type is STOP_LOSS_MARKET, STOP_LOSS_LIMIT, TAKE_PROFIT_MARKET or TAKE_PROFIT_LIMIT.

post_onlyboolean

Valid and required only for order type LIMIT. If true orders that would be filled immediately are rejected to avoid incurring TAKER fees.

expiration_datestring (format: date-time)

The expiration date of the order. Required if the time_in_force is GTD.

Authorization
Request
Installation
$
npm install snaptrade-typescript-sdk
1
Loading...

Response fields

object

Preview of an order.

estimated_feeobject

The estimated order fee.

1
{
2
"estimated_fee": {
3
"currency": "BTC",
4
"amount": "123.45"
5
}
6
}