UNPKG

@exchanges/binance

Version:

Exchange provider for Binance API

17 lines (16 loc) 623 B
import { BinanceSignedClient } from '../../../clients'; import { usdtM } from '../../../info'; export interface UserAPITradingQuantitativeRulesIndicatorsResponse { indicators: { pairName: string; rules: { isLocked: boolean; plannedRecoverTime: Date; indicator: usdtM.RulesIndicatorType; value: number; triggerValue: number; }[]; }[]; updateTime: Date; } export declare function userAPITradingQuantitativeRulesIndicators(client: BinanceSignedClient, symbol?: string): Promise<UserAPITradingQuantitativeRulesIndicatorsResponse>;