{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tradingview-screener",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tradingview-screener",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "assets/signal-template.yaml",
      "install.sh",
      "references/computed-signals-guide.md",
      "references/field-presets.md",
      "references/strategy-templates.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/tradingview-screener",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "TradingView Screener",
        "body": "Screen stocks, crypto, forex, bonds, futures, and coins using TradingView's market data. Zero auth required."
      },
      {
        "title": "Setup (Run Once)",
        "body": "Before first use, run the install script to create a venv and install dependencies:\n\nbash skills/tradingview-screener/install.sh\n\nThis creates .venv/ inside the skill directory with all required packages."
      },
      {
        "title": "Execution",
        "body": "All scripts use the skill's own venv:\n\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/<script>.py [args]\n\nWindows:\n\nskills/tradingview-screener/.venv/Scripts/python.exe skills/tradingview-screener/scripts/<script>.py [args]"
      },
      {
        "title": "Modes",
        "body": "ModeDescriptionScriptScreenOne-time scan with filters, columns, sortscreen.pySignalYAML-driven signal detection (pre-filters + computed signals)signal-engine.py"
      },
      {
        "title": "Screen Mode",
        "body": "skills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/screen.py \\\n  --asset-class stock --limit 20 \\\n  --filters '[{\"field\":\"MARKET_CAPITALIZATION\",\"op\":\">\",\"value\":1000000000}]' \\\n  --columns NAME,PRICE,CHANGE_PERCENT,VOLUME \\\n  --sort-by VOLUME --sort-order desc"
      },
      {
        "title": "Signal Mode",
        "body": "# List available signals\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/signal-engine.py --list\n\n# Run a signal\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/signal-engine.py --signal golden-cross"
      },
      {
        "title": "Asset Classes",
        "body": "ClassScreenerField EnumstockStockScreenerStockFieldcryptoCryptoScreenerCryptoFieldforexForexScreenerForexFieldbondBondScreenerBondFieldfuturesFuturesScreenerFuturesFieldcoinCoinScreenerCoinField"
      },
      {
        "title": "Signal Types (Computed)",
        "body": "TypeDescriptionKey ParamscrossoverFast field crosses slow fieldfast, slow, directionthresholdField crosses a valuefield, op, valueexpressionPandas expression on DataFrameexprrangeField between min/max boundsfield, min, max"
      },
      {
        "title": "Filter Operators",
        "body": ">, >=, <, <=, ==, !=, between (value: [min, max]), isin (value: [...])"
      },
      {
        "title": "Common Stock Fields",
        "body": "NAME, PRICE, CHANGE_PERCENT, VOLUME, MARKET_CAPITALIZATION, SECTOR,\nSIMPLE_MOVING_AVERAGE_50, SIMPLE_MOVING_AVERAGE_200, RELATIVE_STRENGTH_INDEX_14,\nMACD_LEVEL_12_26, AVERAGE_VOLUME_30_DAY\n\nUse StockField.search(\"keyword\") in Python to discover more fields (13,000+ available)."
      },
      {
        "title": "Pre-built Signals",
        "body": "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"
      },
      {
        "title": "Output Format",
        "body": "**Stock Screener** | 15 results | Sorted by VOLUME desc\n\n| NAME | PRICE | CHANGE_PERCENT | VOLUME |\n|------|-------|----------------|--------|\n| AAPL | 185.50 | 2.3 | 80000000 |\n..."
      },
      {
        "title": "Timeframes",
        "body": "1, 5, 15, 30, 60, 120, 240, 1D, 1W, 1M\n\nPass --timeframe 60 to apply hourly interval to technical indicators."
      },
      {
        "title": "References",
        "body": "API Guide - Screener types, filters, field discovery\nSignals Guide - YAML schema, signal type configs\nStrategy Templates - Pre-built screening strategies\nField Presets - Common field groups per asset class"
      }
    ],
    "body": "TradingView Screener\n\nScreen stocks, crypto, forex, bonds, futures, and coins using TradingView's market data. Zero auth required.\n\nSetup (Run Once)\n\nBefore first use, run the install script to create a venv and install dependencies:\n\nbash skills/tradingview-screener/install.sh\n\n\nThis creates .venv/ inside the skill directory with all required packages.\n\nExecution\n\nAll scripts use the skill's own venv:\n\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/<script>.py [args]\n\n\nWindows:\n\nskills/tradingview-screener/.venv/Scripts/python.exe skills/tradingview-screener/scripts/<script>.py [args]\n\nModes\nMode\tDescription\tScript\nScreen\tOne-time scan with filters, columns, sort\tscreen.py\nSignal\tYAML-driven signal detection (pre-filters + computed signals)\tsignal-engine.py\nQuick Start\nScreen Mode\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/screen.py \\\n  --asset-class stock --limit 20 \\\n  --filters '[{\"field\":\"MARKET_CAPITALIZATION\",\"op\":\">\",\"value\":1000000000}]' \\\n  --columns NAME,PRICE,CHANGE_PERCENT,VOLUME \\\n  --sort-by VOLUME --sort-order desc\n\nSignal Mode\n# List available signals\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/signal-engine.py --list\n\n# Run a signal\nskills/tradingview-screener/.venv/bin/python3 skills/tradingview-screener/scripts/signal-engine.py --signal golden-cross\n\nAsset Classes\nClass\tScreener\tField Enum\nstock\tStockScreener\tStockField\ncrypto\tCryptoScreener\tCryptoField\nforex\tForexScreener\tForexField\nbond\tBondScreener\tBondField\nfutures\tFuturesScreener\tFuturesField\ncoin\tCoinScreener\tCoinField\nSignal Types (Computed)\nType\tDescription\tKey Params\ncrossover\tFast field crosses slow field\tfast, slow, direction\nthreshold\tField crosses a value\tfield, op, value\nexpression\tPandas expression on DataFrame\texpr\nrange\tField between min/max bounds\tfield, min, max\nFilter Operators\n\n>, >=, <, <=, ==, !=, between (value: [min, max]), isin (value: [...])\n\nCommon Stock Fields\n\nNAME, 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\n\nUse StockField.search(\"keyword\") in Python to discover more fields (13,000+ available).\n\nPre-built Signals\nSignal\tFile\tDescription\nGolden Cross\tstate/signals/golden-cross.yaml\tSMA50 above SMA200 (bullish)\nOversold Bounce\tstate/signals/oversold-bounce.yaml\tRSI < 30 + price rising\nVolume Breakout\tstate/signals/volume-breakout.yaml\tVolume > 2x avg + momentum\nOutput Format\n**Stock Screener** | 15 results | Sorted by VOLUME desc\n\n| NAME | PRICE | CHANGE_PERCENT | VOLUME |\n|------|-------|----------------|--------|\n| AAPL | 185.50 | 2.3 | 80000000 |\n...\n\nTimeframes\n\n1, 5, 15, 30, 60, 120, 240, 1D, 1W, 1M\n\nPass --timeframe 60 to apply hourly interval to technical indicators.\n\nReferences\nAPI Guide - Screener types, filters, field discovery\nSignals Guide - YAML schema, signal type configs\nStrategy Templates - Pre-built screening strategies\nField Presets - Common field groups per asset class"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hiehoo/tradingview-screener",
    "publisherUrl": "https://clawhub.ai/hiehoo/tradingview-screener",
    "owner": "hiehoo",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}