Docs
Kickstart guide and API overview for NexusAlpha.
Quickstart
- Upload this project to your PHP hosting or run on
localhost
(XAMPP/Laragon). - Edit branding/colors in
assets/css/na.css
(--brand1/2/3
variables). - Write your product copy inside
pages/*.php
. - (Optional) Wire contact form with PHPMailer / SMTP.
Features Modules
- AutoTrading engine
- MT4 OTC feed mirror
- Live Trading dashboard
- AI Hack Signal
Sample REST
GET /api/v1/signals?pair=EURUSD&tf=1m
200 OK
[
{"time":"2025-09-18T09:30:00Z","dir":"CALL","score":0.71},
{"time":"2025-09-18T09:32:00Z","dir":"PUT","score":0.64}
]
Webhook (Telegram)
POST /webhook/telegram
{
"chat_id": 123,
"message": "EURUSD 09:32 CALL (M1)"
}
Folder Structure
nexusalpha-php/
├─ index.php
├─ includes/
├─ pages/
└─ assets/
├─ css/na.css
├─ js/na.js
└─ img/na-logo.svg