* Increase historical market data gathering of currency pairs to 10+ years * Update changelog
9 lines
244 B
TypeScript
9 lines
244 B
TypeScript
import { MarketData } from '@prisma/client';
|
|
|
|
import { EnhancedSymbolProfile } from './enhanced-symbol-profile.interface';
|
|
|
|
export interface AdminMarketDataDetails {
|
|
assetProfile: Partial<EnhancedSymbolProfile>;
|
|
marketData: MarketData[];
|
|
}
|