Journal actions / click
Click actions
Click actions click a DOM element one or more times with optional spacing. Use toolbar location for navbar buttons such as chart replay forward.
Content shape
selector is required. times and spacingMs are optional. When times is omitted, the runner performs a single click.
Toolbar placement
Set location to toolbar so the button appears in the extension navbar row instead of the trade form panel.
Timing
spacingMs waits between repeated clicks. Use this to pace automation that would otherwise fire too quickly for the host page.
Examples
Clicks the forward button 12 times with a 500ms delay between each click. Import this as a full journal action, or copy the content object into an existing click action.
{
"name": "Replay fast forward",
"site": "*.tradingview.com",
"location": "openPosition",
"action": "click",
"iconId": "text",
"content": {
"selector": "[class*=controls__control_type_forward] span",
"times": 12,
"spacingMs": 500
},
"enabled": true,
"sortOrder": 0
}