export interface Trade {
    id: number;
    price: string;
    volume: string;
    market: string;
    created_at: string;
    trend: string;
    side: string;
}
