CCXT

p2b

p2b cryptocurrency exchange — CCXT unified API: methods, parameters and endpoints.

p2b

Kind: global class
Extends: Exchange

fetchMarkets

retrieves data on all markets for bigone

Kind: instance method of p2b
Returns: Array<object> - an array of objects representing market data

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#markets

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
p2b.fetchMarkets (params?)

fetchTickers

fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market

Kind: instance method of p2b
Returns: object - a dictionary of ticker structures

See: https://futures-docs.poloniex.com/#get-real-time-ticker-of-all-symbols

ParamTypeRequiredDescription
symbolsArray<string>, undefinedYesunified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
paramsobjectNoextra parameters specific to the exchange API endpoint
p2b.fetchTickers (symbols, params?)

fetchTicker

fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market

Kind: instance method of p2b
Returns: object - a ticker structure

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#ticker

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the ticker for
paramsobjectNoextra parameters specific to the exchange API endpoint
p2b.fetchTicker (symbol, params?)

fetchOrderBook

fetches information on open orders with bid (buy) and ask (sell) prices, volumes and other data

Kind: instance method of p2b
Returns: object - A dictionary of order book structures indexed by market symbols

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#depth-result

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch the order book for
limitintNothe maximum amount of order book entries to return
paramsobjectNoextra parameters specific to the exchange API endpoint EXCHANGE SPECIFIC PARAMETERS
params.intervalstringNo0 (default), 0.00000001, 0.0000001, 0.000001, 0.00001, 0.0001, 0.001, 0.01, 0.1, 1
p2b.fetchOrderBook (symbol, limit?, params?)

fetchTrades

get the list of most recent trades for a particular symbol

Kind: instance method of p2b
Returns: Array<Trade> - a list of trade structures

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#history

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch trades for
sinceintNotimestamp in ms of the earliest trade to fetch
limitintNo1-100, default=50
paramsobjectNoextra parameters specific to the exchange API endpoint
params.lastIdintYesorder id
p2b.fetchTrades (symbol, since?, limit?, params?)

fetchOHLCV

fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market

Kind: instance method of p2b
Returns: Array<Array<int>> - A list of candles ordered as timestamp, open, high, low, close, volume

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#kline

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to fetch OHLCV data for
timeframestringYes1m, 1h, or 1d
sinceintNotimestamp in ms of the earliest candle to fetch
limitintNo1-500, default=50
paramsobjectNoextra parameters specific to the exchange API endpoint
params.offsetintNodefault=0, with this value the last candles are returned
p2b.fetchOHLCV (symbol, timeframe, since?, limit?, params?)

fetchBalance

query for balance and get the amount of funds available for trading or funds locked in orders

Kind: instance method of p2b
Returns: object - a balance structure

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#all-balances

ParamTypeRequiredDescription
paramsobjectNoextra parameters specific to the exchange API endpoint
p2b.fetchBalance (params?)

createOrder

create a trade order

Kind: instance method of p2b
Returns: object - an order structure

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#create-order

ParamTypeRequiredDescription
symbolstringYesunified symbol of the market to create an order in
typestringYesmust be 'limit'
sidestringYes'buy' or 'sell'
amountfloatYeshow much of currency you want to trade in units of base currency
pricefloatYesthe price at which the order is to be fulfilled, in units of the quote currency
paramsobjectNoextra parameters specific to the exchange API endpoint
p2b.createOrder (symbol, type, side, amount, price, params?)

cancelOrder

cancels an open order

Kind: instance method of p2b
Returns: object - An order structure

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#cancel-order

ParamTypeRequiredDescription
idstringYesorder id
symbolstringYesunified symbol of the market the order was made in
paramsobjectNoextra parameters specific to the exchange API endpoint
p2b.cancelOrder (id, symbol, params?)

fetchOpenOrders

fetch all unfilled currently open orders

Kind: instance method of p2b
Returns: Array<Order> - a list of order structures

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#open-orders

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for
limitintNothe maximum number of order structures to retrieve
paramsobjectNoextra parameters specific to the exchange API endpoint EXCHANGE SPECIFIC PARAMETERS
params.offsetintNo0-10000, default=0
p2b.fetchOpenOrders (symbol, since?, limit?, params?)

fetchOrderTrades

fetch all the trades made from a single order

Kind: instance method of p2b
Returns: Array<object> - a list of trade structures

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#deals-by-order-id

ParamTypeRequiredDescription
idstringYesorder id
symbolstringYesunified market symbol
sinceintNothe earliest time in ms to fetch trades for
limitintNo1-100, default=50
paramsobjectNoextra parameters specific to the exchange API endpoint EXCHANGE SPECIFIC PARAMETERS
params.offsetintNo0-10000, default=0
p2b.fetchOrderTrades (id, symbol, since?, limit?, params?)

fetchMyTrades

fetch all trades made by the user, only the transaction records in the past 3 month can be queried, the time between since and params["until"] cannot be longer than 24 hours

Kind: instance method of p2b
Returns: Array<Trade> - a list of trade structures

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#deals-history-by-market

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for, default = params["until"] - 86400000
limitintNo1-100, default=50
paramsobjectNoextra parameters specific to the exchange API endpoint
params.untilintNothe latest time in ms to fetch orders for, default = current timestamp or since + 86400000 EXCHANGE SPECIFIC PARAMETERS
params.offsetintNo0-10000, default=0
p2b.fetchMyTrades (symbol, since?, limit?, params?)

fetchClosedOrders

fetches information on multiple closed orders made by the user, the time between since and params["untnil"] cannot be longer than 24 hours

Kind: instance method of p2b
Returns: Array<Order> - a list of order structures

See: https://github.com/P2B-team/p2b-api-docs/blob/master/api-doc.md#orders-history-by-market

ParamTypeRequiredDescription
symbolstringYesunified market symbol of the market orders were made in
sinceintNothe earliest time in ms to fetch orders for, default = params["until"] - 86400000
limitintNo1-100, default=50
paramsobjectNoextra parameters specific to the exchange API endpoint
params.untilintNothe latest time in ms to fetch orders for, default = current timestamp or since + 86400000 EXCHANGE SPECIFIC PARAMETERS
params.offsetintNo0-10000, default=0
p2b.fetchClosedOrders (symbol, since?, limit?, params?)

On this page