Chaikin Money Flow (buying/selling pressure)
API · /volumeindicators-api
Volume Indicators API
Live volume-based technical indicators that traders run to confirm a move with the volume behind it, computed on demand from the OHLCV candles you pass in — no key, no cache, nothing stored. The mfi endpoint returns the Money Flow Index, a volume-weighted version of RSI that swings from 0 to 100, with an overbought reading above 80 and oversold below 20. The obv endpoint returns On-Balance Volume, the running total that adds a candle's volume on an up close and subtracts it on a down close, together with whether it is rising or falling — rising OBV confirms buying pressure. The cmf endpoint returns the Chaikin Money Flow, which sums money-flow volume over the lookback to show whether buyers or sellers are in control. These indicators all need the volume of each candle, which makes them a fundamentally different tool from price-only indicators like RSI, MACD, Stochastic and ADX: they answer whether volume is confirming the price move or diverging from it. Works for any market — forex, stocks, crypto or commodities — because you supply the candles with volume. Computed locally and deterministically, so it is instant and private. Ideal for trading bots, divergence screeners, breakout confirmation and trading dashboards. Candles are open:high:low:close:volume. Live, nothing stored. 3 compute endpoints. For price-only indicators use a technical-indicators, oscillators or trend-indicators API.
API health
degraded- Uptime
- 91.67%
- Server probes · 24h
- Avg latency
- 533 ms
- Server probes · 24h
- Subscribers
- 4,798
- active
- Total calls
- 4
- last 7 days
Pricing
Pick a tier — billed monthly, cancel anytime.
Free
Free
- 4,400 calls / month
- 2 requests / second
- Hard cap (429 above quota, no overage)
- 4,400 calls/month
- 2 req/sec
- MFI + OBV + Chaikin Money Flow
- No credit card
Starter
€7.20 /month
- 88,000 calls / month
- 6 requests / second
- Hard cap (429 above quota, no overage)
- 88,000 calls/month
- 6 req/sec
- Volume-confirmation signals
- Email support
Pro
€20.70 /month
- 455,000 calls / month
- 18 requests / second
- Hard cap (429 above quota, no overage)
- 455,000 calls/month
- 18 req/sec
- Divergence & breakout pipelines
- Priority support
Business
€46.00 /month
- 2,850,000 calls / month
- 45 requests / second
- Hard cap (429 above quota, no overage)
- 2,850,000 calls/month
- 45 req/sec
- Bot & dashboard scale
- Dedicated SLA
Built by
Related APIs
Other APIs with overlapping tags.
Crypto Exchanges API
Live rankings and comparison of crypto exchanges, served from the public CoinPaprika feed — no key, nothing cached. Rank every crypto exchange by adjusted 24h volume with its 7d/30d volume, number of markets and currencies and confidence score; pull one exchange's full profile (volumes, market count, website and social links, status); list an exchange's trading pairs with price and 24h volume; and search exchanges by name. A cross-exchange comparison layer, distinct from single-exchange ticker feeds and whole-market price feeds — it answers which venues are biggest and what they trade. Volumes in USD; adjusted = wash-trade-filtered.
api.oanor.com/cryptoexchanges-api
Crypto Volume API
Live most-traded crypto pairs by 24-hour spot volume as an API, powered by Binance. It ranks the trading pairs by their 24-hour quote volume — where the real liquidity and activity is right now — with each pair's last price, daily change, 24-hour high and low, base and quote volume, and the number of trades. Rank by any quote currency (USDT, BTC, ETH, USDC), or look a single pair up for its full 24-hour stats. The spot-volume and market-activity leaderboard for trading, screening and dashboard apps. Live, no key, no cache. Distinct from price-change movers and from DEX-volume APIs — this is centralised-exchange spot trading volume.
api.oanor.com/cryptovolume-api
DEX Volume API
Live decentralised-exchange trading volume across the whole crypto ecosystem as an API, streamed from the DefiLlama DEX feed. For thousands of DEX protocols: the trading volume over the last 24 hours, 7 days and 30 days, the day/week/month change, the chains they run on, and each one's share of the total DEX market. Rank the busiest DEXes, drill into a single one, see how trading volume is split across chains, or read the market-wide total. Built for crypto, trading and dashboard apps. Live, no key. Distinct from TVL, fees, yield and stablecoin APIs — this is the on-chain trading-activity surface.
api.oanor.com/dexvolume-api
Aquarium Calculator API
Aquarium maths as an API, computed locally and deterministically. The volume endpoint computes a tank's water volume — in US and UK gallons and litres — for a rectangular, cube, cylinder, hexagonal or bow-front tank from its dimensions (inches by default, or centimetres, millimetres and metres), and applies a fill factor (default 0.9) for substrate, decoration and freeboard to give a realistic net volume. The stocking endpoint gives a rough stocking load from the tank volume and the total length of fish using the classic inch-per-gallon guideline, reporting the maximum recommended inches and how heavily stocked the tank is. The waterchange endpoint computes the water-change volume for a percentage, with an optional dechlorinator dose. Everything is computed locally and deterministically, so it is instant and private. Stocking is a rough beginner guideline only — real stocking depends on the species, filtration and bioload. Ideal for aquarium and fishkeeping apps, pet-shop and hobbyist tools, and tank-setup planners. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 3 endpoints. This is aquarium maths; for swimming-pool volume and chemical dosing use a pool API and for storage-tank gauging use a tank API.
api.oanor.com/aquarium-api
Frequently asked questions
Quick answers about pricing, quotas, and integration.
How do I get an API key for Volume Indicators API?
What's the rate limit for Volume Indicators API?
How much does Volume Indicators API cost?
Can I cancel my subscription anytime?
Is Volume Indicators API GDPR-compliant?
Pick an endpoint from the list on the left to see its details and try it.
Code snippets
Sign up to get an API key, then call any path under your slug.
curl https://api.oanor.com/volumeindicators-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/volumeindicators-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/volumeindicators-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/volumeindicators-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Ratings
Sign in to rate.
No reviews yet.
Discussion
Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.
Sign in to start a thread or reply.
Sign inNew thread
·
-
Provider answer
🔒 This thread is locked — no new replies.
-
·
- No threads yet — start the discussion.
Support
Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.
Sign in to open a support ticket.
Sign inOpen new ticket
Describe what you need help with. The provider team gets an email and replies on the ticket page.
-
·
Urgent - No tickets yet for this API.