JD
JD
Thanks @dadadel , Also, I was wondering if there's an option to add types on the same line that a parameter is defined within the docstr for ReStructuredText ? For...
I created a personal [python package](https://github.com/joeld1/project-manager) where I practice replacing bash scripts and improve my use of `os.subprocess` (actively being refactored and has been mainly tested on my Mac M1)....
Hello, I'm fairly new to this package so I'm using the [Petstore Swagger API](https://petstore.swagger.io/#/) to practice. Unfortunately, I'm also trying to upload a file but I'm unsure on how to...
I have the same issue on #1670
It works for me if you use: ```python options = uc.ChromeOptions() options.headless = False # or True driver = uc.Chrome(options=options) ```
@justindavies I think this might be related to #429 , When you call `r.order_buy_limit` which has a signature of: `order_buy_limit(symbol, quantity, limitPrice, account_number=None, timeInForce='gtc', extendedHours=False, jsonify=True)` That method calls `order(symbol,...
That's strange. I usually also provide this and they go through ``` extendedHours = True, market_hours='all_day_hours', timeInForce='gtc' ```
It should be possible using the `get_latest_price` method. `get_latest_price` already includes extended hours by default. 
Any updates on this issue? I upgraded to 3.0.6 using poetry but wasn't able to place an order_sell_limit order with `market_hours = 'all_day_hours'` passed in.
Huh, I was using a mac for this