/v1/mfi
Money Flow Index (volume-weighted RSI)
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/volumeindicators-api/v1/mfi" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/volumeindicators-api/v1/mfi", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/volumeindicators-api/v1/mfi");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/volumeindicators-api/v1/mfi",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"mfi": 100,
"note": "Money Flow Index = volume-weighted RSI over the period; raw money flow = typical price x volume. >=80 overbought, <=20 oversold.",
"period": 14,
"signal": "overbought",
"source": "VOLUME",
"candles": 22,
"negative_money_flow": 0,
"positive_money_flow": 3972966.6667
},
"meta": {
"timestamp": "2026-06-11T07:48:59.797Z",
"request_id": "3031a514-85be-4403-8a9e-92ec86bfc14f"
},
"status": "ok",
"message": "MFI computed",
"success": true
}