Mayson Monorepo Documentation
    Preparing search index...

    Interface PortfolioChangeEmailData

    Data for portfolio change email

    interface PortfolioChangeEmailData {
        totalValue: number;
        previousValue: number;
        changePercent: number;
        changeAmount: number;
        topGainers: { symbol: string; changePercent: number }[];
        topLosers: { symbol: string; changePercent: number }[];
        period: "daily" | "weekly" | "monthly";
    }
    Index

    Properties

    totalValue: number
    previousValue: number
    changePercent: number
    changeAmount: number
    topGainers: { symbol: string; changePercent: number }[]
    topLosers: { symbol: string; changePercent: number }[]
    period: "daily" | "weekly" | "monthly"