mcdallas / wallstreet

Real time stock and option data.
MIT License
1.33k stars 201 forks source link

LookupError: Ticker symbol not found. Try adding the exchange parameter #20

Closed moongraber closed 6 years ago

moongraber commented 6 years ago

Hi

this package seems very interesting, I tried using it with Stock with ticker MTCH

tried: s = Stock('MTCH')

LookupError: Ticker symbol not found. Try adding the exchange parameter

s = Stock('MTCH',exchange="NASDAQ")

LookupError: Ticker symbol not found. Try adding the exchange parameter

s = Stock('MTCH',exchange="NASD") LookupError: Ticker symbol not found. Try adding the exchange parameter

tried: pip install --upgrade git+https://github.com/mcdallas/wallstreet.git

got the same error in all three cases

mcdallas commented 6 years ago

@moongraber unfortunately Google Finance API has being discontinued. The only way to use this module atm is to use the source='yahoo' parameter which makes it pull the prices from Yahoo Finance instead. Keep in mind that in some cases Yahoo Finance quotes are delayed by up to 15 minutes.

moongraber commented 6 years ago

ok thanks !