Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

surfagent-tradingview表面活性剂交易视图

Agent Skill

surfagent-tradingview 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,095

周安装

124

GitHub Stars

公开资料未说明

下载量

1,002
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:surfagent-tradingview(表面活性剂交易视图)
来源仓库:https://github.com/surfagentapp/surfagent-tradingview
安装命令:
openclaw skills install surfagent-tradingview
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install surfagent-tradingview

简介

SurfAgent 的 TradingView 平台技能,涵盖图表工作流程、证明规则、拦截器以及何时在通用浏览器控件上使用 TradingView 适配器。

SKILL.md

name
tradingview
description
TradingView platform skill for SurfAgent, covering chart workflows, proof rules, blockers, and when to use the TradingView adapter over generic browser control.
version
1.0.0
metadata
openclaw
homepage
https://surfagent.app
emoji
📈

TradingView

TradingView-specific operating skill. Use this with browser-operations, surfagent-perception, and surfagent-mcp-selection.

This skill teaches agents how to work TradingView without treating a live chart like a generic webpage, guessing at chart state, or claiming technical-analysis results without proof.

1. Use this skill for

  • chart state inspection
  • symbol, timeframe, and chart-type changes
  • quote and OHLCV reads
  • indicator and study-value inspection
  • screenshots and export flows
  • alert setup support
  • drawing workflows
  • Pine editor workflows
  • watchlist reads and updates
  • deciding when to use the TradingView adapter instead of generic browser control

2. Tool preference

Use this order:

  1. TradingView adapter state/data tools
  2. TradingView adapter action tools
  3. SurfAgent perception for visual confirmation
  4. targeted browser evaluation only when needed
  5. raw generic browser actions as fallback

Verdict: if the task is about chart state, market data, indicators, Pine, alerts, or drawings, the TradingView adapter should usually win.

3. TradingView truths that matter

TradingView is not a normal DOM-first app.

It has:

  • chart widget state hidden behind app internals
  • dynamic panes, dialogs, and side panels
  • editor surfaces that are not plain textareas
  • actions where a visible chart is not proof the requested state applied
  • premium-gated features that can look like broken automation

Important: clicking around the UI is usually the dumbest path. If the adapter can read or set chart state directly, use it.

4. Core TradingView loop

Default loop:

  1. confirm TradingView is open and chart-ready
  2. read current chart state
  3. apply one chart change or extract one data view
  4. verify the changed state or rendered chart
  5. continue only if the chart settled into the expected mode

5. Verified chart workflow

Known-good pattern:

  • run tv_health_check
  • inspect tv_chart_state
  • set symbol, timeframe, or chart type with adapter verbs
  • re-read tv_chart_state
  • if the task is visual, capture tv_screenshot or use perception
  • if the task is analytical, pull tv_quote, tv_ohlcv, tv_indicators, or tv_study_values

Do not claim a chart change succeeded from navigation alone.

6. Proof rules

For TradingView, success requires evidence from the right layer.

  1. state proof

- tv_health_check says TradingView is open and chart-ready - tv_chart_state shows the expected symbol, interval, or chart type

  1. data proof

- quote, OHLCV, indicator, study, alert, drawing, or watchlist output matches the requested target

  1. visual proof when the task is visual

- tv_screenshot, tv_export_image, or perception confirms the rendered chart or dialog

Good proof examples:

  • timeframe change verified by tv_chart_state
  • support line creation verified by tv_drawings_list plus screenshot
  • Pine compile verified by compile result and error-free editor state
  • alert setup verified by visible alert dialog or tv_alert_list

Bad proof:

  • page loaded
  • click succeeded
  • a toolbar button existed
  • no exception was thrown

7. When to use the TradingView adapter

Prefer the TradingView adapter for:

  • opening TradingView
  • health/readiness checks
  • chart state reads
  • symbol, timeframe, and chart-type changes
  • price and OHLCV extraction
  • indicator and study-value reads
  • chart screenshots and export attempts
  • alert listing and alert-dialog opening
  • drawing creation/listing/clearing
  • Pine editor open, source set, compile, and error inspection
  • watchlist reads and watchlist add flows

Current adapter verbs include:

  • tv_health_check
  • tv_open
  • tv_chart_state
  • tv_set_symbol
  • tv_set_timeframe
  • tv_set_chart_type
  • tv_quote
  • tv_ohlcv
  • tv_indicators
  • tv_study_values
  • tv_screenshot
  • tv_export_image
  • tv_alert_list
  • tv_alert_create
  • tv_draw_horizontal
  • tv_drawings_list
  • tv_drawings_clear
  • tv_pine_open_editor
  • tv_pine_set_source
  • tv_pine_compile
  • tv_pine_get_errors
  • tv_watchlist
  • tv_watchlist_add

8. When generic browser control is still acceptable

Use targeted browser control when:

  • you need a one-off UI probe the adapter does not expose
  • you must inspect a premium/paywall/modal surface visually
  • you need narrow confirmation of a rendered label, menu, or pane
  • the adapter returned ambiguous state and a screenshot can settle it

Even then:

  • keep the scope narrow
  • do not rediscover chart state from scratch if adapter state exists
  • return to adapter-level proof after the UI step when possible

9. Chart workflows

Symbol/timeframe/chart type

Use:

  1. tv_chart_state
  2. tv_set_symbol or tv_set_timeframe or tv_set_chart_type
  3. tv_chart_state again
  4. optional screenshot if the chart appearance matters

Data extraction

Use:

  1. tv_chart_state
  2. tv_quote or tv_ohlcv
  3. tv_indicators or tv_study_values if the task depends on studies

Visual chart evidence

Use:

  1. adapter state/data first
  2. tv_screenshot for browser render proof
  3. tv_export_image when native export quality matters and the flow is supported

10. Pine workflows

Use the adapter, not raw typing, for Pine work.

Default loop:

  1. tv_pine_open_editor
  2. tv_pine_set_source
  3. tv_pine_compile
  4. tv_pine_get_errors
  5. screenshot or perception if the rendered study placement matters

Proof standard:

  • source actually set
  • compile attempted
  • error state captured
  • if successful, resulting indicator/study is visible in chart state or chart render

11. Alerts and drawings

For alerts:

  • use tv_alert_list to inspect current state
  • use tv_alert_create to open the flow
  • verify the dialog or resulting alert state visibly
  • do not pretend the alert is fully created if the UI still needs human confirmation

For drawings:

  • use tv_draw_horizontal for support/resistance style actions
  • verify with tv_drawings_list
  • add screenshot proof when line placement matters

12. Common blockers

Watch for:

  • TradingView tab not open
  • chart widget not ready yet
  • wrong symbol namespace or malformed ticker
  • delayed chart settlement after symbol/timeframe changes
  • paywalled indicators or alerts
  • editor panel not actually open
  • compile errors in Pine
  • modal or side-panel state obscuring the chart
  • stale or poisoned tab after retries

When blocked:

  • name the blocker plainly
  • say whether it is retryable, adapter-gap, account-tier-limited, or human-blocked
  • do not quietly downgrade the proof bar

13. Token-efficiency rules for TradingView

Prefer:

  • adapter state over DOM scraping
  • adapter market data over screenshot-reading for numeric values
  • one post-action verification read over repeated broad chart probes
  • screenshots only when a visual claim must be proven

Avoid:

  • giant DOM dumps for chart data
  • reading candles from pixels when tv_ohlcv exists
  • clicking through menus to discover state already exposed by the adapter
  • repeated full visual passes when a state re-read would prove the change faster

14. Minimal TradingView checklist

Before claiming a TradingView task done, confirm:

  • correct tab
  • chart ready
  • correct symbol/timeframe/chart type
  • requested action executed
  • adapter state or data confirms it
  • visual proof captured if the task was visual
  • blockers, limits, or human-confirm steps called out explicitly

15. Relationship to other docs

Use alongside:

  • browser-operations for universal browser rules
  • surfagent-perception for screenshots and visual state diffing
  • surfagent-mcp-selection for layer choice discipline
  • the surfagent-tradingview adapter docs for concrete MCP setup and verb behavior

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.08%
按下载量换算822

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills