chore(): added comments to candle types

This commit is contained in:
JJ-Cro
2024-12-17 17:32:16 +01:00
parent a835c793c8
commit 0452aba3ec
2 changed files with 16 additions and 16 deletions

View File

@@ -86,14 +86,14 @@ export interface FuturesFillV2 {
}
export type FuturesCandlestickV2 = [
string,
string,
string,
string,
string,
string,
string,
string,
string, // timestamp
string, // open
string, // high
string, // low
string, // close
string, // baseVolume
string, // usdtVolume
string, // quoteVolume
];
export interface FuturesOpenInterestV2 {

View File

@@ -93,14 +93,14 @@ export interface SpotOrderBookDepthV2 {
}
export type SpotCandlestickV2 = [
string,
string,
string,
string,
string,
string,
string,
string,
string, // timestamp
string, // open
string, // high
string, // low
string, // close
string, // baseVolume
string, // usdtVolume
string, // quoteVolume
];
export interface SpotTradeV2 {