@exchanges/binance
Version:
Exchange provider for Binance API
24 lines (23 loc) • 755 B
TypeScript
import { BinanceSignedClient } from '../../../clients';
export interface GetDetailOnSubAccountMarginAccountResponse {
email: string;
marginLevel: number;
totalAssetOfBtc: number;
totalLiabilityOfBtc: number;
totalNetAssetOfBtc: number;
marginTradeCoeffVo: {
forceLiquidationBar: number;
marginCallBar: number;
normalBar: number;
canTrade: boolean;
};
marginUserAssetVoList: {
asset: string;
borrowed: number;
free: number;
interest: number;
locked: number;
netAsset: number;
}[];
}
export declare function getDetailOnSubAccountMarginAccount(client: BinanceSignedClient, email: string): Promise<GetDetailOnSubAccountMarginAccountResponse>;