import { BenchmarkTrend } from '../types/benchmark-trend-type.type'; import { EnhancedSymbolProfile } from './enhanced-symbol-profile.interface'; export interface Benchmark { marketCondition: 'BEAR_MARKET' | 'BULL_MARKET' | 'NEUTRAL_MARKET'; name: EnhancedSymbolProfile['name']; performances: { allTimeHigh: { date: Date; performancePercent: number; trend50d: BenchmarkTrend; trend200d: BenchmarkTrend; }; }; }