pumpfun-scorer / README.md
jrhode666
Python 3.11 + gradio 4.44.1 + simplified UI
2026221
|
Raw
History Blame Contribute Delete
1.12 kB

A newer version of the Gradio SDK is available: 6.20.0

Upgrade
metadata
title: Multi-Indicator Z-Score Scorer
emoji: πŸ“Š
colorFrom: indigo
colorTo: purple
sdk: gradio
sdk_version: 4.44.1
python_version: 3.11
app_file: app.py
pinned: false
license: mit

Multi-Indicator Z-Score Scorer

Pure Pine Script port β€” no ML, no entity tracking. Technical analysis only.

How it works

  1. Compute 4 indicators on close prices:

    • RSI (default 14)
    • MACD histogram (12/26/9)
    • Stochastic %K (14/3)
    • Trend (close βˆ’ EMA 50)
  2. Normalize each to a z-score over a rolling lookback window (default 100)

  3. Weighted sum = composite z-score

  4. 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.