# Send TradingView Strategy Settings 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": "tv-strategy-settings",
    "name": "TradingView Strategy Settings",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/mariuswang007/tv-strategy-settings",
    "canonicalUrl": "https://clawhub.ai/mariuswang007/tv-strategy-settings",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/tv-strategy-settings",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tv-strategy-settings",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "tv-strategy-settings",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T04:58:24.150Z",
      "expiresAt": "2026-05-17T04:58:24.150Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tv-strategy-settings",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tv-strategy-settings",
        "contentDisposition": "attachment; filename=\"tv-strategy-settings-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "tv-strategy-settings"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/tv-strategy-settings"
    },
    "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/tv-strategy-settings",
    "downloadUrl": "https://openagent3.xyz/downloads/tv-strategy-settings",
    "agentUrl": "https://openagent3.xyz/skills/tv-strategy-settings/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tv-strategy-settings/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tv-strategy-settings/agent.md"
  }
}
```
## Documentation

### 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

### 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:

Open settings dialog once
Modify each parameter sequentially (re-snapshot between changes if the dialog layout shifts)
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 "确定"/"取消"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mariuswang007
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T04:58:24.150Z
- Expires at: 2026-05-17T04:58:24.150Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/tv-strategy-settings)
- [Send to Agent page](https://openagent3.xyz/skills/tv-strategy-settings/agent)
- [JSON manifest](https://openagent3.xyz/skills/tv-strategy-settings/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/tv-strategy-settings/agent.md)
- [Download page](https://openagent3.xyz/downloads/tv-strategy-settings)