Click actions
Click a button or control on the page for you — once or several times — from the trading journal extension toolbar or trade form.
What you get
Click actions save repetitive page clicks. Common uses include toolbar controls on a chart site you enabled.
How to set one up
Point the action at the element to click. Optionally set how many times to click and a short pause between clicks so the page can keep up.
Where the button appears
Choose toolbar placement to show the action in the extension navbar, or keep it on the open/close trade form panel.
Multiple steps
Content can be one object or a JSON array of clicks. Each array item can set selector, times, spacingMs, and optional waitMs after that click. Mix in fillData steps by setting action on that item.
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
}