Halyk Finance
Coming SoonKazakhstan Brokers
connectorType: "halyk_finance"Investment arm of Halyk Bank
Connection Architecture
Halyk Finance
WebSocket / REST→
Connector
libs/exchange-halyk-finance→
Provider
:8081/api→
Detector
Advisor
Studio
The connector receives data from the exchange and feeds it to Provider (port 8081). From there — to Detector, Advisor, and Studio.
Technologies
Transport
WebSocketREST
Authentication
API Key + SecretData Format
JSONBest for
- Institutional investors in Kazakhstan seeking algorithmic access to KASE through a top-tier local custodian.
- Fixed-income traders monitoring government and corporate KZT bonds via the largest local bank infrastructure.
- Central Asian portfolio managers who hold custody at Halyk Bank and want Barfinex integration.
Connect via code
1Environment variables (.env)
HALYK_API_KEY=your_key_here HALYK_API_SECRET=your_secret_here
2Connector configuration
// config/config.provider.json
{
"provider": {
"connectors": [
{
"connectorType": "halyk_finance",
"enabled": true,
"key": "${HALYK_API_KEY}",
"secret": "${HALYK_API_SECRET}",
"markets": [
{ "marketType": "spot", "symbols": [{ "name": "BTCUSDT" }] }
],
"subscriptions": [
{ "type": "PROVIDER_MARKETDATA_CANDLE", "symbols": ["BTCUSDT"], "intervals": ["min1", "h1"], "active": true },
{ "type": "PROVIDER_MARKETDATA_TRADE", "symbols": ["BTCUSDT"], "active": true },
{ "type": "PROVIDER_MARKETDATA_ORDERBOOK", "symbols": ["BTCUSDT"], "active": true }
]
}
]
}
}3Verify and query data
# Verify connection curl -H "Authorization: Bearer $PROVIDER_API_TOKEN" \ https://localhost:8081/api/exchanges/runtime-proof # Candles (last 7 days) curl -H "Authorization: Bearer $PROVIDER_API_TOKEN" \ "https://localhost:8081/api/candles/halyk_finance/spot/BTCUSDT/h1?days=7"
Available via Barfinex API
/api/candles/halyk_finance/...
/api/trades/halyk_finance/...
/api/orderbook/halyk_finance/...
/api/account/halyk_finance/...
/api/symbols/halyk_finance/...
/api/assets/halyk_finance/...
Studio graphical setup — in development, coming in the next release.
Important
API access requires an active brokerage account with Halyk Finance.
Trading sessions follow ALMT (UTC+5).
Integration is primarily oriented towards KASE instruments; international equity coverage is limited.
Connect in Studio(soon)
Exchange Website