Back to Ccxt

Binance Margin Stop Order

wiki/examples/js/binance-margin-stop-order.md

4.5.601022 B
Original Source
javascript
// @NO_AUTO_TRANSPILE
import ccxt from '../../js/ccxt.js';
console.log('CCXT Version:', ccxt.version);
async function main() {
    const exchange = new ccxt.binance({
        'apiKey': 'YOUR_API_KEY',
        'secret': 'YOUR_API_SECRET',
        'options': {
            'defaultType': 'margin',
        },
    });
    const markets = await exchange.loadMarkets();
    exchange.verbose = true; // uncomment for debugging purposes if necessary
    const symbol = 'BTC/USDT';
    const type = 'STOP_LOSS_LIMIT';
    const side = 'buy';
    // @ts-expect-error
    const amount = YOUR_AMOUNT_HERE;
    // @ts-expect-error
    const price = YOUR_PRICE_HERE;
    const params = {
        // @ts-expect-error
        'stopPrice': YOUR_STOP_PRICE_HERE,
        'timeInForce': 'GTC',
    };
    try {
        const order = await exchange.createOrder(symbol, type, side, amount, price, params);
        console.log(order);
    }
    catch (e) {
        console.log(e.constructor.name, e.message);
    }
}
main();