Any windows app out there that would read aloud a quote continuously

in python you can do the following and feed in midprice
Code:
import pyttsx

engine = pyttsx.init()
engine.say("SPY is %s"%(midprice))
engine.runAndWait()
 
In AmiBroker you could do something along following lines in order to say something in some interval of your choice.

Code:
if( (Now(4) % 100) % 6 == 0 ) { // say something every 6 seconds of a minute
    Say( StrFormat( "S P Y last quote is %1.2f", LastValue(C) ) ); // tell last saved price of SPY
    // alternatively use
    // Say( Name() + StrFormat( " last price is %1.2f", GetRTData("Last") ) ); // tell last trade price of a symbol
    /// @link https://www.amibroker.com/guide/afl/getrtdata.html
    // etc.
}
 
Back
Top