curl -X POST "$BASE_URL/wealth/accounts/$ACCOUNT_ID/investment-policy" \
-H "Authorization: Basic $AUTH" \
-H "Content-Type: application/json" \
-d '{
"risk_profile": {
"risk_tolerance": "moderate",
"risk_score": 5,
"volatility_tolerance": "medium"
},
"time_horizon": {
"years": 20,
"category": "long_term"
},
"investment_objectives": {
"primary": "capital_appreciation",
"secondary": ["income_generation"],
"target_annual_return": "7.00"
},
"target_allocation": {
"equities": { "target_percent": "50.00", "min_percent": "40.00", "max_percent": "60.00" },
"fixed_income": { "target_percent": "25.00", "min_percent": "20.00", "max_percent": "30.00" },
"alternatives": { "target_percent": "5.00", "min_percent": "0.00", "max_percent": "10.00" }
},
"constraints": {
"liquidity_requirements": { "minimum_cash_percent": "5.00", "emergency_fund_months": 6 },
"tax_considerations": { "tax_loss_harvesting": true, "tax_bracket": "24", "prefer_tax_advantaged": true },
"rebalancing_policy": { "frequency": "quarterly", "threshold_percent": "5.00", "tax_aware": true }
}
}'