interfaceInvestmentStrategy
export interface InvestmentStrategy {
accountId: number;
name: string;
currency: string;
manager: string;
description: string;
minInvestment: number;
maxInvestment: number;
riskLabel: InvestmentRisk;
roi: number;
profitFactor: number;
maxDrawdown: number;
managementFee: InvestmentFee;
performanceFee: InvestmentFee;
investmentModel: string;
// New properties for enhanced functionality
displayName?: string;
descriptionLong?: string;
imageUrl?: string;
pdfUrl?: string;
youtubeVideoLink?: string;
createdByUserId?: string;
createdByUserName?: string;
approvalStatus: InvestmentApprovalStatus;
userGroupId?: number;
}