diff --git a/src/shared-endpoints.ts b/src/shared-endpoints.ts index 4c280ee..474bd04 100644 --- a/src/shared-endpoints.ts +++ b/src/shared-endpoints.ts @@ -55,6 +55,29 @@ export default class SharedEndpoints { return this.requestWrapper.get('v2/public/liq-records', params); } + getOpenInterest(params: { + symbol: string; + period: string; + limit?: number; + }): GenericAPIResponse { + return this.requestWrapper.get('v2/public/open-interest', params); + } + + getLatestBigDeal(params: { + symbol: string; + limit?: number; + }): GenericAPIResponse { + return this.requestWrapper.get('v2/public/big-deal', params); + } + + getLongShortRatio(params: { + symbol: string; + period: string; + limit?: number; + }): GenericAPIResponse { + return this.requestWrapper.get('v2/public/account-ratio', params); + } + //------------Wallet Data Endpoints------------> getWalletBalance(params: {