create account

The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker by jasonmcz

View this thread on: hive.blogpeakd.comecency.com
· @jasonmcz · (edited)
$6,710.80
The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker
<html>
<h3><strong>Steemers!</strong><br>
</h3>
<p>It's @jasonmcz again form <a href="https://firstblood.io">Firstblood.io</a>! If you missed my self-introductory blog last time, here is a<br>
<a href="https://steemit.com/introduceyourself/@jasonmcz/hi-steem-i-am-a-young-and-hungry-entrepreneur-who-plays-saxophone-from-boston">link</a> to the post.</p>
<h2>The Beginning</h2>
<p>24 hours ago I was browsing the through some of posts about the <a href="https://steemit.com/steem/@blakemiles84/two-users-are-gaming-the-liquidity-reward-system-and-earning-1200-steem-per-hour">Steem Internal Market</a> posted by @blakemiles84, quickly learned that some whales / early players who are making the market are doing wash trades against themselves.</p>
<h2><strong>The fuck is Wash Trade?</strong></h2>
<p>For those of you who don't understand the concept of a wash trade, here is a <a href="https://en.wikipedia.org/wiki/Wash_trade">link</a> to the <a href="https://en.wikipedia.org/wiki/Wash_trade">wiki page</a> explaining the definition of a wash trade and why it is illegal. &nbsp;<br>
In short [<strong>wash trade</strong>] is a form of <a href="https://en.wikipedia.org/wiki/Market_manipulation">market manipulation</a> in which an investor simultaneously sells and buys the same <a href="https://en.wikipedia.org/wiki/Financial_instrument">financial instruments</a>. Why? For 3+1 reasons:<br>
<br>
1. inflate the volume<br>
2. commission fees rebate<br>
3. ping an instrument price onto the tape to cheat on derivative product settlements.<br>
4. some jurisdiction allows loss resulted from wash trades to be deducted from tax.</p>
<p>yeah but..<br>
<br>
In this case, the wash trade had a <em><strong>purpose</strong></em>, which is to game the liquidity reward.<br>
A reward totals 1,200 STEEM /hr or a dollar equivalent about $3720.00 /hr.</p>
<h2><strong>Last 24 hours</strong></h2>
<p>After reviewing all the archives on the topic of liquidity reward and internal market, I've decided to make market myself and see if I could take down those whales who are consistently getting those fat rewards.&nbsp;</p>
<p><br></p>
<p><img src="https://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAALqAAAAJDJmY2Q0MTczLTIzNjctNDkxNi05Y2NkLWZjYTdjNWQ1M2E0OQ.jpg" width="522" height="299"/></p>
<p><br></p>
<p>some of those might think being a market maker needs a set up like this to watch the book, chart and signals..</p>
<p>But in reality, in this electronic trading world...Market making looks like this</p>
<p><br></p>
<p><img src="http://blog.addthiscdn.com/wp-content/uploads/2015/08/code-cleanup.png" width="900" height="450"/></p>
<p><br></p>
<p>You have elegant robots with just few dozen lines of code or a complicated system that has tens of thousands code and has the ability to learn from other peoples trades and its own mistakes.</p>
<h3><strong>Finding The APIs&nbsp;</strong></h3>
<p>Due to lack of documentation from Steemit official site about the internal exchange part forced me to look around for other solutions. Thanks to @Xeroc Fabian's <a href="https://steemit.com/steem/@xeroc/changelog-python-steem-0-2rc1">post</a>, I was able to set up something running really quickly with his steemit-python interface:</p>
<pre><code><strong>from</strong> <strong>pprint</strong> <strong>import</strong> pprint<br>
<strong>from</strong> <strong>steemexchange</strong> <strong>import</strong> SteemExchange<br>
<br>
<strong>class</strong> <strong>Config</strong>():<br>
 &nbsp;&nbsp;&nbsp;witness_url &nbsp;&nbsp;&nbsp;&nbsp;= "wss://this.piston.rocks/"<br>
 &nbsp;&nbsp;&nbsp;account &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= "xeroc"<br>
 &nbsp;&nbsp;&nbsp;<em># Either provide a cli-wallet RPC</em><br>
 &nbsp;&nbsp;&nbsp;wallet_host &nbsp;&nbsp;&nbsp;&nbsp;= "localhost"<br>
 &nbsp;&nbsp;&nbsp;wallet_port &nbsp;&nbsp;&nbsp;&nbsp;= 8092<br>
 &nbsp;&nbsp;&nbsp;<em># or the (active) private key for your account</em><br>
 &nbsp;&nbsp;&nbsp;wif &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= ""<br>
<br>
steem = SteemExchange(Config)<br>
pprint(steem.buy(10, "SBD", 100))<br>
pprint(steem.sell(10, "SBD", 100))<br>
pprint(steem.cancel("24432422"))<br>
pprint(steem.returnTicker())<br>
pprint(steem.return24Volume())<br>
pprint(steem.returnOrderBook(2))<br>
pprint(steem.ws.get_order_book(10, api="market_history"))<br>
pprint(steem.returnTradeHistory())<br>
pprint(steem.returnMarketHistoryBuckets())<br>
pprint(steem.returnMarketHistory(300))<br>
pprint(steem.get_lowest_ask())<br>
pprint(steem.get_higest_bid())<br>
pprint(steem.transfer(10, "SBD", "fabian", "foobar"))<br>
</code></pre>
<p>Setting something up isn't hard but winning that liquidity reward is insanely hard especially when you have few people who are already extremely well established with their book. I transferred some ETH via blocktrades to convert into my initial liquidity capital (STEEM).&nbsp;</p>
<p>I was pretty confident that I was going to score all the liquidity points by providing the tightest spread in the market.&nbsp;</p>
<p>Then I was <strong>WRONG</strong>.&nbsp;</p>
<pre><code>&nbsp;Algo_Bid: 3.239 x Algo_Ask: 3.2410000000000003&nbsp;</code></pre>
<p>Thanks to those well documented API. I was able to set up my robot and consistently provide a spread as low as $0.002, however providing the tightest spread doesn't mean anything and certainly doesn't earn me anything to the liquidity reward.<br>
</p>
<p><br>
<strong>But why is that?</strong></p>
<h2><strong>The 'A****' &nbsp;&amp; Nirvana/Ledzeppelin/thebeatles/thewho Clan</strong></h2>
<p><img src="http://i.imgur.com/FHmuAgc.png"/></p>
<p><br></p>
<blockquote>adeal, abit, alittle, aload, apiece, aton, afew -- the 'A' clan is controlled most likely (my speculation) by one person</blockquote>
<blockquote>Nirvana, theBeatles, the Ledzeppelin/thebeatles/thewho accounts are probably controlled by the same person as well</blockquote>
<p>It's strange and interesting &nbsp;at the same time to witness how the 'A' clan and the Nirvana clan were adjusting their trading strategies after the change to liquidity reward calculation in the last implementation.&nbsp;</p>
<p>[Now Liquidity Points are only applied to those open orders remains on the book for more than 30 minutes]</p>
<p>Now instead of wash trading every couple minute, they will place big wide orders on the order book with a huge spread. We that know with that $0.15 - 0.20 cents -- it is quite discouraging to people who want just to trade and with the less trades happening at the spread they are providing.<br>
<br>
They were able to utilize multiple accounts to wash trade every 30 minutes to take out the very liquidity they put on the book themselves.</p>
<p><em><strong>AHHHHH... THAT'S WHY I HAVE NO LIQUIDITY POINTS.</strong></em></p>
<p>Cuz my tight orders were eaten by them before they could hit the 30 minute mark, and it seems like the last thing they'd be concerned about is to provide orders with tight spread. Isn't this counter-intuitive in the way that encourages liquidity reward takers to place their bid/ask away from BBO?</p>
<h2><img src="http://i.imgur.com/5o9H0UT.png"/></h2>
<h2><strong>The Change of My Strategy</strong></h2>
<p>Knowing I have no chance to compete with whales on that fat check given by the network even tho the liquidity that I provide is obviously tighter than theirs. I've decided to change my strategy entirely. Instead of providing tightest liquidly on the market, I wrote a Robot that detects A clan and Nivara's orders.<br>
<br>
Robot will scan the orderbook and identify where the whales are and then place my orders one level above or below them so in order for them to wash trade they will have to eat the orderbook up from me first, but this time with bigger cost.&nbsp;</p>
<p>Now I am collecting few bucks on each trade they make! but HELLO??? Why are they collecting 1200.00 STEEM when I am real MM who's ACTUALLY providing order flow on top of the orderbook</p>
<h2><br>
<strong>The Conclusion</strong></h2>
<p>To be honest, as someone who has been prop trading for &nbsp;past 8 years on equities, derivatives and cryptos (on exchange) this strange structured liquidity reward thing is completely a new animal. I've never seen anything like this -- especially the part that all orders have to be on the book for ( 1minute before) 30 minutes. Perhaps @jl777 is right on his comments earlier or perhaps I just fail to see the bigger picture this time.<br>
<br>
I am not saying this is not doing its job but rather it's counter productive from making a liquid market for STEEM community. There is a reason why some exchanges let market makers compete on the order flow and get rebate (solely) on liquidity takers fees.&nbsp;Just my two cents.</p>
<p><br></p>
<p><img src="http://i.imgur.com/15h0DSB.jpg"/></p>
<p><br>
</p>
</html>
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 409 others
๐Ÿ‘Ž  
properties (23)
authorjasonmcz
permlinkthe-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker
categorymarket
json_metadata{"tags":["market","steemit","liquidity-reward","market-making","firstblood-io"],"users":["jasonmcz","blakemiles84","jl777"],"image":["https://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAALqAAAAJDJmY2Q0MTczLTIzNjctNDkxNi05Y2NkLWZjYTdjNWQ1M2E0OQ.jpg","http://blog.addthiscdn.com/wp-content/uploads/2015/08/code-cleanup.png","http://i.imgur.com/FHmuAgc.png","http://i.imgur.com/5o9H0UT.png","http://i.imgur.com/15h0DSB.jpg"],"links":["https://firstblood.io","https://steemit.com/introduceyourself/@jasonmcz/hi-steem-i-am-a-young-and-hungry-entrepreneur-who-plays-saxophone-from-boston","https://steemit.com/steem/@blakemiles84/two-users-are-gaming-the-liquidity-reward-system-and-earning-1200-steem-per-hour","https://en.wikipedia.org/wiki/Wash_trade","https://en.wikipedia.org/wiki/Market_manipulation","https://en.wikipedia.org/wiki/Financial_instrument","https://steemit.com/steem/@xeroc/changelog-python-steem-0-2rc1"]}
created2016-07-17 23:22:00
last_update2016-07-18 01:10:54
depth0
children54
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value5,839.444 HBD
curator_payout_value871.351 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,835
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id155,509
net_rshares132,833,274,878,638
author_curate_reward""
vote details (474)
@anon.news ·
This shit is like chess on a whole nother level. Love it
๐Ÿ‘  
properties (23)
authoranon.news
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t075148410z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 07:51:51
last_update2016-07-18 07:51:51
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation526,552,286,063
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id161,878
net_rshares90,750,069
author_curate_reward""
vote details (1)
@ausbitbank ·
$0.02
Great post, I'm uber jealous of your trading desk setup! I'm fascinated by these sort of closer looks at how these markets work behind the scenes, thank you for sharing details and code :)
๐Ÿ‘  
properties (23)
authorausbitbank
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160722t023911906z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-22 02:39:12
last_update2016-07-22 02:39:12
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.003 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length188
author_reputation287,160,645,191,179
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id264,658
net_rshares22,315,418,093
author_curate_reward""
vote details (1)
@jasonmcz ·
Thank you mate! Gonna do another one soon!
๐Ÿ‘  
properties (23)
authorjasonmcz
permlinkre-ausbitbank-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160722t044502809z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-22 04:45:03
last_update2016-07-22 04:45:03
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id266,689
net_rshares9,617,137,227
author_curate_reward""
vote details (1)
@bhokor ·
Great post, it explain quite well how hard is the arbitrage in this markets, thank you for show us it with some deep
๐Ÿ‘  ,
properties (23)
authorbhokor
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t013711723z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 01:37:09
last_update2016-07-18 01:37:09
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation1,535,566,094,086
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id157,333
net_rshares1,738,902,510
author_curate_reward""
vote details (2)
@bjones ·
See it's already paying off!
๐Ÿ‘  
properties (23)
authorbjones
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t010155566z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 01:01:57
last_update2016-07-18 01:01:57
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation694,189,806,634
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,904
net_rshares216,498,551
author_curate_reward""
vote details (1)
@blakemiles84 ·
$0.51
Awesome writeup, @jasonmcz 

Learned a lot on this one. Thanks for the shout-out too. I only noticed those transactions because of @roelandp's stream website.

Lines of convergence :)
๐Ÿ‘  , , , ,
properties (23)
authorblakemiles84
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t163724105z
categorymarket
json_metadata{"tags":["market"],"users":["jasonmcz","roelandp"]}
created2016-07-18 16:37:24
last_update2016-07-18 16:37:24
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.506 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length183
author_reputation51,861,865,663,185
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id168,735
net_rshares316,747,547,864
author_curate_reward""
vote details (5)
@jasonmcz ·
My pleasure man! It was your post that got me into market making at first place.
๐Ÿ‘  
properties (23)
authorjasonmcz
permlinkre-blakemiles84-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t005330873z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 00:53:30
last_update2016-07-19 00:53:30
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id177,330
net_rshares1,555,098,042
author_curate_reward""
vote details (1)
@blockchainbilly ·
Bravo man.  It makes me mad to think I will never be able to earn a Liq.Reward.  because of those whale gaming the system.....  I'm glad you are not only shining a light on it but offering some insight as well...  They seriously need to fix this or take the reward away completely.......
properties (22)
authorblockchainbilly
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t161352750z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 16:19:24
last_update2016-07-18 16:19:24
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation808,834,406,582
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id168,443
net_rshares0
@blocktrades · (edited)
I believe the plan is to eliminate the liquidity rewards soon (something I've been arguing for almost since they were introduced). If it turns out some form of liquidity reward is needed, it needs to be better thought out, and not so high.
properties (22)
authorblocktrades
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t033932300z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 03:39:30
last_update2016-07-19 03:39:48
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length239
author_reputation1,294,244,350,871,176
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id179,712
net_rshares0
@coinhoarder ·
$0.60
I proposed a solution, but it got very little love. Ironically the only whale that up voted it is the one getting a majority of the liquidity incentives (abit). LOL... https://steemit.com/sip/@coinhoarder/steem-proposal-abolishing-liquidity-incentives-and-reverting-the-funds-to-provide-actual-autonomous-liquidity
๐Ÿ‘  , , , , , , , , , , , , , ,
properties (23)
authorcoinhoarder
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t044819742z
categorymarket
json_metadata{"tags":["market"],"links":["https://steemit.com/sip/@coinhoarder/steem-proposal-abolishing-liquidity-incentives-and-reverting-the-funds-to-provide-actual-autonomous-liquidity"]}
created2016-07-18 04:48:21
last_update2016-07-18 04:48:21
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.512 HBD
curator_payout_value0.092 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length314
author_reputation2,745,814,745,891
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id159,854
net_rshares373,710,186,433
author_curate_reward""
vote details (15)
@coinz ·
I hope people don't go running to their nearest federal/government regulators and complain about "illegal" wash trades or whatever.  This is obviously an unregulated exchange and that is the whole point is it not?  Something about it being "trustless", one of those weird Bitcoin terms where the whole thing takes care of itself without outside interference.
properties (22)
authorcoinz
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t011833835z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 01:18:42
last_update2016-07-19 01:18:42
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length358
author_reputation658,193,822,915
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id177,657
net_rshares0
@capone ·
Only patients get the victory in a three-day all this bad weather will go away, and only those who sold their coin would remember this time as a nightmare,
properties (22)
authorcapone
permlinkre-coinz-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t022416911z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 02:24:15
last_update2016-07-19 02:24:15
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length155
author_reputation-969,281,550
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id178,638
net_rshares0
@cousteau ·
https://66.media.tumblr.com/8f02d2ebd5717041ae28a48196fc78cd/tumblr_n1mup6RgKY1scyl39o1_500.gif
properties (22)
authorcousteau
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t184317445z
categorymarket
json_metadata{"tags":["market"],"image":["https://66.media.tumblr.com/8f02d2ebd5717041ae28a48196fc78cd/tumblr_n1mup6RgKY1scyl39o1_500.gif"]}
created2016-07-18 18:43:18
last_update2016-07-18 18:43:18
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length95
author_reputation728,022,492,724
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id170,918
net_rshares0
@discombobulated ·
## Money fight!!
https://i.imgsafe.org/c59a528d8f.gif
๐Ÿ‘  ,
properties (23)
authordiscombobulated
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t042313911z
categorymarket
json_metadata{"tags":["market"],"image":["https://i.imgsafe.org/c59a528d8f.gif"]}
created2016-07-18 04:23:09
last_update2016-07-18 04:23:09
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation13,090,894,039,053
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id159,577
net_rshares431,733,631
author_curate_reward""
vote details (2)
@domavila ·
I am always down for the underdog to take out the whales!!
๐Ÿ‘  ,
properties (23)
authordomavila
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160717t235250725z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-17 23:52:51
last_update2016-07-17 23:52:51
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation3,816,570,043,566
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id155,992
net_rshares1,707,185,761
author_curate_reward""
vote details (2)
@dwinblood ·
That is incredibly detailed and helpful.  As someone who has never looked into how any of this is done I found your post very informative!
properties (22)
authordwinblood
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t003615598z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 00:36:09
last_update2016-07-19 00:36:09
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length138
author_reputation383,232,067,634,988
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id177,071
net_rshares0
@flexcougar ·
I only understand bits and pieces of the above, but what I gather, it is just one person providing liquidity, and getting then rewards for it?  If this is the case, isn't liquidity, liquidity?  If someone makes a better "engine" and then has the rewards, it is still liquidity right?  If the current rewarded makes a mistake, someone else will pick up the slack, or am I missing the point all together?
๐Ÿ‘  ,
properties (23)
authorflexcougar
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t025331268z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 02:53:33
last_update2016-07-18 02:53:33
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length402
author_reputation216,530,737,745
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id158,356
net_rshares331,330,697
author_curate_reward""
vote details (2)
@gainingsteem · (edited)
$1.16
@jasonmcz I'd been wondering about all this. I'm so glad you shared this info with us. Thank you! We need more helpful posts like this one. Keep up the good work!
๐Ÿ‘  
properties (23)
authorgainingsteem
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t072835896z
categorymarket
json_metadata{"tags":["market"],"users":["jasonmcz"]}
created2016-07-18 07:28:36
last_update2016-07-18 20:49:51
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value1.158 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length162
author_reputation1,097,114,372,677
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id161,639
net_rshares628,480,021,670
author_curate_reward""
vote details (1)
@gekko ·
love the twelve monitors 8]
๐Ÿ‘  , ,
properties (23)
authorgekko
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t185628193z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 18:56:27
last_update2016-07-18 18:56:27
depth1
children3
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation1,185,517,433,922
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id171,195
net_rshares2,021,930,232
author_curate_reward""
vote details (3)
@jasonmcz ·
$0.03
@gekko, I actually have 3 monitors at home for my trading desk!
๐Ÿ‘  ,
properties (23)
authorjasonmcz
permlinkre-gekko-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t003614524z
categorymarket
json_metadata{"tags":["market"],"users":["gekko"]}
created2016-07-19 00:36:15
last_update2016-07-19 00:36:15
depth2
children2
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id177,073
net_rshares21,193,662,526
author_curate_reward""
vote details (2)
@gekko ·
me too, i need more 8]
๐Ÿ‘  ,
properties (23)
authorgekko
permlinkre-jasonmcz-re-gekko-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t040556612z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 04:05:57
last_update2016-07-19 04:05:57
depth3
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation1,185,517,433,922
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id180,034
net_rshares506,503,786
author_curate_reward""
vote details (2)
@granblue · (edited)
Wow, your article sure shine a light on trading  steem currency. Thanks for sharing!
๐Ÿ‘  
properties (23)
authorgranblue
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t050823460z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 05:08:24
last_update2016-07-18 05:08:57
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation3,382,789
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id160,036
net_rshares216,498,551
author_curate_reward""
vote details (1)
@jl777 ·
I am correct on this
now i am being attacked by abit: https://steemit.com/hack/@jl777/i-am-being-attacked-on-liquidity-provider-points
๐Ÿ‘  ,
properties (23)
authorjl777
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t091124600z
categorymarket
json_metadata{"tags":["market"],"links":["https://steemit.com/hack/@jl777/i-am-being-attacked-on-liquidity-provider-points"]}
created2016-07-18 09:11:30
last_update2016-07-18 09:11:30
depth1
children2
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length134
author_reputation14,988,697,980,664
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id162,771
net_rshares6,140,297,975
author_curate_reward""
vote details (2)
@abit ·
$0.08
Sure. You can attack back, then I'll have to enlarge the spread, then you'll earn spread from me.. happy end.
๐Ÿ‘  ,
properties (23)
authorabit
permlinkre-jl777-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t093004495z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 09:30:30
last_update2016-07-18 09:30:30
depth2
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation141,171,499,037,785
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id163,004
net_rshares57,592,869,636
author_curate_reward""
vote details (2)
@jl777 ·
you have far more capital than all the others combined and with 16+ accounts at the top of the the list, any stalemate in points will just get you automatically the hourly rewards

but I guess it is clear that your position is that anything within the rules is acceptable behavior, regardless of impact to the community. Thanks for clarifying that. I had mistaken you for someone who cared about the long term success of STEEM
properties (22)
authorjl777
permlinkre-abit-re-jl777-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t095609144z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 09:56:09
last_update2016-07-18 09:56:09
depth3
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length426
author_reputation14,988,697,980,664
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id163,296
net_rshares0
@knircky · (edited)
$0.12
You know this site is still in beta. I'm sure getting these things solved is not simple.

Glad people are trying and battling with these guys. I think much bett than solving the issues via legal avenues is to build mechanics that can't be gamed.

Thank you for the entertaining post, explanations and your efforts.
๐Ÿ‘  , , , , ,
properties (23)
authorknircky
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t020221849z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 02:02:21
last_update2016-07-18 02:03:12
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length314
author_reputation212,905,587,244,262
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id157,672
net_rshares79,552,704,487
author_curate_reward""
vote details (6)
@liberosist ·
Awesome post! 

That is an insane setup, by the way!
๐Ÿ‘  
properties (23)
authorliberosist
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t052419203z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 05:24:18
last_update2016-07-18 05:24:18
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation177,167,275,265,899
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id160,209
net_rshares216,498,551
author_curate_reward""
vote details (1)
@liondani ·
Thanks for contributing to steemit. Keep giving liquidity... This post will help you further  ;)
properties (22)
authorliondani
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t134840800z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 13:48:42
last_update2016-07-18 13:48:42
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation95,095,146,236,111
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id166,223
net_rshares0
@lukestokes ·
$0.56
Really glad to see this stuff getting attention.

To me, the whales who rule the waters need to be really, really careful. If they try to get too much out of the goose that lays the golden eggs, they'll kill it. This entire beta experiment relies on the perception of fairness. People are here because they believe it represents a peaceful revolution towards more freedom, in so many ways from expression to monetary policy. What we're seeing so far is discouraging to many as great content is missed and other content receives insane rewards. If the economics and exponential growth kick in so that no one can win unless the top of the food chain decrees it... well, that's not going to be good long term. The market maker part is just one side of it.

Thanks for talking about it.
๐Ÿ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorlukestokes
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t005905905z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 00:59:06
last_update2016-07-18 00:59:06
depth1
children3
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.446 HBD
curator_payout_value0.111 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length782
author_reputation556,640,380,599,219
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,870
net_rshares351,211,482,983
author_curate_reward""
vote details (40)
@jasonmcz ·
$0.36
Well said @lukestokes,  I think most cryptocurrencies/projects always come down to the perception of freedom  and representation of something that's different which is why the community has its own unspoken rules such as no pre-mining, no pre-distribution of tokens  and etc. Whales accumulating liquidity reward by not even providing tight liquidity is something that would hurt the ecosystem in the long term especially for late-comers to come to realization that how 1% holds 99% of the STEEM (exaggeration here but you guys get my idea).
๐Ÿ‘  , , , , , , , , , , , , , , , , , ,
properties (23)
authorjasonmcz
permlinkre-lukestokes-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t012410410z
categorymarket
json_metadata{"tags":["market"],"users":["lukestokes"]}
created2016-07-18 01:24:09
last_update2016-07-18 01:24:09
depth2
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.325 HBD
curator_payout_value0.032 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length541
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id157,176
net_rshares230,740,433,260
author_curate_reward""
vote details (19)
@joshuanboles ·
The lack of manipulation for this particular cryptocurrency being a social promotion environment with this platform is critical to the success long-term.
๐Ÿ‘  ,
properties (23)
authorjoshuanboles
permlinkre-jasonmcz-re-lukestokes-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t014435826z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 01:44:36
last_update2016-07-19 01:44:36
depth3
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length153
author_reputation3,332,752,370,956
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id178,035
net_rshares5,166,378,289
author_curate_reward""
vote details (2)
@mikegold10 · (edited)
I followed along with the whole article, but that dog pic at the end - those hypnotic doggie eyes - I just can't stop staring at them.

Now what were we talking about?
๐Ÿ‘  
properties (23)
authormikegold10
permlinkre-lukestokes-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t134503856z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 13:45:03
last_update2016-07-18 13:45:48
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation165,517,707,873
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id166,170
net_rshares279,118,753
author_curate_reward""
vote details (1)
@luxiano-valdez ·
This why I appreciate steemit,  where else would find a self-critical analytical honest post, that ultimaletly  helps improve its own system?
๐Ÿ‘  , , ,
properties (23)
authorluxiano-valdez
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t013307042z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 01:33:06
last_update2016-07-18 01:33:06
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length141
author_reputation11,059,776,879
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id157,275
net_rshares6,195,211,143
author_curate_reward""
vote details (4)
@jasonmcz ·
my pleasure guys!
๐Ÿ‘  ,
properties (23)
authorjasonmcz
permlinkre-luxiano-valdez-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t013857763z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 01:38:57
last_update2016-07-18 01:38:57
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id157,365
net_rshares1,738,902,510
author_curate_reward""
vote details (2)
@makgorn ·
Well said
properties (22)
authormakgorn
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t100445917z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 10:02:06
last_update2016-07-18 10:02:06
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation666,514,786,070
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id163,367
net_rshares0
@michaellamden68 ·
Thank you, quite the "eye opener"!!
๐Ÿ‘  
properties (23)
authormichaellamden68
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t054112971z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 05:41:12
last_update2016-07-18 05:41:12
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation98,902,028,363,203
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id160,395
net_rshares216,498,551
author_curate_reward""
vote details (1)
@msevoe ·
Informative
properties (22)
authormsevoe
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t003436617z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-19 00:34:45
last_update2016-07-19 00:34:45
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation24,066,117,431
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id177,045
net_rshares0
@nysemax ·
Thank you! Very interesting article!
๐Ÿ‘  ,
properties (23)
authornysemax
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t005329406z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 00:53:27
last_update2016-07-18 00:53:27
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation1,798,349,458
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,805
net_rshares457,650,601
author_curate_reward""
vote details (2)
@phenom ·
Don't give up, @jasonmcz. I hope you'll beat those whales! 
Be strong!
๐Ÿ‘  , , , ,
properties (23)
authorphenom
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160717t234604473z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-17 23:46:03
last_update2016-07-17 23:46:03
depth1
children4
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation11,285,888,514,513
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id155,892
net_rshares5,562,592,015
author_curate_reward""
vote details (5)
@jasonmcz ·
Thank you for encouraging me on this hehe! I wasn't going to but earning a bit money here and there by ripping some of the whale's orders is fun too!
๐Ÿ‘  , , ,
properties (23)
authorjasonmcz
permlinkre-phenom-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t003736844z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 00:37:36
last_update2016-07-18 00:37:36
depth2
children3
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length149
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,612
net_rshares6,248,116,390
author_curate_reward""
vote details (4)
@abit ·
Glad that we have more traders like you! And I'm happy to share some of the rewards. Perhaps eventually we'll have a better liquidity rewarding system, but before it's put in place, we just have to guard the funds by taking them by ourselves.

By the way, as pointed out in [this article](https://bitsharestalk.org/index.php/topic,20376.msg262560.html#msg262560), maker-taker schema won't work here. Any other ideas?
๐Ÿ‘  , ,
properties (23)
authorabit
permlinkre-jasonmcz-re-phenom-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t005902096z
categorymarket
json_metadata{"tags":["market"],"links":["https://bitsharestalk.org/index.php/topic,20376.msg262560.html#msg262560"]}
created2016-07-18 00:59:27
last_update2016-07-18 00:59:27
depth3
children2
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length416
author_reputation141,171,499,037,785
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,876
net_rshares4,672,807,184
author_curate_reward""
vote details (3)
@question-answers ·
<p><strong>Welcome </strong>to the Steemit community! I have added you to my list of people to follow and I hope that you will do the same.</p>
<p>I have also created a blog here and would like to ask if you would kindly <strong>contribute </strong>some of your <strong>knowledge </strong>to the <strong>community </strong>and perhaps <strong>answer a question</strong> or two I have posted on the links below. ย </p>
<p>By simply answering a few general questions your help to build our <strong>collective knowledge base</strong>, and your input is valuable.</p>
<p><strong>How valuable is my input?</strong> ย Well answers to the questions you post have the opportunity to earn <strong>STEEM </strong>which can be converted into Bitcoin and then your countries local currency! ย <strong>IT IS TRULY AMAZING!</strong></p>
<p><strong>I once answered a question on here and received 59 STEEM which converted to roughly $177.00 in USD! ย </strong>ย The reason was that my answer was of value to readers! ย So please add your value and answer a few questions here:</p>
<p><a href="https://steemit.com/questions/@question-answers/what-should-every-foreigner-know-about-your-country">What should every foreigner know about your country?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-is-your-favorite-youtube-video-of-all-time">What is your favorite YouTube Video of all-time?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-is-your-favorite-quote-which-quote-inspires-you">What is your favorite quote: Which quote inspires you?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/payout-timer-when-do-you-get-paid-for-your-contributions">Payout timer. ย When do you get paid for your contributions?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-is-the-role-of-religion-or-spirituality-in-your-life">What is the role of religion or spirituality in your life?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-is-the-best-habit-you-ve-taken-up-from-another-person">What is the best habit that you have taken up from another person?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-is-the-best-way-to-lose-weight-tell-us-how-you-did-it">What is the best way to lose weight and how did you do it?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-would-you-do-differently-if-you-knew-nobody-would-judge-you">What would you do differently if you knew no one would judge you?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-are-some-amazing-facts-that-sound-like-bs-but-are-actually-true">What are some amazing facts that sound like BS but are actually true?</a></p>
<p><a href="https://steemit.com/questions/@question-answers/what-is-the-best-music-video-of-all-time">What is your favorite music video of all time?</a></p>
<p><strong>YOUR CONTRIBUTIONS MATTER! ย YOUR ANSWERS MATTER! ย YOUR QUALITY ANSWERS PAY!</strong></p>
<p>ย #QUESTIONS #ANSWERS #CONTRIBUTE #TELLYOURSTORY #DISCUSS #VIVASTEEMย </p>
<p><br /></p>
properties (22)
authorquestion-answers
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160728t051356516z
categorymarket
json_metadata{"tags":["market"],"links":["https://steemit.com/questions/@question-answers/what-should-every-foreigner-know-about-your-country","https://steemit.com/questions/@question-answers/what-is-your-favorite-youtube-video-of-all-time","https://steemit.com/questions/@question-answers/what-is-your-favorite-quote-which-quote-inspires-you","https://steemit.com/questions/@question-answers/payout-timer-when-do-you-get-paid-for-your-contributions","https://steemit.com/questions/@question-answers/what-is-the-role-of-religion-or-spirituality-in-your-life","https://steemit.com/questions/@question-answers/what-is-the-best-habit-you-ve-taken-up-from-another-person","https://steemit.com/questions/@question-answers/what-is-the-best-way-to-lose-weight-tell-us-how-you-did-it","https://steemit.com/questions/@question-answers/what-would-you-do-differently-if-you-knew-nobody-would-judge-you","https://steemit.com/questions/@question-answers/what-are-some-amazing-facts-that-sound-like-bs-but-are-actually-true","https://steemit.com/questions/@question-answers/what-is-the-best-music-video-of-all-time"]}
created2016-07-28 05:13:57
last_update2016-07-28 05:13:57
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,085
author_reputation-2,553,467,922,053
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id426,222
net_rshares0
@rdwn ·
Interesting article. I would like to point out it is important to never throw all of your eggs in one basket. Even if you believe something will be successful you always need a plan B. I think steemit is a great investment but if you are talking about your retirement plan, I would be careful. Cheers!
properties (22)
authorrdwn
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t131742509z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 13:17:42
last_update2016-07-18 13:17:42
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length301
author_reputation-377,302,683,967
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id165,807
net_rshares0
@riverhead ·
Great article and yes, please keep competing. I love the "People think it looks like this but it actually looks like this small screen of code" bit. So True. My wife calls it, "The Matrix" because there's no fun pictures just lines of code.
๐Ÿ‘  
properties (23)
authorriverhead
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t020904666z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 02:09:00
last_update2016-07-18 02:09:00
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation12,486,999,157,746
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id157,748
net_rshares216,498,551
author_curate_reward""
vote details (1)
@sigmajin · (edited)
@jasonmcz  I'm 99% certain that these micro wash-trades are happening on bittrex too.  If you have a way to exploit it, I'd love to hear about it.  I have a not bad amount of capital on there.
๐Ÿ‘  ,
properties (23)
authorsigmajin
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t025324570z
categorymarket
json_metadata{"tags":["market"],"users":["jasonmcz"]}
created2016-07-18 02:53:24
last_update2016-07-18 02:54:12
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length192
author_reputation35,847,511,233,614
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id158,353
net_rshares381,094,491
author_curate_reward""
vote details (2)
@jasonmcz ·
I am happy to take a look and do some investigation tomorrow. If you are on slack, feel free to message me anytime @jasonmcz, but normally I am in my own channel (http://tinyurl.com/hjpk6za) for my project.
๐Ÿ‘  
properties (23)
authorjasonmcz
permlinkre-sigmajin-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t033226929z
categorymarket
json_metadata{"tags":["market"],"users":["jasonmcz"],"links":["http://tinyurl.com/hjpk6za"]}
created2016-07-18 03:32:27
last_update2016-07-18 03:32:27
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id158,946
net_rshares216,498,551
author_curate_reward""
vote details (1)
@silentpower ·
Normally I don't approve of whale hunting but in this case I do!
๐Ÿ‘  , , , ,
properties (23)
authorsilentpower
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t032110162z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 03:21:12
last_update2016-07-18 03:21:12
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation9,661,323,297,147
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id158,793
net_rshares2,071,239,472
author_curate_reward""
vote details (5)
@jasonmcz ·
$0.03
@silentpower that's a good one!
๐Ÿ‘  
properties (23)
authorjasonmcz
permlinkre-silentpower-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160719t003719239z
categorymarket
json_metadata{"tags":["market"],"users":["silentpower"]}
created2016-07-19 00:37:18
last_update2016-07-19 00:37:18
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.031 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id177,089
net_rshares20,839,106,201
author_curate_reward""
vote details (1)
@tinfoilfedora · (edited)
$0.11
I noticed the same thing a few days ago and tried a similar test manually, and got nothing. I posted about it and asked if I should have gotten any rewards, my post was ignored by the ones that could answer, even though they were answering my other questions.

It is pretty obvious the people coding this seem to be the ones making all the hourly profit. If there are already 6 bots permanently at the top of the cue for rewards, that reinforces the idea. Regular steemit users and windows miners cannot even place orders on the market right now, only linux miners and linux developers can. If it wasn't for those 2 developers sharing info with you, that info never would have never even made it out to the public.

Perhaps you should focus an article on the illegal wash trade part, maybe that will get some attention.
๐Ÿ‘  , , , , , , , , , , ,
properties (23)
authortinfoilfedora
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t000450500z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 00:04:54
last_update2016-07-18 00:05:36
depth1
children1
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.107 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length819
author_reputation20,279,768,518,195
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,151
net_rshares73,346,828,433
author_curate_reward""
vote details (12)
@jasonmcz ·
$0.09
"Perhaps you should focus an article on the illegal wash trade part, maybe that will get some attention. "
yep agreed!
๐Ÿ‘  , , , , , ,
properties (23)
authorjasonmcz
permlinkre-tinfoilfedora-re-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t003814628z
categorymarket
json_metadata{"tags":["market"]}
created2016-07-18 00:38:15
last_update2016-07-18 00:38:15
depth2
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.075 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation15,125,782,224,192
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id156,620
net_rshares62,765,767,027
author_curate_reward""
vote details (7)
@toroiskandar ·
What do you think with the yobit
https://steemit.com/yobit/@toroiskandar/yobit-net
๐Ÿ‘  
properties (23)
authortoroiskandar
permlinkre-jasonmcz-the-good-the-bad-and-the-ugly-a-day-as-an-steemit-market-maker-20160718t074031951z
categorymarket
json_metadata{"tags":["market"],"links":["https://steemit.com/yobit/@toroiskandar/yobit-net"]}
created2016-07-18 07:40:33
last_update2016-07-18 07:40:33
depth1
children0
last_payout2016-08-23 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation1,308,752,360,910
root_title"The Good, the Bad and the Ugly -- a Day as a STEEMIT Market Maker"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id161,761
net_rshares219,396,523
author_curate_reward""
vote details (1)