# Send TradingView Screener to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tradingview-screener",
    "name": "TradingView Screener",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/hiehoo/tradingview-screener",
    "canonicalUrl": "https://clawhub.ai/hiehoo/tradingview-screener",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tradingview-screener",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tradingview-screener",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/signal-template.yaml",
      "install.sh",
      "references/computed-signals-guide.md",
      "references/field-presets.md",
      "references/strategy-templates.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tradingview-screener"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tradingview-screener",
    "downloadUrl": "https://openagent3.xyz/downloads/tradingview-screener",
    "agentUrl": "https://openagent3.xyz/skills/tradingview-screener/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tradingview-screener/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tradingview-screener/agent.md"
  }
}
```
## Documentation

### TradingView Screener

Screen stocks, crypto, forex, bonds, futures, and coins using TradingView's market data. Zero auth required.

### Setup (Run Once)

Before first use, run the install script to create a venv and install dependencies:

bash skills/tradingview-screener/install.sh

This creates .venv/ inside the skill directory with all required packages.

### Execution

All scripts use the skill's own venv:

skills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/<script>.py [args]

Windows:

skills/tradingview-screener/.venv/Scripts/python.exe skills/tradingview-screener/scripts/<script>.py [args]

### Modes

ModeDescriptionScriptScreenOne-time scan with filters, columns, sortscreen.pySignalYAML-driven signal detection (pre-filters + computed signals)signal-engine.py

### Screen Mode

skills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/screen.py \\
  --asset-class stock --limit 20 \\
  --filters '[{"field":"MARKET_CAPITALIZATION","op":">","value":1000000000}]' \\
  --columns NAME,PRICE,CHANGE_PERCENT,VOLUME \\
  --sort-by VOLUME --sort-order desc

### Signal Mode

# List available signals
skills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/signal-engine.py --list

# Run a signal
skills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/signal-engine.py --signal golden-cross

### Asset Classes

ClassScreenerField EnumstockStockScreenerStockFieldcryptoCryptoScreenerCryptoFieldforexForexScreenerForexFieldbondBondScreenerBondFieldfuturesFuturesScreenerFuturesFieldcoinCoinScreenerCoinField

### Signal Types (Computed)

TypeDescriptionKey ParamscrossoverFast field crosses slow fieldfast, slow, directionthresholdField crosses a valuefield, op, valueexpressionPandas expression on DataFrameexprrangeField between min/max boundsfield, min, max

### Filter Operators

>, >=, <, <=, ==, !=, between (value: [min, max]), isin (value: [...])

### Common Stock Fields

NAME, PRICE, CHANGE_PERCENT, VOLUME, MARKET_CAPITALIZATION, SECTOR,
SIMPLE_MOVING_AVERAGE_50, SIMPLE_MOVING_AVERAGE_200, RELATIVE_STRENGTH_INDEX_14,
MACD_LEVEL_12_26, AVERAGE_VOLUME_30_DAY

Use StockField.search("keyword") in Python to discover more fields (13,000+ available).

### Pre-built Signals

SignalFileDescriptionGolden Crossstate/signals/golden-cross.yamlSMA50 above SMA200 (bullish)Oversold Bouncestate/signals/oversold-bounce.yamlRSI < 30 + price risingVolume Breakoutstate/signals/volume-breakout.yamlVolume > 2x avg + momentum

### Output Format

**Stock Screener** | 15 results | Sorted by VOLUME desc

| NAME | PRICE | CHANGE_PERCENT | VOLUME |
|------|-------|----------------|--------|
| AAPL | 185.50 | 2.3 | 80000000 |
...

### Timeframes

1, 5, 15, 30, 60, 120, 240, 1D, 1W, 1M

Pass --timeframe 60 to apply hourly interval to technical indicators.

### References

API Guide - Screener types, filters, field discovery
Signals Guide - YAML schema, signal type configs
Strategy Templates - Pre-built screening strategies
Field Presets - Common field groups per asset class
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: hiehoo
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tradingview-screener)
- [Send to Agent page](https://openagent3.xyz/skills/tradingview-screener/agent)
- [JSON manifest](https://openagent3.xyz/skills/tradingview-screener/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tradingview-screener/agent.md)
- [Download page](https://openagent3.xyz/downloads/tradingview-screener)