chore(): updated candle types
This commit is contained in:
@@ -85,15 +85,16 @@ export interface FuturesFillV2 {
|
|||||||
symbol: string;
|
symbol: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FuturesCandlestickV2 {
|
export type FuturesCandlestickV2 = [
|
||||||
[0]: string; // timestamp
|
string,
|
||||||
[1]: string; // open
|
string,
|
||||||
[2]: string; // high
|
string,
|
||||||
[3]: string; // low
|
string,
|
||||||
[4]: string; // close
|
string,
|
||||||
[5]: string; // baseVolume
|
string,
|
||||||
[6]: string; // quoteVolume
|
string,
|
||||||
}
|
string,
|
||||||
|
];
|
||||||
|
|
||||||
export interface FuturesOpenInterestV2 {
|
export interface FuturesOpenInterestV2 {
|
||||||
symbol: string;
|
symbol: string;
|
||||||
|
|||||||
@@ -92,16 +92,16 @@ export interface SpotOrderBookDepthV2 {
|
|||||||
ts: string;
|
ts: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface SpotCandlestickV2 {
|
export type SpotCandlestickV2 = [
|
||||||
[0]: string; // timestamp
|
string,
|
||||||
[1]: string; // open
|
string,
|
||||||
[2]: string; // high
|
string,
|
||||||
[3]: string; // low
|
string,
|
||||||
[4]: string; // close
|
string,
|
||||||
[5]: string; // baseVolume
|
string,
|
||||||
[6]: string; // usdtVolume
|
string,
|
||||||
[7]: string; // quoteVolume
|
string,
|
||||||
}
|
];
|
||||||
|
|
||||||
export interface SpotTradeV2 {
|
export interface SpotTradeV2 {
|
||||||
symbol: string;
|
symbol: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user