knlklabacka

Results 8 comments of knlklabacka

I'm having the same issue.

Was there a fix for this? Or was this issue resolved? I'm having the same error as of today.

I'm wondering if anyone has figured this issue out? Wondering if the API URL has been changed. Do motions show up under the ding URL? for example I see the...

I would be interested in the delete feature also!

I've noticed that IEX is sending back None on some of year1ChangePercent values. I'm thinking Scipy.stats.percentileofscore does not like the None value. I'm looking into how to replace None values...

You can try to add `for symbol_string in symbol_strings: batch_api_call_url = f'{sandbox_base_url}/stock/market/batch/?types=stats,quote&symbols={symbol_string}&token={IEX_CLOUD_API_TOKEN}' data = requests.get(batch_api_call_url).json() for symbol in symbol_string.split(','): hqm_dataframe = hqm_dataframe.append( pd.Series([symbol, data[symbol]['quote']['latestPrice'], 'N/A', data[symbol]['stats']['year1ChangePercent'], 'N/A', data[symbol]['stats']['month6ChangePercent'], 'N/A', data[symbol]['stats']['month3ChangePercent'],...

I have add a link to my page that show the code for this [iex_2.py](https://github.com/knlklabacka/Public/blob/main/iex_2.py) Let me know if that helps? The page is just partial code. Once my laptop...

you can either create a variable sandbox_base_url at the top of your page or hard code the url in place of {sandbox_base_url} >sandbox_base_url = 'https://sandbox.iexapis.com/stable' If you are using Jupyter...