Traders Tech Tools (TTT): Another tool for speeding up a traders process. The tool can be used to copy and transfer a symbol from any source into a defined DAS montage. Its developed using AutoHotKey with the editing tool being Scite4AutoHotKey.
This is version 1.0, next version will have Voice Recognition so the spoken word can be used to enter the symbol.
Any comments, feedback, criticisms are welcomed. Community enhancements are also welcomed. More TTT will be coming over the next months.
--------------------------------------------------------------Code Below---------------------------------------------------------------------
/*
AutoHotKey script to send a highlighted %SYMB% into the DAS Main Montage from any externally selected source i.e. Chat Room, News Websites, Docs and emails, other trading platforms.
*/
#SingleInstance Force
#NoTrayIcon
; Select text first with mouse then proceed with this hotkey.....SHIFT + Right Mouse Button
+RButton:: ; Holding SHIFT with right mouse button to activate,
clipboard := "" ; Empty the clipboard.
KeyWait, RButton ; On release of right mouse button
send, ^c ; Copy selected text to the clipboard
Sleep, 1000 ; Sometimes copy seems delayed, so we just wait for one second
WinActivate, ahk_exe DasTrader.exe ; Ensure DASTrader.exe is the active window
send, !r ; Run the DAS hotkey to select Research_Screen TAB
send, !c ; Run the DAS hotkey to FocusWindow to the Main Montage of Research TAB
send, ^v ; Paste %SYMB% text from clipboard
send, {Enter} ; Press Enter, Charts will appear in chart windows
return ; End
/* NOTE: Mouse is configured to control 98% of all activity. Generally do not need my keyboard as it slows down the trading processes. Keyboard is only required to type alphanumeric characters, but with this quick copy/paste hotkey function that is eliminated for symbols. */
----------------------------------------------------------------------------End-------------------------------------------------------------------------------
@Justin @KyleK29, @Paul aka Aurbano