Login Page - Create Account

Support Board


Date/Time: Mon, 16 Sep 2024 19:15:08 +0000



Post From: [User Discussion] - Scroll chart by chart through a chartbook at timed intervals.

[2024-07-10 17:16:29]
User14953 - Posts: 232
Use at your own risk though, using macro recorders is kinda spooky. When your cursor starts doing stuff on it's own it's unsettling, especially with a trading platform open.

; AutoHotkey script to select Sierra Chart window and simulate F9 keypress

; The name of the Sierra Chart window (adjust if necessary)
windowTitle := "Sierra Chart"

; Activate the Sierra Chart window
IfWinExist, %windowTitle%
{
WinActivate
; Wait for the window to become active
WinWaitActive, %windowTitle%
; Simulate the F9 keypress
Send, {F9}
}
else
{
MsgBox, Sierra Chart is not running.
}
Date Time Of Last Edit: 2024-07-10 17:23:32