jrhode666/pumpfun-scorer
0
Multi-Indicator Z-Score Scorer
Pure Pine Script port — no ML, no entity tracking. Technical analysis only.
How it works
- Compute 4 indicators on close prices:
- RSI (default 14)
- MACD histogram (12/26/9)
- Stochastic %K (14/3)
- Trend (close − EMA 50)
- Normalize each to a z-score over a rolling lookback window (default 100)
- Weighted sum = composite z-score
- Signals:
- Buy when composite crosses above
buy_level(default 1.5) - Sell when composite crosses below
sell_level(default −1.5)
Input formats
CSV upload — needs a close column, optional high and low
Manual prices — comma or newline separated numbers (min 20)
Source
Python port of multi_indicator_zscore.pine. All indicator math matches Pine's built-ins: ta.rsi, ta.macd, ta.stoch, ta.ema, ta.sma, ta.stdev, ta.crossover, ta.crossunder.
