DiscHub - Responsive Sidebar Nav
DiscHub API is open source for developers who volunteer to build SDKs for popular programming A new version of the Dischub WordPress plugin is now available.
DiscHub Logo

DiscHub

Your Reliable Partner

Our Digital Services

Strategy API Documentation

Send market data (candles + price) and receive intelligent trading signals powered by our cloud engine.

Overview

This API analyzes multi timeframe market data (M1 → H4) and returns high probability trading signals with bias, zones, and scoring. Designed for MT5 bots, Deriv bots and other brokers' automated trading systems.

Recommended Assets
Volatility 75 (1s) Index Boom 300 Index Crash 300 Index Step Index Volatility 100 Index Volatility 75 Index FlipX 2 FX Vol 80 Volatility 10 Index
Endpoint
https://dischub.co.zw/mt5/get/signal/
Method
POST
Request Body

{   
    "api_key": "your_api_key_here",
    "email": "your_account_email_here",
    "symbol": "Boom 300 Index",
    "current_price": 2500.0000,
    "min_1_candles":  [...],
    "min_5_candles":  [...],
    "min_15_candles": [...],
    "min_30_candles": [...],
    "hr_1_candles":   [...],
    "hr_4_candles":   [...]
}

Candle Format (OHLC)

{
    "open":  2490.0000,
    "high":  2510.0000,
    "low":   2480.0000,
    "close": 2500.0000
}

Response Format

{   
    "symbol": "Boom 300 Index",
    "signal": "BUY",
    "bias": "BULLISH"
}

Field Explanation
  • symbol: The financial instrument for which the signal is generated
  • signal: BUY or SELL decision
  • bias: Market direction (BULLISH / BEARISH / SIDEWAYS)
Important Notes
  • You can analyse more than one symbol (asset) but you can only send one POST request after every 30 seconds
  • All timeframes must be provided for accurate signal generation
  • Recommended: 200 – 300 candles per timeframe
  • Invalid symbols will return HTTP 400
  • Ensure JSON format is correct when sending request