[AHK] Obtain the upper and lower limit prices of the flush order interface

The red value is the upper limit for buying, and the value in green is the lower limit for selling.

If    (WinExist(ahk_class #32770,"卖出") or WinExist(ahk_class #32770,"买入"))
{
    ControlGetText,上限,Static14
    ControlGetText,下限,Static15
}
MsgBox 上限:%上限%`n下限:%下限%

Example with AutoHotkey runtime environment

Guess you like

Origin blog.csdn.net/liuyukuan/article/details/128876499