* @method * @name pacifica#fetchOpenInterest * @description retrieves the open interest of a contract trading pair * @param {string} symbol unified CCXT market symbol * @param {object} [params] exchange specific parameters * @returns {object} an [open interest structure]{@li
(symbol, params = {})
| 2676 | * @returns {object} an [open interest structure]{@link https://docs.ccxt.com/?id=open-interest-structure} |
| 2677 | */ |
| 2678 | async fetchOpenInterest(symbol, params = {}) { |
| 2679 | symbol = this.symbol(symbol); |
| 2680 | await this.loadMarkets(); |
| 2681 | const ois = await this.fetchOpenInterests([symbol], params); |
| 2682 | return ois[symbol]; |
| 2683 | } |
| 2684 | parseOpenInterest(interest, market = undefined) { |
| 2685 | // |
| 2686 | // { |
nothing calls this directly
no test coverage detected