Skip to main content
Version: Streamsheets 3.0

BINANCE.FUTURE.ORDER.NEW

Premium

Place a new order.

Syntax

=BINANCE.FUTURE.ORDER.NEW(Symbol, Side, Type, [Quantity], [ParametersJSON], [ResponseTarget])

Arguments

NameTypeDescription
SymbolStringSymbol of the digital asset, e.g. BTCUSDT. Please refer to the Binance Docs for a list of supported assets.
SideBinanceOrderSideCreate either a selling or buying order.

Options:
"BUY": Used to create a buying order.
"SELL": Used to create a selling order.
TypeBinanceFutureOrderTypeThe type of order to create.

Options:
"LIMIT": Used to create an order of type limit.
"MARKET": Used to create an order of type market.
"STOP": Used to create an order of type stop.
"STOP_MARKET": Used to create an order of type stop_market.
"TAKE_PROFIT": Used to create an order of type take_profit.
"TAKE_PROFIT_MARKET": Used to create an order of type take_profit_market.
"TRAILING_STOP_MARKET": Used to create an order of type trailing_stop_market.
Quantity (optional)NumberThe order quantity.
ParametersJSON (optional)JSONJSON which defines additional parameters as key value pairs. See binance api for supported parameters and their values.
ResponseTarget (optional)TargetSpecify inbox, outbox, cell or cell-range to write any response to.

Return

TypeDescription
JSONResponse if successful.

Examples

FormulaResultComment
=BINANCE.FUTURE.ORDER.NEW("BTCUSDT","BUY","TRAILING_STOP_MARKET")
JSONPlaces a new buying order.