Crypto Entry Exit Signal API

Sinyal BUY/SELL/WAIT plus level entry, stop-loss, dan take-profit berbasis ATR untuk satu aset crypto.

Base Information

  • BASE_URL_API: https://api.maelyn.eu/api
  • Path / Endpoint: /financial/crypto/entry-exit-signal
  • Method: GET
  • Credit Usage: 8

Authentication

x-maelyn-auth: YOUR_API_KEY

Description

Endpoint ini menggabungkan indikator harian (RSI, SMA/EMA, MACD, ATR, Bollinger) menjadi sinyal rule-based plus level entry/exit: stop-loss 2×ATR, TP1 1.5×ATR, TP2 3×ATR beserta risk-reward ratio.

Query Parameters

NameTypeRequiredDescription
symbolstringYesSimbol aset, contoh ETH.

Example Usage

GET /financial/crypto/entry-exit-signal?symbol=ETH

Success Response

{
  "success": true,
  "data": {
    "symbol": "ETHUSDT",
    "signal": "SELL",
    "indicators": {
      "last_price": 2687.08,
      "rsi_14": 62.4,
      "sma_20": 2650.0,
      "ema_20": 2660.0,
      "macd_bullish": false,
      "atr_14": 97.68,
      "bb_upper": 2750.0,
      "bb_lower": 2560.0,
      "volume_multiple": 1.1
    },
    "key_levels": {
      "support_30d": 2400.0,
      "resistance_30d": 2800.0,
      "dist_to_resistance_pct": 4.2,
      "dist_to_support_pct": 11.9
    },
    "atr_levels": {
      "entry": 2687.08,
      "stop_loss": 2491.72,
      "stop_loss_pct": -7.27,
      "take_profit_1": 2833.6,
      "take_profit_2": 2980.12,
      "risk_reward_tp1": 0.75,
      "risk_reward_tp2": 1.5
    },
    "disclaimer": "Sinyal dihitung dari indikator teknikal, bukan saran investasi."
  }
}

Playground