Any windows app out there that would read aloud a quote continuously like the SPY?
Thx
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.
}