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

tv-strategy-settings电视策略设置

Agent Skill

tv-strategy-settings 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

19,253

周安装

827

GitHub Stars

1

下载量

6,748
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tv-strategy-settings(电视策略设置)
来源仓库:https://github.com/mariuswang007/tv-strategy-settings
安装命令:
openclaw skills install tv-strategy-settings
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install tv-strategy-settings

简介

tv-strategy-settings 用于 TradingView 图表页面的策略参数设置。

  • 适合在 OpenClaw 中调整止损、止盈等交易策略输入项。
  • 直接在当前图表页面打开并修改相关配置。
  • 需确认用户是否具备相应图表访问与编辑权限。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
tv-strategy-settings
description
Open and modify TradingView strategy settings on the current chart page. Use when: user wants to change strategy parameters, adjust inputs like stop-loss/take-profit/period/amount, modify strategy properties like initial capital/commission/slippage, or tune any strategy setting on TradingView. Supports natural language (e.g. '把止损改成2%') and exact parameter names. NOT for: creating new strategies, writing Pine Script code, or chart drawing.

TradingView Strategy Settings

Modify strategy parameters on an already-open TradingView chart page via browser automation.

Prerequisites

  • TradingView chart page must be open in the managed browser with a strategy loaded
  • Use BrowserTool with action tabs to find the TradingView tab first

Core Workflow

1. Locate the TradingView Tab

BrowserTool action=tabs

Find the tab with "TradingView" in the title. If multiple tabs match, pick the one with a chart URL (tradingview.com/chart/). Focus it:

BrowserTool action=focus tabId=<id>

2. Take Page Snapshot

BrowserTool action=snapshot format=ai

Identify the strategy panel at the bottom of the chart. Look for the strategy name in the "Strategy Tester" panel area.

3. Open Strategy Settings Dialog

The settings gear icon is located near the strategy name in the Strategy Tester panel header, or on the strategy overlay on the chart itself. Locate it via the snapshot and click:

BrowserTool action=click ref=<gear-icon-ref>

Alternative approaches if gear icon is not visible:

  • Double-click the strategy name on the chart overlay
  • Right-click the strategy name → select "Settings..."
  • Look for a "⚙" or settings icon adjacent to the strategy title in the Strategy Tester tab header

Wait for the dialog to appear:

BrowserTool action=wait type=text text="Inputs" timeout=5000

4. Navigate to the Correct Tab

The settings dialog has tabs: Inputs, Properties, Style, Visibility.

  • Inputs tab: User-defined parameters (input.*() in Pine Script) — stop-loss, take-profit, period lengths, thresholds, etc.
  • Properties tab: Strategy engine settings — initial capital, currency, order size, pyramiding, commission, slippage, margin, date range.
  • Style tab: Visual appearance.
  • Visibility tab: Timeframe visibility.

Parameter routing:

User saysTarget tab
止损 / stop loss / take profit / 周期 / period / length / threshold / amountInputs
初始资金 / initial capital / commission / 手续费 / slippage / 滑点 / pyramiding / 加仓 / order size / marginProperties
颜色 / color / line width / plot styleStyle

Click the appropriate tab:

BrowserTool action=click ref=<tab-ref>

5. Snapshot the Settings Panel

BrowserTool action=snapshot format=ai

This reveals all parameter names and their current values. The dialog content is organized by groups with input fields (number inputs, checkboxes, dropdowns, color pickers).

6. Locate the Target Parameter

For exact parameter names: Match directly against input labels in the snapshot.

For natural language: Map the user's description to the closest matching label. Common mappings:

Natural language (zh/en)Likely parameter labels
止损 / stop lossStop Loss, SL, Stop Loss %
止盈 / take profitTake Profit, TP, Take Profit %
周期 / period / lengthLength, Period, Lookback
初始资金 / initial capitalInitial Capital
手续费 / commissionCommission
滑点 / slippageSlippage
加仓 / pyramidingPyramiding
订单大小 / order sizeOrder Size

If ambiguous, take a snapshot and present the available parameters to the user for confirmation before modifying.

7. Modify the Parameter Value

For number/text inputs — triple-click to select all, then type new value:

BrowserTool action=click ref=<input-ref> clickCount=3
BrowserTool action=type ref=<input-ref> text="<new-value>"

For checkboxes:

BrowserTool action=click ref=<checkbox-ref>

For dropdowns — click to open, then click the desired option:

BrowserTool action=click ref=<dropdown-ref>
BrowserTool action=snapshot format=ai
BrowserTool action=click ref=<option-ref>

8. Apply Changes

Click the "Ok" or "确定" button to apply and close the dialog:

BrowserTool action=click ref=<ok-button-ref>

Or click "Apply" / "应用" to apply without closing (useful for batch changes).

9. Verify

Take a snapshot or screenshot to confirm the strategy has recalculated with the new parameters:

BrowserTool action=screenshot

Batch Modifications

When the user requests multiple parameter changes at once:

  1. Open settings dialog once
  2. Modify each parameter sequentially (re-snapshot between changes if the dialog layout shifts)
  3. Click "Ok" once at the end

Error Handling

  • Dialog not opening: Try double-clicking the strategy name on chart, or use keyboard shortcut
  • Parameter not found: Snapshot the full Inputs/Properties tabs and present available parameters to the user
  • Value rejected: TradingView may enforce min/max ranges — report the constraint to the user
  • Page loading: Use wait type=networkidle if the chart is still loading

Language Notes

  • TradingView UI language depends on user settings — parameter labels may be in English or Chinese
  • Always match against the actual labels shown in the snapshot, not assumed names
  • The dialog buttons may show as "Ok"/"Cancel" or "确定"/"取消"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.14%
按下载量换算4,801

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills