CoolFace
Apppublic

jrhode666/pumpfun-scorer

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes
App README

Multi-Indicator Z-Score Scorer

Pure Pine Script port — no ML, no entity tracking. Technical analysis only.

How it works

  1. 1.Compute 4 indicators on close prices:
  2. 2.RSI (default 14)
  3. 3.MACD histogram (12/26/9)
  4. 4.Stochastic %K (14/3)
  5. 5.Trend (close − EMA 50)
  1. 1.Normalize each to a z-score over a rolling lookback window (default 100)
  2. 2.Weighted sum = composite z-score
  3. 3.Signals:
  4. 4.Buy when composite crosses above buy_level (default 1.5)
  5. 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.