Added OI, Big Deal, LS Ratio
This commit is contained in:
@@ -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: {
|
||||||
|
|||||||
Reference in New Issue
Block a user