一起来玩内部市场吧(二)!/ Market history APIs by example by oflyhigh

View this thread on steempeak.com
· @oflyhigh ·
$162.25
一起来玩内部市场吧(二)!/ Market history APIs by example
昨天发了一篇文章,[《一起来玩内部市场吧!/ Let's play the internal market》](https://steemit.com/cn/@oflyhigh/let-s-play-the-internal-market)

很多朋友私下里表示了极大的兴趣,因为内部市场最吸引人的特点:***没有手续费***!与其去其它各类市场被人家薅羊毛,不如咱们自己在内部市场愉快的玩耍,没有手续费,考验的就是技术和运气了。

关于内部市场,我之前也写过一系列的文章,当然其实就是自己学习的过程,毕竟在这之前,我对交易什么的也一窍不通。详情可参考页面底部的之前相关文章。在这篇文章中,我来介绍一下,自动操作可能涉及到的API等。

https://steemitimages.com/DQmWvzn1cdSFzLmgPBw2EgybRpxsCKWLBnLUGYkNb8GB6tK/keyboard-621830_1280.jpg
(图源:[pixabay](https://pixabay.com))

本篇文章介绍以下API /  In this article, I'll introduce the following APIs by example: 

* get_ticker()
* get_volume()
* get_order_book()
* get_recent_trades()
* get_trade_history()
* get_market_history_buckets()
* get_market_history()

详情可以参考,[market_history_api.hpp](https://github.com/steemit/steem/blob/master/libraries/plugins/market_history/include/steemit/market_history/market_history_api.hpp)
They are located in [market_history_api.hpp](https://github.com/steemit/steem/blob/master/libraries/plugins/market_history/include/steemit/market_history/market_history_api.hpp)

API返回的结果是JSON 编码字符串,为了便于查看,我将其解码并格式化显示。
The return results are JSON encoded string, For convenience, I decode them and display them formatted.

----

# get_ticker()

***API:*** `market_ticker get_ticker() const;`
***说明:*** 获取市场报价信息
Returns the market ticker for the internal SBD:STEEM market

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_ticker", []], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmQg8jUBZKf9gwTn7NW4cHxZiiFtraQFxKgzjsJz2ppXbi/image.png)

----

# get_volume()

***API:*** `market_volume get_volume() const;`
***说明:*** 最近24小时的时常交易量
Returns the market volume for the past 24 hours

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_volume", []], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmQpN1Eksdt4pa5aVHyJNqkC76GUhg3LPbgE1ECPaihsS5/image.png)

---

# get_order_book()

***API:*** `order_book get_order_book( uint32_t limit = 500 ) const;`
***说明:*** 获取市场当前订单信息
Returns the current order book for the internal SBD:STEEM market.

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_order_book", [5]], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmf8KBu8qTw5tTYJHCbtsk4z9d9Q7fVnEHPEvfZGT9SiLG/image.png)

----

# get_recent_trades()

***API:*** `std::vector< market_trade > get_recent_trades( uint32_t limit = 1000 ) const;`
***说明:*** 获取内部市场最近成交信息
Returns the N most recent trades for the internal SBD:STEEM market.

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_recent_trades", [5]], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmWRdLGnWJCy5DqzX8BYGtPaSEzv5uTjenXKrJ4C2XjeHP/image.png)

----

# get_trade_history()

***API:*** `std::vector< market_trade > get_trade_history( time_point_sec start, time_point_sec end, uint32_t limit = 1000 ) const;`
***说明:*** 获取内部市场指定时间范围内的成交信息
Returns the trade history for the internal SBD:STEEM market.

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_trade_history", ["2016-08-01T00:00:00", "2016-08-05T00:00:00", 10]], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmdKjoq4AnQeXJFwFMVLxUAXgtxr73U3a9dgU8WxKekwyc/image.png)

----

# get_market_history_buckets()

***API:*** `flat_set< uint32_t > get_market_history_buckets() const;`
***说明:*** 获取市场行情处理区间(15秒/分钟/5分钟/等)
Returns the bucket seconds being tracked by the plugin.

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_market_history_buckets", []], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmexvhBmYP8jzT1WN1ktpCyuNt4fngsHB63hQATEGgneEj/image.png)

---
# get_market_history()

***API:*** `std::vector< bucket_object > get_market_history( uint32_t bucket_seconds, time_point_sec start, time_point_sec end ) const;`
***说明:*** 获取内部市场历史信息
Returns the market history for the internal SBD:STEEM market.

***调用示例 /Example:***
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_market_history", [86400, "2016-08-01T00:00:00", "2016-08-05T00:00:00"]], "id": 1}' https://steemd.steemit.com`

***返回信息 / Return:***
![](https://steemitimages.com/DQmPhv6wUukiyufqUeBM2AN2XbcsAZVcJ4WgmgBPrgWJNtn/image.png)

----

# 之前相关文章 / Previous articles
* [微信公众号支持查询内部市场信息啦](https://steemit.com/cn/@oflyhigh/6ha3fx)
* [如何计算内部市场当前参考价格](https://steemit.com/cn/@oflyhigh/2xxlfx)
* [内部市场交易类型显示的问题](https://steemit.com/cn/@oflyhigh/vlif6)
* [内部市场(Internal market)要价(Ask)与出价(Bid)的区别](https://steemit.com/cn/@oflyhigh/internal-market-ask-bid)
* [👉 Guide for newbie: How to use internal market / step by step / 新人指南:教你如何使用内部市场](https://steemit.com/steemit/@oflyhigh/guide-for-newbie-how-to-use-internal-market-hand-by-hand)
* [👉 [中文版]新人指南:教你如何使用内部市场 / [Chinese Version] Guide for newbie: How to use internal market.](https://steemit.com/steemit/@oflyhigh/chinese-version-guide-for-newbie-how-to-use-internal-market)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 183 others
properties (23)
post_id15,628,169
authoroflyhigh
permlinkmarket-history-apis-by-example
categorysteemdev
json_metadata"{"app": "steemit/0.1", "format": "markdown", "links": ["https://steemit.com/cn/@oflyhigh/let-s-play-the-internal-market", "https://pixabay.com", "https://github.com/steemit/steem/blob/master/libraries/plugins/market_history/include/steemit/market_history/market_history_api.hpp", "https://steemit.com/cn/@oflyhigh/6ha3fx", "https://steemit.com/cn/@oflyhigh/2xxlfx", "https://steemit.com/cn/@oflyhigh/vlif6", "https://steemit.com/cn/@oflyhigh/internal-market-ask-bid", "https://steemit.com/steemit/@oflyhigh/guide-for-newbie-how-to-use-internal-market-hand-by-hand", "https://steemit.com/steemit/@oflyhigh/chinese-version-guide-for-newbie-how-to-use-internal-market"], "image": ["https://steemitimages.com/DQmWvzn1cdSFzLmgPBw2EgybRpxsCKWLBnLUGYkNb8GB6tK/keyboard-621830_1280.jpg"], "tags": ["steemdev", "market", "money", "api", "cn"]}"
created2017-10-19 10:06:27
last_update2017-10-19 10:06:27
depth0
children28
net_rshares70,619,834,187,260
last_payout2017-10-26 10:06:27
cashout_time1969-12-31 23:59:59
total_payout_value134.190 SBD
curator_payout_value28.063 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5,328
author_reputation1,148,153,621,496,884
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (247)
@tumutanzi ·
$1.58
坏人,大家一堆去玩内部市场,其实赚的钱都是大家自己的,就有点像四个去打牌,赚来赚去都是这四个人的啦,哈哈。不上O哥的当。
👍  , , , , , ,
properties (23)
post_id15,628,670
authortumutanzi
permlinkre-oflyhigh-market-history-apis-by-example-20171019t101651201z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:16:51
last_update2017-10-19 10:16:51
depth1
children11
net_rshares687,911,977,043
last_payout2017-10-26 10:16:51
cashout_time1969-12-31 23:59:59
total_payout_value1.401 SBD
curator_payout_value0.177 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length60
author_reputation136,982,997,921,497
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (7)
@oflyhigh ·
$0.58
哭,这都被你识破了。😭

不过,话说其实不完全是你说的这个样子。
大家都来玩内部市场,有助于币价的稳定,这对STEEM而言是好事。

另外,虽然是内部市场,但是因为STEEM和SBD都是可以在外部市场流动的,所以其实高级玩法可以内外结合。
👍  , ,
properties (23)
post_id15,628,970
authoroflyhigh
permlinkre-tumutanzi-re-oflyhigh-market-history-apis-by-example-20171019t102253858z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:22:57
last_update2017-10-19 10:22:57
depth2
children4
net_rshares252,613,906,195
last_payout2017-10-26 10:22:57
cashout_time1969-12-31 23:59:59
total_payout_value0.502 SBD
curator_payout_value0.076 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length119
author_reputation1,148,153,621,496,884
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (3)
@tumutanzi ·
哈哈,主要还是要看有没有法币入场,才可能有助于稳定币价吧,考虑到有些大佬在出货。

不过也不有关系,主要还是要看它的长远发展,是否真能创造价值。这些没有信心的大佬们出了货,反而更稳定。

看看比特币就知道了,换了多少回手,现在稳定多了。
properties (22)
post_id15,629,785
authortumutanzi
permlinkre-oflyhigh-re-tumutanzi-re-oflyhigh-market-history-apis-by-example-20171019t103740417z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:37:39
last_update2017-10-19 10:37:39
depth3
children0
net_rshares0
last_payout2017-10-26 10:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length118
author_reputation136,982,997,921,497
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@htliao ·
$1.51
我也覺得這是好事,高交易量才會令STEEM有著更多需求,而且交易量提高了自然會有其他的人進來玩,畢竟內部市場本身的設計就不錯。這樣就不存在賺自己人錢的問題了,而且
# 交易本身就是各憑本事呀,在所有市場都是一樣的。
👍  , , , ,
properties (23)
post_id15,630,524
authorhtliao
permlinkre-oflyhigh-re-tumutanzi-re-oflyhigh-market-history-apis-by-example-20171019t105216265z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:52:18
last_update2017-10-19 10:52:18
depth3
children2
net_rshares656,539,212,810
last_payout2017-10-26 10:52:18
cashout_time1969-12-31 23:59:59
total_payout_value1.134 SBD
curator_payout_value0.374 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length107
author_reputation468,933,340,012,582
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (5)
@tvb · (edited)
$0.57
我觉得也是,有人挣就有人赔呀,以我这种笨蛋,估计是其他人在挣我的钱。
👍  ,
properties (23)
post_id15,629,784
authortvb
permlinkre-tumutanzi-re-oflyhigh-market-history-apis-by-example-20171019t103737452z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:37:39
last_update2017-10-19 10:38:24
depth2
children5
net_rshares247,866,617,894
last_payout2017-10-26 10:37:39
cashout_time1969-12-31 23:59:59
total_payout_value0.428 SBD
curator_payout_value0.140 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length34
author_reputation35,846,309,024,528
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@oflyhigh ·
😄快进来啊,你要再不进来,我都要赔钱了😢
properties (22)
post_id15,630,517
authoroflyhigh
permlinkre-tvb-re-tumutanzi-re-oflyhigh-market-history-apis-by-example-20171019t105116153z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:52:12
last_update2017-10-19 10:52:12
depth3
children1
net_rshares0
last_payout2017-10-26 10:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation1,148,153,621,496,884
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@htliao ·
$0.37
其實以交易來說耐性和心態有時比䇿略和技巧更重要。
👍  ,
properties (23)
post_id15,630,553
authorhtliao
permlinkre-tvb-re-tumutanzi-re-oflyhigh-market-history-apis-by-example-20171019t105250642z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:52:51
last_update2017-10-19 10:52:51
depth3
children2
net_rshares160,173,965,386
last_payout2017-10-26 10:52:51
cashout_time1969-12-31 23:59:59
total_payout_value0.276 SBD
curator_payout_value0.090 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length24
author_reputation468,933,340,012,582
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@steveuk ·
Cool Code thank you for providing it to us.


멋진 코드는 우리에게 제공 해줘서 고맙습니다.
👍  
properties (23)
post_id15,629,276
authorsteveuk
permlinkre-oflyhigh-market-history-apis-by-example-20171019t102829725z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:28:30
last_update2017-10-19 10:28:30
depth1
children0
net_rshares712,777,660
last_payout2017-10-26 10:28:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation6,134,480,323,340
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@emperorrichie ·
Thank you so much for the info
properties (22)
post_id15,630,349
authoremperorrichie
permlinkre-oflyhigh-market-history-apis-by-example-20171019t104854177z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:48:57
last_update2017-10-19 10:48:57
depth1
children0
net_rshares0
last_payout2017-10-26 10:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length30
author_reputation20,106,354,402
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@webscare ·
Thank u for the info dude :)
properties (22)
post_id15,630,529
authorwebscare
permlinkre-oflyhigh-market-history-apis-by-example-20171019t105224498z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 10:52:24
last_update2017-10-19 10:52:24
depth1
children0
net_rshares0
last_payout2017-10-26 10:52:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length28
author_reputation0
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@leomichael ·
Awesome Post !
properties (22)
post_id15,631,541
authorleomichael
permlinkre-oflyhigh-market-history-apis-by-example-20171019t111305130z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 11:12:57
last_update2017-10-19 11:12:57
depth1
children0
net_rshares0
last_payout2017-10-26 11:12:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length14
author_reputation69,360,323,670,434
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bakhtiarzehri ·
Well keep it on
properties (22)
post_id15,632,876
authorbakhtiarzehri
permlinkre-oflyhigh-market-history-apis-by-example-20171019t113526556z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 11:35:33
last_update2017-10-19 11:35:33
depth1
children0
net_rshares0
last_payout2017-10-26 11:35:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation745,113,140,025
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@a-a-a ·
![elf-i-love-you_1.gif](https://steemitimages.com/DQmVxNhHgGJFMjZKHtAU9SfUcsMyvSsWPUuLBhuyvMmUcai/elf-i-love-you_1.gif)
👍  
properties (23)
post_id15,633,553
authora-a-a
permlinkre-oflyhigh-market-history-apis-by-example-20171019t114556628z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmVxNhHgGJFMjZKHtAU9SfUcsMyvSsWPUuLBhuyvMmUcai/elf-i-love-you_1.gif"], "tags": ["steemdev"]}"
created2017-10-19 11:45:57
last_update2017-10-19 11:45:57
depth1
children0
net_rshares1,143,166,412
last_payout2017-10-26 11:45:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length119
author_reputation-3,090,295,432,513
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@pemulungcrypto ·
I need your support @oflyhigh pls resteem one of my post hehe..
properties (22)
post_id15,637,390
authorpemulungcrypto
permlinkre-oflyhigh-market-history-apis-by-example-20171019t124837852z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "users": ["oflyhigh"], "tags": ["steemdev"]}"
created2017-10-19 12:48:48
last_update2017-10-19 12:48:48
depth1
children0
net_rshares0
last_payout2017-10-26 12:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length63
author_reputation10,180,703,228
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kawsardj ·
good video most inpotin i lake you
properties (22)
post_id15,639,693
authorkawsardj
permlinkre-oflyhigh-market-history-apis-by-example-20171019t132453144z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 13:24:42
last_update2017-10-19 13:24:42
depth1
children0
net_rshares0
last_payout2017-10-26 13:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length34
author_reputation-492,291,369,639
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ertug1921 ·
有道理!
properties (22)
post_id15,640,604
authorertug1921
permlinkre-oflyhigh-market-history-apis-by-example-20171019t133823841z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-19 13:38:24
last_update2017-10-19 13:38:24
depth1
children0
net_rshares0
last_payout2017-10-26 13:38:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation0
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@shenchensucc ·
内部市场确实是一个特别好玩的东西,不过API就完全不懂了,整个市场如果steem最后不涨价的话,波动来波动去确实是个零和交易。o哥的机器人也坑能会被别的大牛机器人割韭菜的。。。。哈哈
properties (22)
post_id15,687,024
authorshenchensucc
permlinkre-oflyhigh-market-history-apis-by-example-20171020t044841292z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-20 04:48:45
last_update2017-10-20 04:48:45
depth1
children2
net_rshares0
last_payout2017-10-27 04:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length91
author_reputation313,809,918,917,512
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oflyhigh ·
我的发财梦,被你打击得粉碎 😭
properties (22)
post_id15,704,411
authoroflyhigh
permlinkre-shenchensucc-re-oflyhigh-market-history-apis-by-example-20171020t101420041z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-20 10:14:21
last_update2017-10-20 10:14:21
depth2
children1
net_rshares0
last_payout2017-10-27 10:14:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length15
author_reputation1,148,153,621,496,884
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@shenchensucc ·
不过你也是大牛,你肯定会割到不少我这种的韭菜
properties (22)
post_id15,721,449
authorshenchensucc
permlinkre-oflyhigh-re-shenchensucc-re-oflyhigh-market-history-apis-by-example-20171020t171359325z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-20 17:14:48
last_update2017-10-20 17:14:48
depth3
children0
net_rshares0
last_payout2017-10-27 17:14:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation313,809,918,917,512
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@umeshpal ·
Win $1000 from walmart survey
http://moneymakingway.com/www-survey-walmart-com/
properties (22)
post_id15,691,589
authorumeshpal
permlinkre-oflyhigh-market-history-apis-by-example-20171020t062259846z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "links": ["http://moneymakingway.com/www-survey-walmart-com/"], "tags": ["steemdev"]}"
created2017-10-20 06:23:03
last_update2017-10-20 06:23:03
depth1
children0
net_rshares0
last_payout2017-10-27 06:23:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length79
author_reputation0
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@michaeldoron59 ·
$1.36
properties (23)
post_id15,695,870
authormichaeldoron59
permlinkre-oflyhigh-market-history-apis-by-example-20171020t074932435z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-10-20 07:49:33
last_update2017-10-20 07:49:33
depth1
children0
net_rshares596,916,609,774
last_payout2017-10-27 07:49:33
cashout_time1969-12-31 23:59:59
total_payout_value1.020 SBD
curator_payout_value0.338 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length4
author_reputation774,263,682,681
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@arcange ·
Congratulations @oflyhigh!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20171019) in the following category:

* Pending payout - Ranked 8 with $ 169,91
properties (22)
post_id15,715,309
authorarcange
permlinkre-market-history-apis-by-example-20171019t174505000z
categorysteemdev
json_metadata{}
created2017-10-20 15:43:24
last_update2017-10-20 15:43:24
depth1
children0
net_rshares0
last_payout2017-10-27 15:43:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length208
author_reputation231,443,210,169,699
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@brysj22952 ·
里面的接口都是查询类的,哪里有挂单的接口?
properties (22)
post_id18,278,727
authorbrysj22952
permlinkre-oflyhigh-market-history-apis-by-example-20171121t032724518z
categorysteemdev
json_metadata"{"app": "steemit/0.1", "tags": ["steemdev"]}"
created2017-11-21 03:27:42
last_update2017-11-21 03:27:42
depth1
children0
net_rshares0
last_payout2017-11-28 03:27:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length21
author_reputation204,696,827,180
root_title"一起来玩内部市场吧(二)!/ Market history APIs by example"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000