ICANTFINDAUSERNAMEATALL

Results 31 comments of ICANTFINDAUSERNAMEATALL

I had a similar issue but I realized that paper webull doen't have it because the trading simulator doesn't have trailing stops. :( you'll have to use the actual webull...

you can just run a for loop with all the bars. multicoring doesn't work for me but multithreading might.

Are you sure? How do you do that? I can't seem to be able to place option trades on paper trading

@tedchou12 It works on the Webull Desktop App now. ![image](https://user-images.githubusercontent.com/55333717/189511790-c963cc5b-c81c-43b2-9c97-fec16a0bf4f6.png) I tried updating it myself but I have no clue how networking works and when the order is placed, there...

Ahh. I see. Thats probably why I was so confused.

I don't know if it will be exactly the same as webull but you can use python stock indicators: https://daveskender.github.io/Stock.Indicators.Python/indicators/Macd/#content When I use it, it is sometimes off by a...

I made my own function for the timeouts. def get_bars(wb, stock=None, tId=None, interval='m1', count=1, extendTrading=0, timeStamp=None): # add fix try: stock = wb.get_bars(stock=stock, tId=tId, interval=interval, count=count, extendTrading=extendTrading, timeStamp=timeStamp) except TimeoutError:...

the get_quote() methord works. I used this to get the ask/bid: print(wb.get_quote("SPY")['askList']) print(wb.get_quote("SPY")['bidList']) I didn't modify the class so it should work for you.

Can you send it over? I'll try to add it but I'm not sure if it will work as ted said.

In the last line, you need a lmtPrice instead of just price, I believe. Lmk if it works