CopyTrade (Futures)

Get Trader Open Order

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-trader-open-order

Function name:

getTraderOpenOrderCopyTrade(options)

Usage:

import { createExchange } from "./exchanges/exchange.js";

  let myBitgetAccount = createExchange({
      exchange: "bitget",
      authenticate: "true",
      key: "myKeys",
      secret: "mySecret",
      passphrase: "myPassphrase",
      label: "bitget",
      marginType: "usdt"
});

async function getTraderOpenOrderCopyTrade(exchange, options) {
    try {
        let result = await exchange.getTraderOpenOrderCopyTrade(options);
        console.log(result);
    } catch (error) {
        console.log(error.message);
    }
}

const result = await getTraderOpenOrderCopyTrade(myBitgetAccount, 
    {
        symbol: "BTCUSDT_UMCBL",
        productType: "umcbl",
        pageSize: "20",
        pageNo: "1"
    });

Get Follower Open Orders

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-follower-open-orders

Function name:

Usage:

Get Follower History Orders

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-follower-history-orders

Function name:

Usage:

Trader Close Position

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#trader-close-position

Function name:

Usage:

Trader Modify TPSL

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#trader-modify-tpsl

Function name:

Usage:

Get Traders History Orders

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-traders-history-orders

Function name:

Usage:

Get Trader Profit Summary

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-trader-profit-summary

Function name:

Usage:

Get Trader History Profit Summary (currency)

Function name:

Usage:

Get Trader History Profit Summary (currency/date)

Function name:

Usage:

Get Trader History Profit Detail

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-trader-history-profit-detail

Function name:

Usage:

Get Trader Profits Details

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-trader-profits-details

Function name:

Usage:

Get CopyTrade Symbols

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#get-copytrade-symbols

Function name:

Usage:

Trader Change CopyTrade Symbol

Please refer to the official Bitget API Docs for the required parameters.

https://bitgetlimited.github.io/apidoc/en/mix/#trader-change-copytrade-symbol

Function name:

Usage:

Last updated