Author Topic: Is there a way to see all open orders?  (Read 2492 times)

0 Members and 1 Guest are viewing this topic.

Offline svk

You can add a feature request at github directly if you have an account .. if not drop me a line and i can add a feature request

Yeah have one, just under the bitshares issues?
https://github.com/BitShares/bitshares/issues

In here rather:

https://github.com/BitShares/web_wallet/issues
Worker: dev.bitsharesblocks

Offline graffenwalder

You can add a feature request at github directly if you have an account .. if not drop me a line and i can add a feature request

Yeah have one, just under the bitshares issues?
https://github.com/BitShares/bitshares/issues

Offline svk

Yes this would be useful indeed and deserves an issue on github imo.
Worker: dev.bitsharesblocks

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
You can add a feature request at github directly if you have an account .. if not drop me a line and i can add a feature request

Offline graffenwalder

Last I checked the GUI does show all orders for a given asset combination in the market page, is that not the case for you?
It does. But the problem is I'm playing on quit some markets. Sometimes I forget certain open orders.

I have the same problem with centralized exchanges. When I see my balance, but not sure in what market the order is. Most centralized exchanges have a tab, where you can see the open orders and on what market it is.

Right I think I get it, you want a summary of all your open orders, regardless of market?
Right, just one tab, that shows for example:
Usd:euro ask xxx amount
Usd:BTS bid xxx amount
Etc......

And if you could click on a certain order to go to that market, that would be an added bonus.

Bonus number 2 would be: also showing the shorts on that page, with how much time is left to cover

Bonus 3: alert when your close to getting your margin called

Bonus 4: canceling orders from within that tab
« Last Edit: January 21, 2015, 02:21:44 pm by Graffenwalder »

Offline svk

Last I checked the GUI does show all orders for a given asset combination in the market page, is that not the case for you?
It does. But the problem is I'm playing on quit some markets. Sometimes I forget certain open orders.

I have the same problem with centralized exchanges. When I see my balance, but not sure in what market the order is. Most centralized exchanges have a tab, where you can see the open orders and on what market it is.

Right I think I get it, you want a summary of all your open orders, regardless of market?
Worker: dev.bitsharesblocks

Offline graffenwalder

Last I checked the GUI does show all orders for a given asset combination in the market page, is that not the case for you?
It does. But the problem is I'm playing on quit some markets. Sometimes I forget certain open orders.

I have the same problem with centralized exchanges. When I see my balance, but not sure in what market the order is. Most centralized exchanges have a tab, where you can see the open orders and on what market it is.

Offline svk

Last I checked the GUI does show all orders for a given asset combination in the market page, is that not the case for you?
Worker: dev.bitsharesblocks

Offline graffenwalder

Ok, great thanks.
Now I just have to figure out what assetid number, corresponds with what asset and on which market.

Code: [Select]
>>> blockchain_get_asset 22
{
  "id": 22,
  "symbol": "USD",
  "name": "United States Dollar",
  "description": "1 United States dollar",
  "public_data": "",
  "issuer_account_id": -2,
  "precision": 10000,
  "registration_date": "2014-07-19T03:18:40",
  "last_update": "2014-07-19T03:18:40",
  "current_share_supply": 8134842084,
  "maximum_share_supply": 1000000000000000,
  "collected_fees": 83485197,
  "flags": 0,
  "issuer_permissions": 4294967295,
  "transaction_fee": 0,
  "authority": {
    "required": 0,
    "owners": []
  },
  "last_proposal_id": 0
}
Thanks, that makes it a lot easier.

Still I think this should be a GUI feature for 1.0, for everybody not used to command lines.

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
Ok, great thanks.
Now I just have to figure out what assetid number, corresponds with what asset and on which market.

Code: [Select]
>>> blockchain_get_asset 22
{
  "id": 22,
  "symbol": "USD",
  "name": "United States Dollar",
  "description": "1 United States dollar",
  "public_data": "",
  "issuer_account_id": -2,
  "precision": 10000,
  "registration_date": "2014-07-19T03:18:40",
  "last_update": "2014-07-19T03:18:40",
  "current_share_supply": 8134842084,
  "maximum_share_supply": 1000000000000000,
  "collected_fees": 83485197,
  "flags": 0,
  "issuer_permissions": 4294967295,
  "transaction_fee": 0,
  "authority": {
    "required": 0,
    "owners": []
  },
  "last_proposal_id": 0
}

Offline pc

  • Hero Member
  • *****
  • Posts: 1530
    • View Profile
    • Bitcoin - Perspektive oder Risiko?
  • BitShares: cyrano
See also blockchain_list_assets and blockchain_market_order_book.
Bitcoin - Perspektive oder Risiko? ISBN 978-3-8442-6568-2 http://bitcoin.quisquis.de

Offline graffenwalder

for all orders in the market
blockchain_market_list_asks USD BTS

for all orders YOU have open
wallet_account_order_list

Ok, great thanks.
Now I just have to figure out what assetid number, corresponds with what asset and on which market.

Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
for all orders in the market
blockchain_market_list_asks USD BTS

for all orders YOU have open
wallet_account_order_list

Offline graffenwalder

It's great that all bitasset markets are open now.
But is there a way, to show all open orders in the GUI?

If not, would it be hard to implement such a feature?