โ† All skills
Tencent SkillHub ยท Productivity

TradingView Screener

Screen markets across 6 asset classes using TradingView data. API pre-filters + pandas computed signals. YAML-driven strategies.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Screen markets across 6 asset classes using TradingView data. API pre-filters + pandas computed signals. YAML-driven strategies.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, assets/signal-template.yaml, install.sh, references/computed-signals-guide.md, references/field-presets.md, references/strategy-templates.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 14 sections Open source page

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

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • references/computed-signals-guide.md Docs
  • references/field-presets.md Docs
  • references/strategy-templates.md Docs
  • install.sh Scripts
  • assets/signal-template.yaml Config