Ben Sabella
Ben Sabella
I am using an M1 Mac but the issue still persists on that version
Try this ``` def getGatewayIP(): global stopAnimation gws = netifaces.gateways() default_gateway = gws.get('default', {}).get(netifaces.AF_INET) if default_gateway: return default_gateway[0] else: return None ```
Try this new function I wrote ``` def getGatewayIP(): global stopAnimation gws = netifaces.gateways() default_gateway = gws.get('default', {}).get(netifaces.AF_INET) if default_gateway: return default_gateway[0] else: return None ```
the only thing close to that, that i have done is using zenrows then embedding json with code that handles the websocket stuff then returns the page with the necessary...
Gotcha, i'll work on it thank you for the suggestion
> Add feature to update stoploss and take profit Done - I have pushed it to main branch
> personally i would like a simpler system of setting up things like Take profits and stop losses when i set a market order. > > I am going to...
> awesome, saw the code changes to that TP SL thing zleki, just thinking the "examples" buy stuff needs to be updated now You're right, i'll edit them thanks.
> Would like to get market data Unfortunately it cannot be done due to their api restrictions
> is there anyway I can submit trailing stop loss with if then in order /modify order Yeah but calculations must be done server side because dxtrade doesn't offer trailing...