FOREX · Forex
TRYZAR
New Turkish Lira vs South African Rand
0.3320
▲ 0.37% today
Last 24 hours
Bid
0.3313
Ask
0.3326
Day High
0.3329
Day Low
0.3303
TRYZAR key statistics
1 week
+0.78%
1 month
-1.99%
52w high
0.40249
52w low
0.32830
Avg daily range
+0.64%
History from
11 Nov 2025
Highs and lows are taken from 261 daily bars — the high was set on 21 Nov 2025 and the low on 06 Sept 2026. TRYZAR is quoted to 5 decimal places, minimum tick 0.00001, spread at last quote 0.00133, quoted in USD on FOREX, sourced from MetaTrader 5 (Broker 1).
TRYZAR daily history
| Date | Open | High | Low | Close | Change |
|---|---|---|---|---|---|
| 11 Sept 2026 | 0.33337 | 0.33383 | 0.33109 | 0.33198 | -0.42% |
| 10 Sept 2026 | 0.33078 | 0.33455 | 0.33041 | 0.33336 | +0.78% |
| 09 Sept 2026 | 0.33023 | 0.33147 | 0.32964 | 0.33075 | +0.16% |
| 08 Sept 2026 | 0.32980 | 0.33207 | 0.32970 | 0.33024 | +0.13% |
| 07 Sept 2026 | 0.32942 | 0.33047 | 0.32912 | 0.32979 | +0.11% |
| 06 Sept 2026 | 0.32931 | 0.32966 | 0.32830 | 0.32941 | +0.03% |
| 04 Sept 2026 | 0.33021 | 0.33097 | 0.32868 | 0.32916 | -0.32% |
| 03 Sept 2026 | 0.33237 | 0.33288 | 0.33009 | 0.33020 | -0.65% |
| 02 Sept 2026 | 0.33488 | 0.33533 | 0.33156 | 0.33238 | -0.75% |
| 01 Sept 2026 | 0.33358 | 0.33539 | 0.33300 | 0.33487 | +0.39% |
TRYZAR API access
New Turkish Lira vs South African Rand 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/TRYZAR"
Python
import requests
r = requests.get("https://biquote.io/api/TRYZAR")
tick = r.json()
print(tick["mid"], tick["dayDiffPercent"])JavaScript
const r = await fetch("https://biquote.io/api/TRYZAR");
const tick = await r.json();
console.log(tick.mid, tick.dayDiffPercent);WebSocket
// SignalR hub — pushes every tick for TRYZAR
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", "TRYZAR");Also available for TRYZAR: daily candles, hourly candles · full API documentation