💻ByBit Functions

Create an Exchange Object

Before you can interact with PENDAX functions, you must first create an Exchange object. This exchange object will allow you to interact with PENDAX. You can create one or multiple, and reference them together or individually throughout your code.

Example Exchange Object Creation:

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

let bybit_exchange = createExchange({
      exchange: "bybit",
      authenticate: "true",
      key: "myKeys",
      secret: "mySecret",
      label: "bybit",
      testnet: "false"
});

Unauthenticated Exchange Objects

If you are just calling public API endpoints on the exchange and you don't need any authentication to protected endpoints, simply create your exchange object with authenticate set to false and omit the key, secret, passphrase.

Authenticated Exchange objects can call private and public endpoints, however, unauthenticated exchange objects may only call public endpoints.

Example Unauthenticated Exchange Object:

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

let myBybitAccount= createExchange({
      exchange: "bybit",
      authenticate: "false",
      label: "bybit",
      testnet: "false"
});

These documents are under development and will be updated shortly with all finalized functions

All Available ByBit Functions

Documentation for each category of functions is broken down into its own subpage in order to make navigating pages simpler and faster. Please use the side navigation to access these sub-pages or click on one of the links below.

Last updated