Ok I'm dealing with an issue I just cannot seem to troubleshoot. I'm placing an order and receiving a confirmation that it is resting
```{'status': 'ok', 'response': ('type': 'order', 'data': {'statuses': [{'resting': {'oid': 453132885959, 'cloid': ' 0x936993318dead2c3cbed5d16152aa0e3'}}, {'resting': {'oid': 453132885960, 'cloid': '0xfb8b94ff84a9eed5d52b45472c71ff14'}}]}}}```
But when I call open_orders(address, dex) it is not present. All of my other orders are there except this one. It only happens every few hours and causes my program to crash and for the life of me I cannot figure out why it is not showing up. I'm trading on the HYPE market and generally it has no problem placing orders
Ok I'm dealing with an issue I just cannot seem to troubleshoot. I'm placing an order and receiving a confirmation that it is resting
```{'status': 'ok', 'response': ('type': 'order', 'data': {'statuses': [{'resting': {'oid': 453132885959, 'cloid': ' 0x936993318dead2c3cbed5d16152aa0e3'}}, {'resting': {'oid': 453132885960, 'cloid': '0xfb8b94ff84a9eed5d52b45472c71ff14'}}]}}}```
But when I call open_orders(address, dex) it is not present. All of my other orders are there except this one. It only happens every few hours and causes my program to crash and for the life of me I cannot figure out why it is not showing up. I'm trading on the HYPE market and generally it has no problem placing orders
There is no way the order could have filled as it is well below any historical price near that time, it is being placed Gtc. My only thought is that somehow the information returned from open_orders is out of date. I've ruled out the possibility that I've somehow canceled it. The only other thing I can think is maybe some concurrency issue but based on logging timestamps that seems very unlikely
There is no way the order could have filled as it is well below any historical price near that time, it is being placed Gtc. My only thought is that somehow the information returned from open_orders is out of date. I've ruled out the possibility that I've somehow canceled it. The only other thing I can think is maybe some concurrency issue but based on logging timestamps that seems very unlikely
are you filtering on the right cloid for open orders
are you filtering on the right cloid for open orders
I'm not sure what you mean by this, I'm receiving the oid after I place the order and storing it. Then when I call open_orders it is not in the list, though every other order is present there. The only thing I can think of rn is to query the order status both by cloid and oid and see what is going on
I'm not sure what you mean by this, I'm receiving the oid after I place the order and storing it. Then when I call open_orders it is not in the list, though every other order is present there. The only thing I can think of rn is to query the order status both by cloid and oid and see what is going on