update refactor
This commit is contained in:
parent
01abc7e446
commit
55ad0607f3
39 changed files with 4304 additions and 584 deletions
0
src/dao/analysis.ts
Normal file
0
src/dao/analysis.ts
Normal file
10
src/dao/candles.ts
Normal file
10
src/dao/candles.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export interface Candle {
|
||||
time: string;
|
||||
timestamp: number;
|
||||
open: number;
|
||||
high: number;
|
||||
low: number;
|
||||
close: number;
|
||||
volume: number;
|
||||
turnover: number;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue