export interface MarketTrades {
    date: string;
    exchange: string;
    tradeVolume: number;
    tradeValue: number;
    transaction: number;
}
