Author Topic: Bitshares JS market trade history  (Read 2714 times)

0 Members and 1 Guest are viewing this topic.

Offline Digital Lucifer

  • Sr. Member
  • ****
  • Posts: 368
  • BitShares Maximalist & Venture Architect
    • View Profile
    • BitShares
  • BitShares: dls.cipher
  • GitHub: dls-cipher
Ok I just found why I had an empty array, it seems that params order is dateEnd then dateStart like you did.
But the documentation of bitsharesjs-ws is :
https://github.com/bitshares/bitsharesjs-ws

Quote
get_trade_history   [string base, string quote, date start, date stop, int limit]



Thanks

Keep in mind that repo and documentation is few months out-of-date :)))
Milos (DL) Preocanin
Owner and manager of bitshares.org
Move Institute, Non-profit organization
RN: 2098555000
Murska Sobota, Slovenia.

Offline Victor118

Ok I just found why I had an empty array, it seems that params order is dateEnd then dateStart like you did.
But the documentation of bitsharesjs-ws is :
https://github.com/bitshares/bitsharesjs-ws

Quote
get_trade_history   [string base, string quote, date start, date stop, int limit]



Thanks


Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
This is a query that returns a result for me:

{"method": "call", "params": [0, "get_trade_history", ["BTS", "USD", "2018-12-17T16:13:49", "2018-12-16T16:13:49", 10]], "jsonrpc": "2.0", "id": 3}

It requires the market_plugin to be enabled on the backend. Try against "wss://node.bitshares.eu"

Offline Victor118

Great, it works, thank you.

But I don't know why I have an empty array as result for :

Code: [Select]
Apis.instance().db_api().exec( "get_trade_history", [ "BTS","USD","2018-12-16T15:09:11","2018-12-17T15:09:11",100 ] );


Offline xeroc

  • Board Moderator
  • Hero Member
  • *****
  • Posts: 12922
  • ChainSquad GmbH
    • View Profile
    • ChainSquad GmbH
  • BitShares: xeroc
  • GitHub: xeroc
Try this format:

2018-12-17T15:00:00

note that **T** in the middle

Offline Victor118

Hi,
I would like to retrieve market history.
I'm trying with  :

Code: [Select]
Apis.instance().db_api().exec( "get_trade_history", [ base,quote,dateStart,dateEnd, 100 ] );
But i got an error :
Quote
basic_string::at: __n (which is 0) >= this->size() (which is 0): basic_string::at: __n (which is 0) >= this->size() (which is 0): unable to convert ISO-formatted string to fc::time_point_sec


Here is dateStart and dateEnd format :

Quote
2018-11-17 10:02:43
 2018-12-17 10:02:43

Someone can help me please ?

 Is there a better way to get history price for a chart, may be an OHLC format ?