Welcome Guest, please sign in to participate in a discussion. | Search | Active Topics | |
Registered User Joined: 11/19/2015 Posts: 459
|
Hello. Is it possible to update the price data in v7 automatically? Is there a scheduling and/or automation function somewhere that I can't find?
Thank you.
|
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
No, there is no automatic update setting in version 7.
|
|
Registered User Joined: 11/19/2015 Posts: 459
|
Thank you.
|
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
People have successfully used AutoIT to automate TC2000 version 7:
-Bruce Personal Criteria Formulas TC2000 Support Articles
|
|
Registered User Joined: 5/23/2006 Posts: 75
|
QUOTE (Bruce_L)
People have successfully used AutoIT to automate TC2000 version 7:
AutoIT script. You can use Windows task scheduler to set up a task to run every day at 5pm or so.
; ========================== TC2000 update ==========================
If (WinExists("TC2000 version 7")) Then
;MsgBox(1, "Windows WinExists ", "TC2000 version 7");
Else
;MsgBox(1, "Windows Inactive", "No TC2000 version 7");
Run("C:\worden\TeleChart\TeleChart.exe")
Sleep(15000)
EndIf
If (WinExists("Daily Worden Reports")) Then
WinActivate("Daily Worden Reports");
Send("!o")
Endif
WinWait("TC2000 version 7");
WinActivate("TC2000 version 7");
Send("!du")
Send("{ENTER}")
Sleep(5000)
;;;;;;;;;;;;;;;;; May need to click OK for a dialog: (mostly on weekend)
WinWait ( "Updating TC2000")
WinWaitClose ( "Updating TC2000")
|
|
Registered User Joined: 11/19/2015 Posts: 459
|
Markhike, I'm sorry I didn't reply to this before. This is extremely helpful and works well! Thank you very much for submitting the script. I appreciate it.
|
|
Guest-1 |