```python
from fastapi import FastAPI, Query
import helpers
import asyncio

app = FastAPI()


@app.get("/portfolio")
async def portfolio(symbols: str = Query(...)):
    syms = [s.strip() for s in symbols.split(",")]
    prices = await asyncio.gather(*(helpers.afetch_price(s) for s in syms))
    return {"prices": {s: p for s, p in zip(syms, prices)}}
```