QorexAI Fast Trading is a short-term price movement platform.
Users choose a market (Crypto or Qorex Index), select an expiry (30s, 1min, 2min, 5min),
set the amount, then predict if the price will be HIGHER or
LOWER at expiry.
Crypto Mode: Uses live Binance prices (BTC/USDT, ETH/USDT, etc.).
Qorex Index Mode: Synthetic indices powered by the QorexAI engine.
Payouts: Fixed profit rate (e.g. +85%) defined per instrument.
USER JOURNEY
FLOW
The standard user flow is simple and mobile-first. Every step is
designed to be fast, clear and
touch-friendly.
1. Register & log in from the app-style screens.
2. Deposit to your wallet (USDT or local methods).
3. Open the Fast Trading dashboard and choose a market.
4. Place trades, monitor open positions & view history.
SECTION 02
HOW THE PRICE ENGINE & TRADES WORK
PRICE ENGINE
ENGINE
The dashboard uses a combination of:
Live Binance API for crypto tickers (BTCUSDT, ETHUSDT, etc.).
Qorex Synthetic Engine for QX Indexes with controlled volatility.
Local smoothing and Heikin-Ashi / candle transformations on the frontend.
TYPICAL PRICE FETCH (SERVER SIDE PSEUDO)
// Example pseudo-endpoint: /api/price?symbol=BTCUSDT
GET /api/price?symbol=BTCUSDT
→ Pull live ticker from Binance or internal feed
→ Normalize & round price
→ Return JSON:
{
"symbol": "BTCUSDT",
"price": 68952.14,
"source": "binance"
}
TRADE LIFECYCLE
TRADE FLOW
Every position on the Fast Trading dashboard should follow this lifecycle on the backend:
1 · Create: When user taps BUY HIGHER / SELL LOWER, create a trade row (PENDING) with entry price + expiry time.
2 · Lock: Lock the amount from user balance (wallet balance decreased immediately).
3 · Settle: At expiry, compare final price vs entry price to decide WIN / LOSS.
4 · Credit: On WIN, send back stake + profit. On LOSS, stake is kept by platform.
SECTION 03
API & INTEGRATION LAYER
AUTHENTICATION
SECURITY
External integrations should communicate with QorexAI using a secure API key or JWT token.
Below is a sample REST format that you can adapt on your own backend:
SAMPLE AUTH HEADER
GET /api/user/balance HTTP/1.1
Host: qorexai.com
Authorization: Bearer <YOUR_API_TOKEN>
Accept: application/json
CORE ENDPOINT IDEAS
ENDPOINTS
Typical private endpoints to implement on the platform backend:
GET /api/user/balance – Return user balance & currency.
POST /api/trades/open – Create new trade (asset, direction, amount, expiry).
GET /api/trades/open – List open positions for current user.
GET /api/trades/history – Paginated closed trades, P/L & stats.
SECTION 04
LIMITS, RISK MANAGEMENT & FAIR USE
TRADING LIMITS
LIMITS
For responsible trading, we recommend configuring the following limits inside the admin panel:
Minimum stake per trade (e.g. 1 USDT).
Maximum stake per trade based on user level or KYC tier.
Daily exposure limits (max open amount per user / per asset).
Max simultaneous trades per user (for example 10 open positions).
RISK WARNING BLOCK
DISCLAIMER
Always display a clear risk disclaimer at the bottom of your pages:
RISK WARNING (HTML SNIPPET)
<p class="risk-text">
TRADING SHORT-TERM PRICE MOVEMENTS INVOLVES A HIGH LEVEL OF RISK.
NEVER INVEST FUNDS YOU CANNOT AFFORD TO LOSE. PAST PERFORMANCE
DOES NOT GUARANTEE FUTURE RESULTS.
</p>
SECTION 05
FAQ – QUICK ANSWERS
IS THIS REAL MONEY OR DEMO BALANCE?
QorexAI can run in DEMO MODE (virtual balance only)
or in REAL MODE with real deposits & withdrawals.
Your current installation should clearly display which mode you are using.
WHERE DO CRYPTO PRICES COME FROM?
For Crypto markets, prices are pulled from a live exchange feed
(for example Binance). The platform can add smoothing / visual
transformations but the base feed should remain synced to real data.
HOW FAST ARE TRADES SETTLED?
Trades are settled automatically at the selected expiry time
(30s, 1min, 2min, 5min). The backend should run a cron or a
queue worker to close all expired trades and update balances.
CAN I CONNECT EXTERNAL BOTS OR SIGNALS?
Yes, if you expose private endpoints (for example /api/trades/open),
you can plug signal bots, Telegram bots or external strategies.
Always protect endpoints with API keys or OAuth / JWT tokens.
NEED HELP WITH INTEGRATION?
Contact QorexAI support for custom docs, webhooks & full setup.