wiki/exchanges/coinbaseinternational.md
<a name="coinbaseinternational" id="coinbaseinternational"></a>
Kind: global class
Extends: <code>Exchange</code>
<a name="fetchAccounts" id="fetchaccounts"></a>
fetch all the accounts associated with a profile
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a dictionary of account structures indexed by the account type
See: https://docs.cloud.coinbase.com/intx/reference/getportfolios
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchAccounts ([params])
<a name="fetchOHLCV" id="fetchohlcv"></a>
fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<Array<int>></code> - A list of candles ordered as timestamp, open, high, low, close, volume
See: https://docs.cdp.coinbase.com/intx/reference/getinstrumentcandles
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch OHLCV data for |
| timeframe | <code>string</code> | Yes | the length of time each candle represents |
| since | <code>int</code> | No | timestamp in ms of the earliest candle to fetch |
| limit | <code>int</code> | No | the maximum amount of candles to fetch, default 100 max 10000 |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.until | <code>int</code> | No | timestamp in ms of the latest candle to fetch |
| params.paginate | <code>boolean</code> | No | default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the available parameters |
coinbaseinternational.fetchOHLCV (symbol, timeframe[, since, limit, params])
<a name="fetchFundingRateHistory" id="fetchfundingratehistory"></a>
fetches historical funding rate prices
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - a list of funding rate structures
See: https://docs.cloud.coinbase.com/intx/reference/getinstrumentfunding
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch the funding rate history for |
| since | <code>int</code> | No | timestamp in ms of the earliest funding rate to fetch |
| limit | <code>int</code> | No | the maximum amount of funding rate structures to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.paginate | <code>boolean</code> | No | default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the availble parameters |
coinbaseinternational.fetchFundingRateHistory (symbol[, since, limit, params])
<a name="fetchFundingHistory" id="fetchfundinghistory"></a>
fetch the history of funding payments paid and received on this account
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a funding history structure
See: https://docs.cdp.coinbase.com/intx/reference/gettransfers
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | No | unified market symbol |
| since | <code>int</code> | No | the earliest time in ms to fetch funding history for |
| limit | <code>int</code> | No | the maximum number of funding history structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchFundingHistory ([symbol, since, limit, params])
<a name="fetchTransfers" id="fetchtransfers"></a>
fetch a history of internal transfers made on an account
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - a list of transfer structures
See: https://docs.cdp.coinbase.com/intx/reference/gettransfers
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | Yes | unified currency code of the currency transferred |
| since | <code>int</code> | No | the earliest time in ms to fetch transfers for |
| limit | <code>int</code> | No | the maximum number of transfers structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchTransfers (code[, since, limit, params])
<a name="createDepositAddress" id="createdepositaddress"></a>
create a currency deposit address
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - an address structure
See
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | Yes | unified currency code of the currency for the deposit address |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.network_arn_id | <code>string</code> | No | Identifies the blockchain network (e.g., networks/ethereum-mainnet/assets/313ef8a9-ae5a-5f2f-8a56-572c0e2a4d5a) if not provided will pick default |
| params.network | <code>string</code> | No | unified network code to identify the blockchain network |
coinbaseinternational.createDepositAddress (code[, params])
<a name="setMargin" id="setmargin"></a>
Either adds or reduces margin in order to set the margin to a specific value
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - A margin structure
See: https://docs.cloud.coinbase.com/intx/reference/setportfoliomarginoverride
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market to set margin in |
| amount | <code>float</code> | Yes | the amount to set the margin to |
| params | <code>object</code> | No | parameters specific to the exchange API endpoint |
coinbaseinternational.setMargin (symbol, amount[, params])
<a name="fetchPosition" id="fetchposition"></a>
fetch data on an open position
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a position structure
See: https://docs.cloud.coinbase.com/intx/reference/getportfolioposition
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the market the position is held in |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchPosition (symbol[, params])
<a name="fetchPositions" id="fetchpositions"></a>
fetch all open positions
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - a list of position structure
See: https://docs.cloud.coinbase.com/intx/reference/getportfoliopositions
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code> | No | list of unified market symbols |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchPositions ([symbols, params])
<a name="fetchWithdrawals" id="fetchwithdrawals"></a>
fetch all withdrawals made from an account
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - a list of transaction structures
See: https://docs.cloud.coinbase.com/intx/reference/gettransfers
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | Yes | unified currency code |
| since | <code>int</code> | No | the earliest time in ms to fetch withdrawals for |
| limit | <code>int</code> | No | the maximum number of withdrawals structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.portfolios | <code>string</code> | No | Identifies the portfolios by UUID (e.g., 892e8c7c-e979-4cad-b61b-55a197932cf1) or portfolio ID (e.g., 5189861793641175). Can provide single or multiple portfolios to filter by or fetches transfers for all portfolios if none are provided. |
| params.until | <code>int</code> | No | Only find transfers updated before this time. Use timestamp format |
| params.status | <code>string</code> | No | The current status of transfer. Possible values: [PROCESSED, NEW, FAILED, STARTED] |
| params.type | <code>string</code> | No | The type of transfer Possible values: [DEPOSIT, WITHDRAW, REBATE, STIPEND, INTERNAL, FUNDING] |
| params.paginate | <code>boolean</code> | No | default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the availble parameters |
coinbaseinternational.fetchWithdrawals (code[, since, limit, params])
<a name="fetchDeposits" id="fetchdeposits"></a>
fetch all deposits made to an account
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - a list of transaction structures
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | Yes | unified currency code |
| since | <code>int</code> | No | the earliest time in ms to fetch deposits for |
| limit | <code>int</code> | No | the maximum number of deposits structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.portfolios | <code>string</code> | No | Identifies the portfolios by UUID (e.g., 892e8c7c-e979-4cad-b61b-55a197932cf1) or portfolio ID (e.g., 5189861793641175). Can provide single or multiple portfolios to filter by or fetches transfers for all portfolios if none are provided. |
| params.until | <code>int</code> | No | Only find transfers updated before this time. Use timestamp format |
| params.status | <code>string</code> | No | The current status of transfer. Possible values: [PROCESSED, NEW, FAILED, STARTED] |
| params.type | <code>string</code> | No | The type of transfer Possible values: [DEPOSIT, WITHDRAW, REBATE, STIPEND, INTERNAL, FUNDING] |
| params.paginate | <code>boolean</code> | No | default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the availble parameters |
coinbaseinternational.fetchDeposits (code[, since, limit, params])
<a name="fetchMarkets" id="fetchmarkets"></a>
retrieves data on all markets for coinbaseinternational
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - an array of objects representing market data
See: https://docs.cloud.coinbase.com/intx/reference/getinstruments
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchMarkets ([params])
<a name="fetchCurrencies" id="fetchcurrencies"></a>
fetches all available currencies on an exchange
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - an associative dictionary of currencies
See: https://docs.cloud.coinbase.com/intx/reference/getassets
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchCurrencies ([params])
<a name="fetchTickers" id="fetchtickers"></a>
fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a dictionary of ticker structures
See: https://docs.cloud.coinbase.com/intx/reference/getinstruments
| Param | Type | Required | Description |
|---|---|---|---|
| symbols | <code>Array<string></code>, <code>undefined</code> | Yes | unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchTickers (symbols[, params])
<a name="fetchTicker" id="fetchticker"></a>
fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a ticker structure
See: https://docs.cloud.coinbase.com/intx/reference/getinstrumentquote
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to fetch the ticker for |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchTicker (symbol[, params])
<a name="fetchBalance" id="fetchbalance"></a>
query for balance and get the amount of funds available for trading or funds locked in orders
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a balance structure
See: https://docs.cloud.coinbase.com/intx/reference/getportfoliobalances
| Param | Type | Required | Description |
|---|---|---|---|
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.v3 | <code>boolean</code> | No | default false, set true to use v3 api endpoint |
coinbaseinternational.fetchBalance ([params])
<a name="transfer" id="transfer"></a>
Transfer an amount of asset from one portfolio to another.
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a transfer structure
See: https://docs.cloud.coinbase.com/intx/reference/createportfolioassettransfer
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | Yes | unified currency code |
| amount | <code>float</code> | Yes | amount to transfer |
| fromAccount | <code>string</code> | Yes | account to transfer from |
| toAccount | <code>string</code> | Yes | account to transfer to |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.transfer (code, amount, fromAccount, toAccount[, params])
<a name="createOrder" id="createorder"></a>
create a trade order
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - an order structure
See: https://docs.cloud.coinbase.com/intx/reference/createorder
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified symbol of the market to create an order in |
| type | <code>string</code> | Yes | 'market' or 'limit' |
| side | <code>string</code> | Yes | 'buy' or 'sell' |
| amount | <code>float</code> | Yes | how much you want to trade in units of the base currency, quote currency for 'market' 'buy' orders |
| price | <code>float</code> | No | the price to fulfill the order, in units of the quote currency, ignored in market orders |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.stopPrice | <code>float</code> | No | alias for triggerPrice |
| params.triggerPrice | <code>float</code> | No | price to trigger stop orders |
| params.stopLossPrice | <code>float</code> | No | price to trigger stop-loss orders |
| params.postOnly | <code>bool</code> | No | true or false |
| params.tif | <code>string</code> | No | 'GTC', 'IOC', 'GTD' default is 'GTC' for limit orders and 'IOC' for market orders |
| params.expire_time | <code>string</code> | No | The expiration time required for orders with the time in force set to GTT. Must not go beyond 30 days of the current time. Uses ISO-8601 format (e.g., 2023-03-16T23:59:53Z) |
| params.stp_mode | <code>string</code> | No | Possible values: [NONE, AGGRESSING, BOTH] Specifies the behavior for self match handling. None disables the functionality, new cancels the newest order, and both cancels both orders. |
coinbaseinternational.createOrder (symbol, type, side, amount[, price, params])
<a name="cancelOrder" id="cancelorder"></a>
cancels an open order
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - An order structure
See: https://docs.cloud.coinbase.com/intx/reference/cancelorder
| Param | Type | Required | Description |
|---|---|---|---|
| id | <code>string</code> | Yes | order id |
| symbol | <code>string</code> | Yes | not used by coinbaseinternational cancelOrder() |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.cancelOrder (id, symbol[, params])
<a name="cancelAllOrders" id="cancelallorders"></a>
cancel all open orders
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<object></code> - a list of order structures
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol, only orders in the market of this symbol are cancelled when symbol is not undefined |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.cancelAllOrders (symbol[, params])
<a name="editOrder" id="editorder"></a>
edit a trade order
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - an order structure
See: https://docs.cloud.coinbase.com/intx/reference/modifyorder
| Param | Type | Required | Description |
|---|---|---|---|
| id | <code>string</code> | Yes | cancel order id |
| symbol | <code>string</code> | Yes | unified symbol of the market to create an order in |
| type | <code>string</code> | Yes | 'market' or 'limit' |
| side | <code>string</code> | Yes | 'buy' or 'sell' |
| amount | <code>float</code> | Yes | how much of currency you want to trade in units of base currency |
| price | <code>float</code> | No | the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.clientOrderId | <code>string</code> | Yes | client order id |
coinbaseinternational.editOrder (id, symbol, type, side, amount[, price, params])
<a name="fetchOrder" id="fetchorder"></a>
fetches information on an order made by the user
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - An order structure
See: https://docs.cloud.coinbase.com/intx/reference/modifyorder
| Param | Type | Required | Description |
|---|---|---|---|
| id | <code>string</code> | Yes | the order id |
| symbol | <code>string</code> | Yes | unified market symbol that the order was made in |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
coinbaseinternational.fetchOrder (id, symbol[, params])
<a name="fetchOpenOrders" id="fetchopenorders"></a>
fetches information on all currently open orders
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<Order></code> - a list of order structures
See: https://docs.cloud.coinbase.com/intx/reference/getorders
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the orders |
| since | <code>int</code> | No | timestamp in ms of the earliest order, default is undefined |
| limit | <code>int</code> | No | the maximum number of open order structures to retrieve |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.paginate | <code>boolean</code> | No | default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the availble parameters |
| params.offset | <code>int</code> | No | offset |
| params.event_type | <code>string</code> | No | The most recent type of event that happened to the order. Allowed values: NEW, TRADE, REPLACED |
coinbaseinternational.fetchOpenOrders (symbol[, since, limit, params])
<a name="fetchMyTrades" id="fetchmytrades"></a>
fetch all trades made by the user
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>Array<Trade></code> - a list of trade structures
See: https://docs.cloud.coinbase.com/intx/reference/getmultiportfoliofills
| Param | Type | Required | Description |
|---|---|---|---|
| symbol | <code>string</code> | Yes | unified market symbol of the trades |
| since | <code>int</code> | No | timestamp in ms of the earliest order, default is undefined |
| limit | <code>int</code> | No | the maximum number of trade structures to fetch |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.until | <code>int</code> | No | the latest time in ms to fetch trades for |
| params.paginate | <code>boolean</code> | No | default false, when true will automatically paginate by calling this endpoint multiple times. See in the docs all the availble parameters |
coinbaseinternational.fetchMyTrades (symbol[, since, limit, params])
<a name="withdraw" id="withdraw"></a>
make a withdrawal
Kind: instance method of <code>coinbaseinternational</code>
Returns: <code>object</code> - a transaction structure
See
| Param | Type | Required | Description |
|---|---|---|---|
| code | <code>string</code> | Yes | unified currency code |
| amount | <code>float</code> | Yes | the amount to withdraw |
| address | <code>string</code> | Yes | the address to withdraw to |
| tag | <code>string</code> | No | an optional tag for the withdrawal |
| params | <code>object</code> | No | extra parameters specific to the exchange API endpoint |
| params.add_network_fee_to_total | <code>boolean</code> | No | if true, deducts network fee from the portfolio, otherwise deduct fee from the withdrawal |
| params.network_arn_id | <code>string</code> | No | Identifies the blockchain network (e.g., networks/ethereum-mainnet/assets/313ef8a9-ae5a-5f2f-8a56-572c0e2a4d5a) |
| params.nonce | <code>string</code> | No | a unique integer representing the withdrawal request |
coinbaseinternational.withdraw (code, amount, address[, tag, params])