Added OI, Big Deal, LS Ratio

This commit is contained in:
CryptoCompiler
2021-01-22 10:10:07 +00:00
committed by GitHub
parent 32625e1485
commit ca14d88879

View File

@@ -55,6 +55,29 @@ export default class SharedEndpoints {
return this.requestWrapper.get('v2/public/liq-records', params); 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------------> //------------Wallet Data Endpoints------------>
getWalletBalance(params: { getWalletBalance(params: {