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% |
|---|---|
| Sharpe | 0.23 |
| Max drawdown | 5.5% |
| Profit factor | 1.89 |
| Win rate | 36.4% |
| Trades | 11 |
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"
}