API documentation
interface
CreateInvestmentStrategyRequest
export interface CreateInvestmentStrategyRequest {
accountId?: number; // For LAMM, existing account ID
currency?: string; // For PAMM, selected currency
investmentModel: 'LAMM' | 'PAMM';
name: string;
manager: string;
description: string;
displayName?: string;
descriptionLong?: string;
minInvestment: number;
maxInvestment: number;
riskLabel: InvestmentRisk;
maxInvestmentAccountsPerUser: number;
// Fees (only used if isAbleToSetFees is true)
managementFeeValue?: number;
managementFeePeriod?: number;
performanceFeeValue?: number;
performanceFeePeriod?: number;
// Files
imageFileRecordId?: string;
pdfFileRecordId?: string;
youtubeVideoLink?: string;
}