mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
feat: add download-data types
This commit is contained in:
parent
43d203e4dc
commit
350bd6d0ae
12
src/types/downloadData.ts
Normal file
12
src/types/downloadData.ts
Normal file
|
@ -0,0 +1,12 @@
|
|||
import { MarginMode, TradingMode } from './types';
|
||||
|
||||
export interface DownloadDataPayload {
|
||||
pairs: string[];
|
||||
exchange?: string;
|
||||
trading_mode?: TradingMode;
|
||||
margin_mode?: MarginMode;
|
||||
stake_currency: string;
|
||||
timeframes: string[];
|
||||
timerange?: string;
|
||||
days?: number;
|
||||
}
|
|
@ -7,6 +7,7 @@ export * from './botComparison';
|
|||
export * from './candleTypes';
|
||||
export * from './chart';
|
||||
export * from './daily';
|
||||
export * from './downloadData';
|
||||
export * from './exchange';
|
||||
export * from './gridLayout';
|
||||
export * from './locks';
|
||||
|
|
Loading…
Reference in New Issue
Block a user