Pulse Trend

MACD + RSI combo strategy. Buy when MACD histogram turns positive and RSI is above 50.

By STLab · Published 2026-06-11 · CC-BY-SA-4.0

Reliability

Read with caution — from 11 trades, fewer than the 30 a result needs to mean much.

Backtest result

Return+10.6%
Sharpe0.23
Max drawdown5.5%
Profit factor1.89
Win rate36.4%
Trades11

Run on AAPL 1h · 6m · 853 bars · data from yahoo. Frozen at publish time, captured 2026-07-15.

Strategy rules

{
  "exit": {
    "logic": "AND",
    "conditions": [
      {
        "value": 0,
        "params": {
          "fast": 12,
          "slow": 26,
          "signal": 9
        },
        "operator": "<",
        "indicator": "MACD"
      }
    ]
  },
  "name": "Pulse Trend",
  "risk": {
    "stopLoss": 5,
    "takeProfit": 12,
    "positionSize": 100
  },
  "entry": {
    "side": "long",
    "logic": "AND",
    "conditions": [
      {
        "value": 0,
        "params": {
          "fast": 12,
          "slow": 26,
          "signal": 9
        },
        "operator": ">",
        "indicator": "MACD"
      },
      {
        "value": 50,
        "params": {
          "period": 14
        },
        "operator": ">",
        "indicator": "RSI"
      }
    ]
  },
  "source": "preset",
  "version": "1.0"
}

All published strategies