Wave Grid

RSI reversal strategy. Buy when RSI drops below 30, sell when RSI rises above 70.

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

Reliability

Looks solid — from 45 trades.

Backtest result

Return-1.5%
Sharpe-0.07
Max drawdown3.9%
Profit factor0.86
Win rate37.8%
Trades45

Run on ETH/USDT 1h · 6m · 4320 bars · data from deepcoin. Frozen at publish time, captured 2026-07-14.

Strategy rules

{
  "exit": {
    "logic": "AND",
    "conditions": [
      {
        "value": 70,
        "params": {
          "period": 14
        },
        "operator": ">",
        "indicator": "RSI"
      }
    ]
  },
  "name": "Wave Grid",
  "risk": {
    "stopLoss": 3,
    "takeProfit": 8,
    "positionSize": 10
  },
  "entry": {
    "side": "long",
    "logic": "AND",
    "conditions": [
      {
        "value": 30,
        "params": {
          "period": 14
        },
        "operator": "<",
        "indicator": "RSI"
      }
    ]
  },
  "source": "preset",
  "version": "1.0"
}

All published strategies