NYSE · Stock
USDQAR
US Dollar vs Qatari Riyal
3.6454
Market closed · last price 18h ago
Last 24 hours
Bid
3.6202
Ask
3.6706
Day High
3.6202
Day Low
3.6202
USDQAR key statistics
1 week
+0.04%
1 month
+0.01%
52w high
3.65068
52w low
3.63481
Avg daily range
+0.01%
History from
09 May 2025
Highs and lows are taken from 261 daily bars — the high was set on 26 Mar 2026 and the low on 09 Mar 2026. USDQAR is quoted to 5 decimal places, minimum tick 0.00001, spread at last quote 0.05040, quoted in USD on NYSE, sourced from MetaTrader 5 (Broker 1).
USDQAR daily history
| Date | Open | High | Low | Close | Change |
|---|---|---|---|---|---|
| 11 Sept 2026 | 3.64542 | 3.64542 | 3.64542 | 3.64542 | +0.00% |
| 08 Sept 2026 | 3.64506 | 3.64506 | 3.64506 | 3.64506 | +0.00% |
| 04 Sept 2026 | 3.64531 | 3.64531 | 3.64531 | 3.64531 | +0.00% |
| 26 Aug 2026 | 3.64518 | 3.64518 | 3.64518 | 3.64518 | +0.00% |
| 14 Aug 2026 | 3.64359 | 3.64359 | 3.64359 | 3.64359 | +0.00% |
| 11 Aug 2026 | 3.64431 | 3.64431 | 3.64399 | 3.64399 | -0.01% |
| 09 Aug 2026 | 3.64449 | 3.64449 | 3.64449 | 3.64449 | +0.00% |
| 07 Aug 2026 | 3.64455 | 3.64455 | 3.64455 | 3.64455 | +0.00% |
| 29 Jul 2026 | 3.64525 | 3.64698 | 3.64525 | 3.64698 | +0.05% |
| 28 Jul 2026 | 3.64448 | 3.64448 | 3.64448 | 3.64448 | +0.00% |
USDQAR API access
US Dollar vs Qatari Riyal prices are available over REST and WebSocket with no API key and no signup. Rate limit is 15,000 requests per minute per IP.
curl
curl "https://biquote.io/api/USDQAR"
Python
import requests
r = requests.get("https://biquote.io/api/USDQAR")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])JavaScript
const r = await fetch("https://biquote.io/api/USDQAR");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);WebSocket
// SignalR hub — pushes every tick for USDQAR
const conn = new signalR.HubConnectionBuilder()
.withUrl("https://biquote.io/hubs/tick")
.build();
conn.on("ReceiveTick", t => console.log(t.symbol, t.mid));
await conn.start();
await conn.invoke("Subscribe", "USDQAR");Also available for USDQAR: daily candles, hourly candles · full API documentation