> What kind of tool do you want?  Getting quotes is the easy part:
>
> import urllib
> symbols = 'ibm jpm msft nok'.split()
> quotes = urllib.urlopen( 'http://finance.yahoo.com/d/quotes.csv?s='+
>          '+'.join(symbols) + '&f=l1&e=.csv').read().split()
> print dict(zip(symbols, quotes))
>
> The hard part is raising capital and deciding what to buy, sell, or
> hold.
>
> Raymond

Yeah, I have something that pulls quotes. So the data isn't hard to
get, but I'm not really interested in building the graphs. I was
hoping to find something already built with the common indicators
already built in that I could add my own to.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to