Trading Assistant API Documentation - v0.1.0
    Preparing search index...

    Interface UpdatePortfolioRequest

    interface UpdatePortfolioRequest {
        name?: string;
        description?: string;
        strategy_type?: StrategyType;
        currency?: Currency;
        is_default?: boolean;
        is_active?: boolean;
        initial_capital?: number;
        risk_level?: number;
        max_position_size_pct?: number;
        max_drawdown_tolerance_pct?: number;
        target_allocation?: Record<string, number>;
    }
    Index

    Properties

    name?: string
    description?: string
    strategy_type?: StrategyType
    currency?: Currency
    is_default?: boolean
    is_active?: boolean
    initial_capital?: number
    risk_level?: number
    max_position_size_pct?: number
    max_drawdown_tolerance_pct?: number
    target_allocation?: Record<string, number>