wallstreet icon indicating copy to clipboard operation
wallstreet copied to clipboard

Real time stock and option data.

Results 21 wallstreet issues
Sort by recently updated
recently updated
newest added

Hi, Can we fetch currecny conversion rates using wallstreet api? If yes, please suggest me how it will be?

the link https://query2.finance.yahoo.com/v7/finance/options/ now is stop using? when i run the examples,show this error

First of all, thank you for putting this API together. It's been fun becoming familiar with it. My use case for this is a bot where people are passing requests...

Hi Im having the following issue just by trying to create a Stock('GOOG'): --------------------------------------------------------------------------- JSONDecodeError Traceback (most recent call last) in () ----> 1 s = ws.Stock('GOOG') ~\Anaconda3\lib\site-packages\wallstreet\wallstreet.py in __init__(self,...

` return self.S*sqrt(self.T)*norm.pdf(d1)*exp(-self.r*self.T) ` fprime is not correct, it should be ` return self.S*sqrt(self.T)*norm.pdf(d1)*exp(-self.q*self.T) `

Probably Google doesn't provide it, so here goes a silly question: Will there be any change to get volume for Stock("TICK")? Otherwise thank you for the code, works smoothly.

I'm running into an issue where the theta values for short duration options are about 25-30% off of what I can see on my ThinkorSwim platform. The absolute value of...

call = Call('SPY', d=18, m=12, y=2020) print(call.strikes[30:40]) call.set_strike(211) print(call.ask) call.set_strike(212) print(call.ask) call.set_strike(213) print(call.ask) Output: (205, 207, 208, 209, 210, 211, 212, 213, 214, 215) 0.0 79.43 0.0 This seems to...

Hello! 1) In most of my cases by calling `wallstreet_obj.delta()` causes this warning: C:\Program Files\Python38\lib\site-packages\wallstreet\blackandscholes.py:58: **RuntimeWarning**: divide by zero encountered in double_scalars d1 = (log(S/K) + (r - q +...

I have been using Wallstreet successful for the last few months. This weekend, I started getting the following error message: LookupError('Ticker symbol not found. Try adding the exchange parameter') LookupError:...