mhawry
mhawry
That endpoint will only list open orders, not trades. To view your open positions you need to use the following and filter by symbol: `client.futures_position_information()`
You can view your open orders with the following: `client.futures_get_open_orders()` You can also filter by symbol: `client.futures_get_open_orders(symbol='BTCUSDT')` These will return the `orderId` which you can then use to cancel the...
I have read the CLA Document and I hereby sign the CLA
recheck
@andypiper thanks! Let me know if you have any questions/concerns.
Hello @andypiper just wondering if you had a chance to look into this. Thanks!
I just added a few more PHP samples. Is there someone at Twitter who can review this pull request? Thanks!
@morrow95 I just tested again and it works for me. Can you please share the code you are using and the error you are getting?
@morrow95 which of the samples required OAuth authorization? I'll look into it.
Using round_step_size with the tick size works. Here is the full code I'm using: ``` from binance.helpers import round_step_size def get_tick_size(symbol: str) -> float: info = client.futures_exchange_info() for symbol_info in...