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

Discussion in 'Trading Software' started by Cdntrader, Jun 1, 2016.

  1. Any windows app out there that would read aloud a quote continuously like the SPY?

    Thx
     
  2. just21

    just21

  3. just21

    just21

  4. just21

    just21

    Ask google now for a stock price.

    Ask Microsoft cortana in windows 10 for a stock price.
     
  5. just21

    just21

  6. just21

    just21

  7. 2rosy

    2rosy

    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()
     
  8. Handle123

    Handle123

    After awhile, unless you concentrating real hard, you don't even hear it, it becomes like everyday noises.
     
  9. fxshrat

    fxshrat

    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.
    }
    
     
  10. That would sound interesting during a fast market.
     
    #10     Jun 1, 2016