Retrieve OHLCV (Open, High, Low, Close, Volume) candlestick data for one or multiple tokens.
Is `period` compatible with TradingView’s ResolutionString?
period is not the same format as TradingView’s ResolutionString. Treat them as different contracts and map values in your datafeed before calling Mobula.Often maps cleanly (Mobula normalizes case):1S, 5S, … → Mobula 1s, 5s, …1, 5, 15, 30 → 1m, 5m, 15m, 30m60 → 1h; 240 → 4h; 360 → 6h; 720 → 12h1D → 1d, 1W → 1w1M (one month):1M for one month. Mobula lowercases the string, so 1M becomes 1m, which means one minute, not one month. Never forward TV’s monthly resolution unchanged.Not a direct match:1T, 5T, …) — Mobula serves time-based OHLCV candles, not tick aggregation.1h for unknown non-empty values, or the endpoint’s own default such as 5m when period is omitted).1s, 5s, 15s, 30s, 1m, 5m, 15m, 30m, 1h, 4h, 6h, 12h, 1d, 1w.5min or 60 → 1h are accepted by the API layer. Do not use 1month / TV-style monthly here: they normalize to 1M, which this OHLCV history service does not support.Recommendation: Add an explicit tradingViewResolutionToMobulaPeriod(resolution) (or equivalent) in your integration instead of passing TV resolutions straight through.