Skip to content

Commit 0452aba

Browse files
committed
chore(): added comments to candle types
1 parent a835c79 commit 0452aba

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

src/types/response/v2/futures.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ export interface FuturesFillV2 {
8686
}
8787

8888
export type FuturesCandlestickV2 = [
89-
string,
90-
string,
91-
string,
92-
string,
93-
string,
94-
string,
95-
string,
96-
string,
89+
string, // timestamp
90+
string, // open
91+
string, // high
92+
string, // low
93+
string, // close
94+
string, // baseVolume
95+
string, // usdtVolume
96+
string, // quoteVolume
9797
];
9898

9999
export interface FuturesOpenInterestV2 {

src/types/response/v2/spot.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ export interface SpotOrderBookDepthV2 {
9393
}
9494

9595
export type SpotCandlestickV2 = [
96-
string,
97-
string,
98-
string,
99-
string,
100-
string,
101-
string,
102-
string,
103-
string,
96+
string, // timestamp
97+
string, // open
98+
string, // high
99+
string, // low
100+
string, // close
101+
string, // baseVolume
102+
string, // usdtVolume
103+
string, // quoteVolume
104104
];
105105

106106
export interface SpotTradeV2 {

0 commit comments

Comments
 (0)