Missing Endpoint

This commit is contained in:
CryptoCompiler
2021-01-22 10:10:31 +00:00
committed by GitHub
parent ca14d88879
commit 3e14c63002

View File

@@ -75,6 +75,24 @@ export class InverseClient extends SharedEndpoints {
}): GenericAPIResponse {
return this.requestWrapper.get('v2/public/mark-price-kline', params);
}
getIndexPriceKline(params: {
symbol: string;
interval: string;
from: number;
limit?: number;
}): GenericAPIResponse {
return this.requestWrapper.get('v2/public/index-price-kline', params);
}
getPremiumIndexKline(params: {
symbol: string;
interval: string;
from: number;
limit?: number;
}): GenericAPIResponse {
return this.requestWrapper.get('v2/public/premium-index-kline', params);
}
getOpenInterest(params: {
symbol: string;