create account

Analyzing the crypto market with Python by furion

View this thread on: hive.blogpeakd.comecency.com
· @furion ·
$1,193.05
Analyzing the crypto market with Python
I am currently on a trip trough Europe, and I have met some interesting individuals whom have recently realized large gains in crypto. I've decided to spend the weekend writing some code to help me learn a bit more about investing/trading in this space. As a bonus, I have also hacked together a simple trading strategy.

## Requirements
- Python 3.5+, [iPython](http://ipython.readthedocs.io/en/stable/) Notebook
- [Pandas - Python Data Analysis Library](http://pandas.pydata.org/)
- [Toolz](http://toolz.readthedocs.io/en/latest/) and [Funcy](http://funcy.readthedocs.io/en/stable/) (functional programming libs for Python)
- Historic Data from [coinmarketcap.northpole.ro](http://coinmarketcap.northpole.ro/)


## What if I invested $100 in every top coin a year ago?
I would have about $140,000+ right now. That is an insanely good 14x yearly gain, most of which has been materialized in the past 2 months.
![top100.png](https://steemitimages.com/DQmdgy5PT7y6TVJ3mVcxNJ83u4aSRRA2LNPxeQrpN3h7kbq/top100.png)


## What if I invested in 10 random coins a year ago?
Picking top coins has some survivor bias built in, so I've wondered about how the random portfolios would do (think Dr. Malkiel's Monkeys experiment). Here is an example of 15 portfolios comprised of 10 random coins, yielding $30,000 to $400,000 in returns.
![random_portfolio.png](https://steemitimages.com/DQmSA9hbwkQ2Nwt3PEobpmXomUw8VEUAKRMtMGQyFKLMpch/random_portfolio.png)
*Feel free to tweak the params and generate more portfolios on your own.*

## Which coins did the best?
The variance on returns of different coins can be quite large, for example, here are returns on some top coins for the past 30 days.

![Screen Shot 2017-06-12 at 8.53.40 PM.png](https://steemitimages.com/DQmRRuWc7UA8PzHva4pBeJq1JCkpgkysx8Jnk8newpejgUK/Screen%20Shot%202017-06-12%20at%208.53.40%20PM.png)

To deepen my understanding of variance and correlations, I've built some interactive charts to display returns from different coins, as well as normalized returns versus an arbitrary benchmark (ie BTC).

![newplot (2).png](https://steemitimages.com/DQmUjPukJnMzkvTzH1pJ6rkBLYxpe6dp4oQcMcFrqLiKYQo/newplot%20(2).png)

*Please, feel free expand the size of the universe, and play with the chart interactively in your notebook.*

![newplot (3).png](https://steemitimages.com/DQmWXj74nt1eAGFgMJG544hyuNTXmLrudUK9zBP9ci18hUn/newplot%20(3).png)


## Simple momentum strategy
The idea behind this strategy is simple - we want to buy the coins that are rising in value, and drop the coins that are not doing so well. I have picked the parameters haphazardly and I've avoided optimization to avoid the risk of curve-fitting. 

### Spec
We rebalance our portfolio weekly.

Rules:
 - we can not initially buy more than 10,000 worth of coins
 - with each sell/trade, we re-calculate balance
 - no trade can be bigger than 1000 USD

Strategy:
 - if a coin goes up 30% or more in a week, buy it
 - if coin goes up 100% from last trade, sell half
 - if coin goes down by 50% in a week, sell all
 
Filters:
 - can't be top 10
 - must be in top 130
 - must have at least 1MM mkt cap

The whole strategy can be succinctly described using a few helper functions.

![Screen Shot 2017-06-12 at 9.02.46 PM.png](https://steemitimages.com/DQmTgzjajqThruev4KuAA91BMcD8VnT6mM9Lpsv4MGB6fL2/Screen%20Shot%202017-06-12%20at%209.02.46%20PM.png)

### Results
Before I go any further, I should mention that **this strategy is very simplistic, and it suffers from serious biases/flaws**. It is in my opinion not suitable for real-money trading, and I should explain why, and work on improvements for my next post.

The results on trades from 2017 look promising, as the backtest of this system yields $73,815 in value (7x gain in less than 6 months).

It would be good to know how does this strategy compare to buy-and-hold and random buy-and-hold strategies above. Well, it totally bombs, as we go nearly broke ($3438 of initial $10000). Maybe our strategy is only suitable for the recent market, or perhaps I have bugs in my code.

**To be continued...**

------------

#### Source
Source code for data gathering/cleanup, analysis and the trading strategy is available [here](https://github.com/Netherdrake/CryptoTradingResearch/blob/master/01-Introduction.ipynb). Use at own risk (see disclaimer).

#### Disclaimer
This project is for educational purposes only. The code provided is not suitable for real-money trading, and comes with absolutely no warranty.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 935 others
👎  
properties (23)
authorfurion
permlinkanalyzing-the-crypto-market-with-python
categorypython
json_metadata{"tags":["python","crypto","money","trading"],"image":["https://steemitimages.com/DQmdgy5PT7y6TVJ3mVcxNJ83u4aSRRA2LNPxeQrpN3h7kbq/top100.png","https://steemitimages.com/DQmSA9hbwkQ2Nwt3PEobpmXomUw8VEUAKRMtMGQyFKLMpch/random_portfolio.png","https://steemitimages.com/DQmRRuWc7UA8PzHva4pBeJq1JCkpgkysx8Jnk8newpejgUK/Screen%20Shot%202017-06-12%20at%208.53.40%20PM.png","https://steemitimages.com/DQmUjPukJnMzkvTzH1pJ6rkBLYxpe6dp4oQcMcFrqLiKYQo/newplot%20(2).png","https://steemitimages.com/DQmWXj74nt1eAGFgMJG544hyuNTXmLrudUK9zBP9ci18hUn/newplot%20(3).png","https://steemitimages.com/DQmTgzjajqThruev4KuAA91BMcD8VnT6mM9Lpsv4MGB6fL2/Screen%20Shot%202017-06-12%20at%209.02.46%20PM.png"],"links":["http://ipython.readthedocs.io/en/stable/","http://pandas.pydata.org/","http://toolz.readthedocs.io/en/latest/","http://funcy.readthedocs.io/en/stable/","http://coinmarketcap.northpole.ro/","https://github.com/Netherdrake/CryptoTradingResearch/blob/master/01-Introduction.ipynb"],"app":"steemit/0.1","format":"markdown"}
created2017-06-13 21:54:33
last_update2017-06-13 21:54:33
depth0
children198
last_payout2017-06-20 21:54:33
cashout_time1969-12-31 23:59:59
total_payout_value1,062.946 HBD
curator_payout_value130.107 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,481
author_reputation116,503,940,714,958
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,221
net_rshares46,861,085,298,069
author_curate_reward""
vote details (1000)
@aarkay ·
Great stuff, thank you for sharing..
👍  ,
👎  ,
properties (23)
authoraarkay
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t230411669z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:04:12
last_update2017-06-13 23:04:12
depth1
children0
last_payout2017-06-20 23:04:12
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_reputation-164,626,160,289
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,945
net_rshares-9,641,287,797
author_curate_reward""
vote details (4)
@aaronparker ·
Coders! Gotta love 'em. Nice work.
properties (22)
authoraaronparker
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t074304554z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 07:43:09
last_update2017-06-14 07:43:09
depth1
children0
last_payout2017-06-21 07:43:09
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_length34
author_reputation46,479,822,297
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,804,931
net_rshares0
@adriansky ·
THINGS ARE LOOKING BULLISH!
properties (22)
authoradriansky
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t121345925z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 12:13:45
last_update2017-06-14 12:13:45
depth1
children0
last_payout2017-06-21 12:13:45
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_reputation142,725,418,187,241
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,819,771
net_rshares0
@afrasiab ·
nice work keeep it up (y)
properties (22)
authorafrasiab
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t230911778z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:09:15
last_update2017-06-13 23:09:15
depth1
children0
last_payout2017-06-20 23:09:15
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_length25
author_reputation158,118,858
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,272
net_rshares0
@agbaregha ·
nice post.please check my blog and upvote my posts as i also upvote yours too. Because this will help both of us.
properties (22)
authoragbaregha
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t154014923z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 15:40:15
last_update2017-06-15 15:40:15
depth1
children0
last_payout2017-06-22 15:40:15
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_length113
author_reputation-2,303,639,052,731
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,929,460
net_rshares0
@aguazul ·
Oh cool!  It looks like http://coinmarketcap.northpole.ro has historical data on all coins!
👍  
properties (23)
authoraguazul
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t233312458z
categorypython
json_metadata{"tags":["python"],"links":["http://coinmarketcap.northpole.ro"],"app":"steemit/0.1"}
created2017-06-13 23:33:12
last_update2017-06-13 23:33:12
depth1
children0
last_payout2017-06-20 23:33:12
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_length91
author_reputation44,356,920,781
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,839
net_rshares290,176,823
author_curate_reward""
vote details (1)
@air8819 ·
Awesome article, I follow you
👍  
properties (23)
authorair8819
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t233833054z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:38:36
last_update2017-06-13 23:38:36
depth1
children0
last_payout2017-06-20 23:38:36
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_length29
author_reputation2,992,446
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,179
net_rshares191,516,577
author_curate_reward""
vote details (1)
@akkha ·
So much informative post ! Thank you for your effort !
![thumbs up steem with akkha.jpg](https://steemitimages.com/DQmcxhQm8weYpmQHp1PA8RkxpoZzMgHWYwykm7vcQH3jug9/thumbs%20up%20steem%20with%20akkha.jpg)
properties (22)
authorakkha
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t120225741z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmcxhQm8weYpmQHp1PA8RkxpoZzMgHWYwykm7vcQH3jug9/thumbs%20up%20steem%20with%20akkha.jpg"],"app":"steemit/0.1"}
created2017-06-14 12:02:27
last_update2017-06-14 12:02:27
depth1
children0
last_payout2017-06-21 12:02:27
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_length202
author_reputation6,662,251,112,812
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,819,045
net_rshares0
@alanford ·
$16.40
Every strategy is going to work in the market that you made a strategy for,  now once the market changes you will have to develop a ​strategy for that market, it is never ending circle.
👍  , , , , , , , , , , , , , ,
properties (23)
authoralanford
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t223236539z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:32:36
last_update2017-06-13 22:32:36
depth1
children3
last_payout2017-06-20 22:32:36
cashout_time1969-12-31 23:59:59
total_payout_value16.013 HBD
curator_payout_value0.384 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length185
author_reputation14,598,669,737
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,724
net_rshares646,272,520,705
author_curate_reward""
vote details (15)
@furion ·
Indeed.  I think the trick is in building a portfolio of robust strategies that can adhere to different market conditions.
👍  
properties (23)
authorfurion
permlinkre-alanford-re-furion-analyzing-the-crypto-market-with-python-20170613t223647636z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:36:48
last_update2017-06-13 22:36:48
depth2
children2
last_payout2017-06-20 22:36:48
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_length122
author_reputation116,503,940,714,958
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,038
net_rshares268,390,531
author_curate_reward""
vote details (1)
@cryptotime ·
So you're actually talking about some sort of AI portfolio :)
👍  , ,
properties (23)
authorcryptotime
permlinkre-furion-re-alanford-re-furion-analyzing-the-crypto-market-with-python-20170613t235420044z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:54:24
last_update2017-06-13 23:54:24
depth3
children1
last_payout2017-06-20 23:54:24
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_length61
author_reputation38,622,822,235
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,778,183
net_rshares710,795,643
author_curate_reward""
vote details (3)
@altcointrends ·
Wow - great concept and approach. Looking forward to seeing the next steps you take with it
properties (22)
authoraltcointrends
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t084704347z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 08:47:00
last_update2017-06-14 08:47:00
depth1
children0
last_payout2017-06-21 08:47:00
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_length91
author_reputation267,244,538,554
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,808,311
net_rshares0
@amplifiedtrader ·
https://s3.amazonaws.com/tradingview/snapshots/k/kSkpRcYv.png
properties (22)
authoramplifiedtrader
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t234344660z
categorypython
json_metadata{"tags":["python"],"image":["https://s3.amazonaws.com/tradingview/snapshots/k/kSkpRcYv.png"],"app":"steemit/0.1"}
created2017-06-14 23:43:42
last_update2017-06-14 23:43:42
depth1
children0
last_payout2017-06-21 23:43:42
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_length61
author_reputation17,252,041,613
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,872,933
net_rshares0
@anacristinasilva · (edited)
A beautiful strategy, it's worth taking the risk. Beautiful work! @furion
properties (22)
authoranacristinasilva
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t221836615z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1","users":["furion"]}
created2017-06-13 22:18:42
last_update2017-06-13 22:19:09
depth1
children0
last_payout2017-06-20 22:18:42
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_length73
author_reputation111,698,655,748,730
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,706
net_rshares0
@andreben ·
Very interesting strategy you have made. The thing is that the market changes rapidly and thus you have to develop the code and strategy to change with the market!
👍  
properties (23)
authorandreben
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t224509717z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:44:03
last_update2017-06-13 22:44:03
depth1
children0
last_payout2017-06-20 22:44:03
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_length163
author_reputation31,553,467,105
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,562
net_rshares290,176,918
author_curate_reward""
vote details (1)
@arcange ·
$0.07
You have been mentionned in my hit-parade of 2017.06.13
Congratulations @furion!
Your post was mentioned in my [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170613) in the following categories:

* Upvotes - Ranked 5 with 889 upvotes
* Comments - Ranked 9 with 143 comments
* Pending payout - Ranked 3 with $ 1482,01
👍  
properties (23)
authorarcange
permlinkre-analyzing-the-crypto-market-with-python-20170613t163138000z
categorypython
json_metadata""
created2017-06-14 14:31:36
last_update2017-06-14 14:31:36
depth1
children0
last_payout2017-06-21 14:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.063 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length286
author_reputation1,146,606,601,469,178
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,830,038
net_rshares2,948,251,461
author_curate_reward""
vote details (1)
@available ·
$2.65
I have been really intrigued by the recent crypto market rise the past 2 months and I'm developing am interest to trade some on @poloniex and see if i can get a decent gain i will go in with just $10 for starters 

I'm a simple minnow so i can't go all in on huge amount of money
👍  , , , , , , , , ,
properties (23)
authoravailable
permlinkre-furion-2017614t1162638z
categorypython
json_metadata{"tags":"python","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-13 22:16:12
last_update2017-06-13 22:16:12
depth1
children1
last_payout2017-06-20 22:16:12
cashout_time1969-12-31 23:59:59
total_payout_value2.646 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length279
author_reputation202,493,896,188
root_title"Analyzing the crypto market with Python"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,552
net_rshares109,798,437,853
author_curate_reward""
vote details (10)
@lexiconical · (edited)
Well, as you can see from the first chart, even small amounts invested in some of the top coins could be very profitable! Good luck! Don't put in anything you can't afford to lose.
properties (22)
authorlexiconical
permlinkre-available-re-furion-2017614t1162638z-20170613t222102105z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:21:06
last_update2017-06-13 22:21:45
depth2
children0
last_payout2017-06-20 22:21:06
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_length180
author_reputation183,198,168,434,738
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,891
net_rshares0
@ballfx ·
Good info thank.
👍  
properties (23)
authorballfx
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t075919456z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 07:59:21
last_update2017-06-14 07:59:21
depth1
children0
last_payout2017-06-21 07:59:21
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_length16
author_reputation9,068,032
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,805,714
net_rshares290,177,063
author_curate_reward""
vote details (1)
@bba ·
Very Insightful article. The timing of getting in the trades is very crucial. It so happens that the crypto market was booming during the period of your simulation. I am curious to know what the results may be if you run it between 2014 to 2015.
properties (22)
authorbba
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t145415382z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 14:54:18
last_update2017-06-14 14:54:18
depth1
children0
last_payout2017-06-21 14:54: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_length245
author_reputation103,033,769,282
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,832,043
net_rshares0
@beordo · (edited)
$15.57
I really like your recreation of the monkey experiment. It shows the enormous deviation in returns in such a short period of time. (And the recent bull trend, every portfolio has positive returns?!)

I'm not a fan of market timing, especially with backtesting. At first glance, it always seems that a 'golden rule' or 'perfect trading strategy' exists. But when you backtest on a different time period, it suddenly doesn't work. However, I'm often tempted to try to time the market, so every once in a while I like to go back to Vanguards investing guide: https://personal.vanguard.com/us/insights/investingtruths/investing-truth-about-emotion
If you play around with the interactive chart you can see that small changes have a big effect and that overall, it's hard to beat the market.

Don't think that I didn't like your project though! Love it, just don't like market timing. ;)
👍  , , , , , , ,
properties (23)
authorbeordo
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222458069z
categorypython
json_metadata{"tags":["python"],"links":["https://personal.vanguard.com/us/insights/investingtruths/investing-truth-about-emotion"],"app":"steemit/0.1"}
created2017-06-13 22:25:00
last_update2017-06-14 06:33:45
depth1
children2
last_payout2017-06-20 22:25:00
cashout_time1969-12-31 23:59:59
total_payout_value11.682 HBD
curator_payout_value3.887 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length882
author_reputation149,340,788,110
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,170
net_rshares613,427,371,635
author_curate_reward""
vote details (8)
@canuckpride ·
$0.04
I think that's the beauty in price point smoothing (aka buying incrementally over time), and finding low cost options with baskets of securities

Another reason why letting the Winklevii get their ETF would have been a helpful investment vehicle
👍  , ,
properties (23)
authorcanuckpride
permlinkre-beordo-re-furion-analyzing-the-crypto-market-with-python-20170613t233123273z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:31:24
last_update2017-06-13 23:31:24
depth2
children0
last_payout2017-06-20 23:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length245
author_reputation63,356,728,720
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,739
net_rshares1,828,507,431
author_curate_reward""
vote details (3)
@mkultra87f ·
$0.04
Thank you for that Vanguard link, a great read right there.
👍  ,
properties (23)
authormkultra87f
permlinkre-beordo-re-furion-analyzing-the-crypto-market-with-python-20170614t141640959z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 14:16:42
last_update2017-06-14 14:16:42
depth2
children0
last_payout2017-06-21 14:16:42
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length59
author_reputation54,168,833,786
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,828,786
net_rshares1,638,474,555
author_curate_reward""
vote details (2)
@billyeun ·
$0.07
dont do buy and sell!! just DO buy HOLD and SELL soon
and buy good project not really promising but can solve a problem.
remember "SOLUTION TO A PROBLEM" are the best products/services in any successful business.
👍  ,
properties (23)
authorbillyeun
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t004750461z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:47:51
last_update2017-06-14 00:47:51
depth1
children0
last_payout2017-06-21 00:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.054 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation68,992,396,999
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,781,486
net_rshares2,752,136,246
author_curate_reward""
vote details (2)
@bitbandit ·
With the <20% share of my crypto that I dare to keep on an exchange, I spread it somewhat equally over around 10 different currencies. Just buy and hold, some re-balancing every once in a while. In hindsight I would sure have done better if I had always just held onto things.
👍  ,
properties (23)
authorbitbandit
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231459027z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:14:57
last_update2017-06-13 23:14:57
depth1
children1
last_payout2017-06-20 23:14:57
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_length276
author_reputation1,967,484,814
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,649
net_rshares435,514,073
author_curate_reward""
vote details (2)
@violator ·
Same lol. Lesson learned: if selling, don't sell all of it, you never know what will happen!
👍  
properties (23)
authorviolator
permlinkre-bitbandit-re-furion-analyzing-the-crypto-market-with-python-20170614t150025125z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 15:01:36
last_update2017-06-14 15:01:36
depth2
children0
last_payout2017-06-21 15:01:36
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_length92
author_reputation459,685,309,862
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,832,613
net_rshares290,177,151
author_curate_reward""
vote details (1)
@bonexx55 ·
@furion Awesome Analysis! Spot on! I am trying to get my hands dirty with python so as to analyse cryto currency data....... Kindly follow back.... I have some interesting projects you might like......
properties (22)
authorbonexx55
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t084124549z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-15 08:44:39
last_update2017-06-15 08:44:39
depth1
children0
last_payout2017-06-22 08:44:39
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_length201
author_reputation12,765,639,103
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,903,198
net_rshares0
@breathless ·
good post. thank you
properties (22)
authorbreathless
permlinkre-furion-2017614t81121417z
categorypython
json_metadata{"tags":"python","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-13 23:11:24
last_update2017-06-13 23:11:24
depth1
children0
last_payout2017-06-20 23:11:24
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_length20
author_reputation44,404,962,593
root_title"Analyzing the crypto market with Python"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,432
net_rshares0
@britt.the.ish ·
Interesting analysis and strategy, looking forward to your next post covering it more in depth.
👍  
properties (23)
authorbritt.the.ish
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t215909514z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 21:59:09
last_update2017-06-13 21:59:09
depth1
children0
last_payout2017-06-20 21:59:09
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_reputation2,180,995,513,382
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,521
net_rshares197,320,110
author_curate_reward""
vote details (1)
@btcmillionaire ·
$1.09
I love data, and enjoy the way you show it. Any chance on https://steemdata.com/charts we can have more chance to play with the charts and go back in time plus get the raw numbers (without being a coder)?
👍  ,
properties (23)
authorbtcmillionaire
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t093901973z
categorypython
json_metadata{"tags":["python"],"links":["https://steemdata.com/charts"],"app":"steemit/0.1"}
created2017-06-14 09:39:03
last_update2017-06-14 09:39:03
depth1
children0
last_payout2017-06-21 09:39:03
cashout_time1969-12-31 23:59:59
total_payout_value1.084 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length204
author_reputation8,659,596,341,168
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,810,963
net_rshares43,032,722,118
author_curate_reward""
vote details (2)
@carface ·
$6.64
Always nice to see visuals of what could have happened.
👍  
properties (23)
authorcarface
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t223800200z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:38:03
last_update2017-06-13 22:38:03
depth1
children0
last_payout2017-06-20 22:38:03
cashout_time1969-12-31 23:59:59
total_payout_value4.978 HBD
curator_payout_value1.657 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation20,232,737,189,861
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,121
net_rshares261,554,716,445
author_curate_reward""
vote details (1)
@carloserp2000 ·
excelente post amigo, very good interesting your publication @furion
properties (22)
authorcarloserp2000
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t230403703z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-13 23:04:06
last_update2017-06-13 23:04:06
depth1
children0
last_payout2017-06-20 23:04:06
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_length68
author_reputation2,142,106,777,769
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,938
net_rshares0
@chineselanguage ·
thanks follow me upvote me.. inturn i will follow you upvote you
properties (22)
authorchineselanguage
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t234849328z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:48:48
last_update2017-06-13 23:48:48
depth1
children1
last_payout2017-06-20 23:48:48
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_reputation82,701,083,792
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,816
net_rshares0
@sflaherty ·
I seen you next to my comment, always down to help a guy trying to come up in the world. Consider yourself followed, not a whale here but I am a full timer who helps out in the community so if you need anything let me know. Gotta give it to the guys trying to come up in Steemit, know how that is.
properties (22)
authorsflaherty
permlinkre-chineselanguage-re-furion-analyzing-the-crypto-market-with-python-20170615t053622644z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 05:36:21
last_update2017-06-15 05:36:21
depth2
children0
last_payout2017-06-22 05:36:21
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_length297
author_reputation5,562,650,432,515
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,893,706
net_rshares0
@coodex ·
Nice strategy...
properties (22)
authorcoodex
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t225332030z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:23:39
last_update2017-06-13 22:23:39
depth1
children0
last_payout2017-06-20 22:23:39
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_length16
author_reputation14,003,280
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,065
net_rshares0
@cozzasteem ·
$0.11
Great work and infos.
I'm a programmer, I appreciate double your work ;)
👍  
properties (23)
authorcozzasteem
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t003246524z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 00:32:51
last_update2017-06-15 00:32:51
depth1
children0
last_payout2017-06-22 00:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation462,365,102,274
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,876,036
net_rshares4,683,472,184
author_curate_reward""
vote details (1)
@cryptorambo ·
Python is an interesting tool I have not had the opportunity to analyze 100% its potential but I am integrating integrally in your world.
Python is great.
properties (22)
authorcryptorambo
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231112855z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:11:12
last_update2017-06-13 23:11:12
depth1
children0
last_payout2017-06-20 23:11:12
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_length154
author_reputation152,275,680,484
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,420
net_rshares0
@cryptorambo ·
Sorry for somebody can help me I will be very grateful, after running my python code of a small project throws me this error and I do not know what it should be.

TypeError: 'NoneType' object has no attribute '__getitem__'
👍  
properties (23)
authorcryptorambo
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t232256690z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:23:30
last_update2017-06-13 23:23:30
depth1
children0
last_payout2017-06-20 23:23:30
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_length222
author_reputation152,275,680,484
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,207
net_rshares197,320,110
author_curate_reward""
vote details (1)
@cryptotradr ·
Thanks for that post! Interesting code. What is this import:

from src.markets import *

Thanks
properties (22)
authorcryptotradr
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t022236360z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 02:22:42
last_update2017-06-15 02:22:42
depth1
children0
last_payout2017-06-22 02:22:42
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_reputation2,462,435,382
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,882,367
net_rshares0
@cyberwolf · (edited)
That's called bullish market and it cannot be bullish all time. Hey, may be your code can forecast when the next drop will be? :) Nice analysis by the way!
properties (22)
authorcyberwolf
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t190615036z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 19:06:21
last_update2017-06-14 19:06:57
depth1
children0
last_payout2017-06-21 19:06:21
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_reputation522,867,843,692
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,852,345
net_rshares0
@danlupi ·
u rock yes this is  a super bias strategy. did you use pyplot?  also, what about accumulate after a major correction.. I would like to see that.. u rock rock rock .
properties (22)
authordanlupi
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t232749101z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:27:48
last_update2017-06-13 23:27:48
depth1
children0
last_payout2017-06-20 23:27:48
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_length164
author_reputation40,807,748,620,275
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,509
net_rshares0
@davidether ·
its amazing how accurately one can predict the market using simple patterning and equations, regardless of the human element involved on the other end.
properties (22)
authordavidether
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t072713596z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 07:27:15
last_update2017-06-15 07:27:15
depth1
children0
last_payout2017-06-22 07:27:15
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_length151
author_reputation59,728,765,749
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,899,333
net_rshares0
@daydreams4rock ·
thnx for the info and i wish i had a bought a few a year ago too-- anyway now seems like a good time to get started for me-- i decided to follow you cause you have good info and i upvoted it too-David
👍  
properties (23)
authordaydreams4rock
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t122911787z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 12:29:15
last_update2017-06-14 12:29:15
depth1
children0
last_payout2017-06-21 12:29:15
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_length200
author_reputation16,735,711,990,093
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,820,856
net_rshares191,516,577
author_curate_reward""
vote details (1)
@deaddy ·
$22.27
thanks for the post,

I have been doing similar experiments. This momentum strategy can work as long as there is inward capital flow. which we could expect for a while because people are still learning about block chain.

yes the experiment of top coins with "survivor bias" does not mean anything. but random portfolios are very interesting and tells us some things..


I did paper trade a momentum strategy for 3 weeks.

1st week high cap coins did well. low cap was around -10%
2nd week all the portfolios generated more than 50%
3rd week which was just 1 week before until today, (I also do rebalancing during tuesdays) low caps profited around 10%,  high caps were around -5%.

which means yes low caps can return more. 

I was thinking about publishing results and live trade it some day. as far as I know I can share my own positions and that would not constitute as trading advise. I got 30x and 6x in my experiements with different cap sizes.

lastly, I would be also very interested to see how the "buy low, sell high" strategy works.
👍  , , , , , ,
properties (23)
authordeaddy
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t044835484z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 04:48:33
last_update2017-06-14 04:48:33
depth1
children1
last_payout2017-06-21 04:48:33
cashout_time1969-12-31 23:59:59
total_payout_value19.666 HBD
curator_payout_value2.605 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,044
author_reputation772,031,226,796
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,795,697
net_rshares880,872,367,954
author_curate_reward""
vote details (7)
@mericanhomestead ·
Interesting strategy findings. I'd love to learn more.  But just a simple strategy of buying and holding seems to prove a really good return in a year for those who don't have the time to stay on top of trading.  I really like the back history comparisons of what could have been if you had done BLANK.
👍  
properties (23)
authormericanhomestead
permlinkre-deaddy-re-furion-analyzing-the-crypto-market-with-python-20170614t143348091z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 14:33:45
last_update2017-06-14 14:33:45
depth2
children0
last_payout2017-06-21 14:33:45
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_length302
author_reputation34,524,540,906,491
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,830,233
net_rshares133,588,100
author_curate_reward""
vote details (1)
@deepaklal ·
Great
properties (22)
authordeepaklal
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t085707633z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 08:57:06
last_update2017-06-14 08:57:06
depth1
children0
last_payout2017-06-21 08:57:06
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_length5
author_reputation7,028,959,071
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,808,881
net_rshares0
@democracydirect ·
Good article. very inspirational hope to dramatically increase my knowledge of crypto
properties (22)
authordemocracydirect
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t230107986z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:01:09
last_update2017-06-13 23:01:09
depth1
children0
last_payout2017-06-20 23:01:09
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_length85
author_reputation-496,138,817,651
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,745
net_rshares0
@deserttree ·
Cool analysis, nice utilization of programming. Can you cook something up for alt coin day trading short term periods?
properties (22)
authordeserttree
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t233854016z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:38:54
last_update2017-06-13 23:38:54
depth1
children0
last_payout2017-06-20 23:38:54
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_length118
author_reputation2,871,501,019,626
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,194
net_rshares0
@digimad ·
$16.41
Your strategies seem to be following the trends. It would be interesting to test 'buy the dip' strategies, eg:

### Strat 1

Filter: Top 30 coin over last 26 weeks (i.e. quality)
Action: **Sell** when price rises 20% above average price movement of all other quality coins.
**Buy** when price falls 20% below average price movement of all other quality coins.


### Strat 2:
Filter: Randomly choose 20 coins from top 100
Action: Same as strat 1 (to test difference)
👍  , , , , , , , , , , ,
properties (23)
authordigimad
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t234001783z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:38:12
last_update2017-06-13 23:38:12
depth1
children1
last_payout2017-06-20 23:38:12
cashout_time1969-12-31 23:59:59
total_payout_value15.876 HBD
curator_payout_value0.534 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length465
author_reputation553,507,517,935
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,157
net_rshares647,982,568,877
author_curate_reward""
vote details (12)
@alphabeta1 ·
I think trading volumes for the top 100 alt coins whether they are gainers or losers give a good indication of potential. I agree with you
👍  
properties (23)
authoralphabeta1
permlinkre-digimad-re-furion-analyzing-the-crypto-market-with-python-20170614t005151010z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:51:57
last_update2017-06-14 00:51:57
depth2
children0
last_payout2017-06-21 00:51:57
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_reputation78,096,377
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,781,718
net_rshares290,176,812
author_curate_reward""
vote details (1)
@discernente ·
IOTA coin in a matter of hours became the 6th biggest coin in market capitalization. Excellent investment opportunity like never before! And it is revolutionary because it is the first cryptocoin that does not use blockchain technology.   http://coinmarketcap.com/currencies/iota/#charts
👍  ,
properties (23)
authordiscernente
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t225015533z
categorypython
json_metadata{"tags":["python"],"links":["http://coinmarketcap.com/currencies/iota/#charts"],"app":"steemit/0.1"}
created2017-06-13 22:50:03
last_update2017-06-13 22:50:03
depth1
children2
last_payout2017-06-20 22:50:03
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_reputation569,779,453,117,908
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,948
net_rshares481,693,416
author_curate_reward""
vote details (2)
@delumigreen ·
$0.11
Heres a good article giving an overview of how IOTA aims to be different http://www.tangleblog.com/what-is-iota-what-is-the-tangle/
👍  
properties (23)
authordelumigreen
permlinkre-discernente-re-furion-analyzing-the-crypto-market-with-python-20170614t022004163z
categorypython
json_metadata{"tags":["python"],"links":["http://www.tangleblog.com/what-is-iota-what-is-the-tangle/"],"app":"steemit/0.1"}
created2017-06-14 02:20:03
last_update2017-06-14 02:20:03
depth2
children0
last_payout2017-06-21 02:20:03
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation68,073,792
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,787,094
net_rshares4,356,722,722
author_curate_reward""
vote details (1)
@idealist ·
I think Byteball or digiball or something like that already uses a DAG, so IOTA isn't the first.
👍  
properties (23)
authoridealist
permlinkre-discernente-re-furion-analyzing-the-crypto-market-with-python-20170614t064208264z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 06:42:09
last_update2017-06-14 06:42:09
depth2
children0
last_payout2017-06-21 06:42:09
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_reputation3,482,305,647,602
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,802,032
net_rshares203,123,643
author_curate_reward""
vote details (1)
@djbk ·
$0.04
Expected it would've been lucrative, but this is very indepth! Thanks :)
👍  
properties (23)
authordjbk
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222736017z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:27:39
last_update2017-06-13 22:27:39
depth1
children0
last_payout2017-06-20 22:27:39
cashout_time1969-12-31 23:59:59
total_payout_value0.034 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length72
author_reputation373,993,247,708
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,372
net_rshares1,806,318,175
author_curate_reward""
vote details (1)
@dracosalieri ·
Don't mind this comment. This is for me to reference back...

I am still very new to Crypto and would not mind a mentor.
properties (22)
authordracosalieri
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t005335510z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:53:36
last_update2017-06-14 00:53:36
depth1
children0
last_payout2017-06-21 00:53:36
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_length120
author_reputation4,335,910,933,316
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,781,825
net_rshares0
@dw11low ·
As a new guy to this, this was fantastic. Thanks
properties (22)
authordw11low
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t055138579z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 05:51:39
last_update2017-06-14 05:51:39
depth1
children0
last_payout2017-06-21 05:51:39
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_length48
author_reputation0
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,799,235
net_rshares0
@dwehji ·
Pretty interesting Stuff , i am just getting into cryptocurrencies i am doing alot of research i have a couple of bitcoins to invest in alt coins(longterm) i am very optimistic about the future !
👍  
properties (23)
authordwehji
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t235046653z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:50:45
last_update2017-06-13 23:50:45
depth1
children0
last_payout2017-06-20 23:50:45
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_length195
author_reputation36,629,146,145
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,928
net_rshares290,176,828
author_curate_reward""
vote details (1)
@eduter ·
this is very thoughtful simulation I was trying to do and compare exactly. However, this is assuming the bullish market in this recent 1 year. this is a big assumption.
properties (22)
authoreduter
permlinkre-furion-analyzing-the-crypto-market-with-python-20170830t155431120z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-08-30 15:54:30
last_update2017-08-30 15:54:30
depth1
children1
last_payout2017-09-06 15:54:30
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_length168
author_reputation3,331,773,298,183
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,353,556
net_rshares0
@furion ·
Your observation is correct.
properties (22)
authorfurion
permlinkre-eduter-re-furion-analyzing-the-crypto-market-with-python-20170831t003323799z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-08-31 00:33:24
last_update2017-08-31 00:33:24
depth2
children0
last_payout2017-09-07 00:33:24
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_reputation116,503,940,714,958
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id13,394,653
net_rshares0
@ejemai ·
Will not waste anytime waiting..., looking through and going all out to see what this report can do for me. thanks mate
properties (22)
authorejemai
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222709209z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:27:15
last_update2017-06-13 22:27:15
depth1
children0
last_payout2017-06-20 22:27:15
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_length119
author_reputation265,163,230,573,530
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,345
net_rshares0
@elevator09 ·
Good analysis
properties (22)
authorelevator09
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222625440z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:26:24
last_update2017-06-13 22:26:24
depth1
children0
last_payout2017-06-20 22:26:24
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_length13
author_reputation344,146,838,958,664
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,274
net_rshares0
@encryptcy · (edited)
Thanks for the share. I may apply the strat on my next trading.

![Steem Like.png](https://steemitimages.com/DQmehZS2g3KurtsgNUTKhhjy1sK5fsoGuG4PanB5VD9F6k5/Steem%20Like.png)
properties (22)
authorencryptcy
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t221136374z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmehZS2g3KurtsgNUTKhhjy1sK5fsoGuG4PanB5VD9F6k5/Steem%20Like.png"],"app":"steemit/0.1"}
created2017-06-13 22:11:21
last_update2017-06-13 22:13:42
depth1
children0
last_payout2017-06-20 22:11:21
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_length174
author_reputation1,707,577,567,135
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,236
net_rshares0
@eric-boucher ·
$3.37
What a super cool project you are on and I bet your trip only finds itself even more exciting by the results!?!

Thanks for sharing this knowledge with us, it is appreciated, Namaste   :)
👍  , ,
properties (23)
authoreric-boucher
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t235620488z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:56:36
last_update2017-06-13 23:56:36
depth1
children0
last_payout2017-06-20 23:56:36
cashout_time1969-12-31 23:59:59
total_payout_value3.346 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length187
author_reputation68,503,601,066,539
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,778,329
net_rshares133,020,040,517
author_curate_reward""
vote details (3)
@ericwoelk · (edited)
$1.31
What's also important is its current value in relation to the coin max supply. If a coin is relatively cheap, and I'm really talking about a coin under $1, while simultaneously having a low cap max supply, say under 100M coins, then that means you have a very good asymmetrical risk. You can buy a shitload of coins if they are under $1, while their potential is great. Low supply, high demand.
👍  , ,
properties (23)
authorericwoelk
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t225931349z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:59:42
last_update2017-06-13 23:00:21
depth1
children0
last_payout2017-06-20 22:59:42
cashout_time1969-12-31 23:59:59
total_payout_value0.988 HBD
curator_payout_value0.325 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length394
author_reputation3,313,392,547,213
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,631
net_rshares51,898,388,351
author_curate_reward""
vote details (3)
@fairbee ·
thinking of long term investments is always better than scalping. Scalping needs expertise skills which involves risks. Long term investments are safe and might come out with profits after certain lock-in period(maybe self lock-in in case of crypto), but never gonna lose investment when diversified our investments. But need some expert like you to say which one will do good in future, done well in the past.
Thanks for the sharing @furion. Very valuable information.
properties (22)
authorfairbee
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222454276z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-13 22:25:00
last_update2017-06-13 22:25:00
depth1
children1
last_payout2017-06-20 22:25:00
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_length469
author_reputation142,126,803,055
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,173
net_rshares0
@siggjo ·
I agree with this comment. I also have learned that long term investments usually gives best results.
I also appreciated this article, and learn a lot from it.
properties (22)
authorsiggjo
permlinkre-fairbee-re-furion-analyzing-the-crypto-market-with-python-20170614t123734567z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 12:37:33
last_update2017-06-14 12:37:33
depth2
children0
last_payout2017-06-21 12:37:33
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_length159
author_reputation26,332,773,290,898
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,821,406
net_rshares0
@forykw ·
Have you tested with a exchange bot?
properties (22)
authorforykw
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t224138490z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:41:39
last_update2017-06-13 22:41:39
depth1
children0
last_payout2017-06-20 22:41:39
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_reputation92,176,537,573,467
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,374
net_rshares0
@fredrikaa ·
Superb post. I am teaching myself Programming for Data Analytics in Python and R these days, so great motivation to see how I can apply it to my crypto-trading :)

THank you for posting this!
properties (22)
authorfredrikaa
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t053031363z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 05:30:33
last_update2017-06-14 05:30:33
depth1
children0
last_payout2017-06-21 05:30:33
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_length191
author_reputation310,528,541,043,341
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,798,056
net_rshares0
@freedomnation ·
Trading cryptos is a game of luck currently. Long-hauls are different story. Thanks for this excellent analysis.
properties (22)
authorfreedomnation
permlinkre-furion-2017614t1842434z
categorypython
json_metadata{"tags":"python","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-13 23:08:54
last_update2017-06-13 23:08:54
depth1
children0
last_payout2017-06-20 23:08:54
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_length112
author_reputation3,691,951,933,327
root_title"Analyzing the crypto market with Python"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,245
net_rshares0
@fuckmylife · (edited)
$15.51
Do you think that your model would benefit from incorporating some qualitative factors in to its framework. IE the history of the founders, their success on other projects ? The educational background of the founders and so on. At this point any crack pot who knows how to copy and paste can create their own crypto currency, with that being said, the ones that are most likely to succeed will be the ones who invest heavily into intellectual resources and human capital.
👍  , ,
properties (23)
authorfuckmylife
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t232504881z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:25:06
last_update2017-06-13 23:28:21
depth1
children0
last_payout2017-06-20 23:25:06
cashout_time1969-12-31 23:59:59
total_payout_value13.330 HBD
curator_payout_value2.176 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length471
author_reputation1,365,524,722,971
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,320
net_rshares612,298,652,102
author_curate_reward""
vote details (3)
@gasser484 ·
interesting
i ll try it out
properties (22)
authorgasser484
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t235949640z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:59:51
last_update2017-06-13 23:59:51
depth1
children0
last_payout2017-06-20 23:59:51
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_reputation20,196,314,926
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,778,531
net_rshares0
@getpaidlikemike ·
Analysis is good, but remember this is crypto... where a good meme can 10x a company's value lol
properties (22)
authorgetpaidlikemike
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t055530465z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 05:55:21
last_update2017-06-14 05:55:21
depth1
children0
last_payout2017-06-21 05:55:21
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_reputation23,830,611,443
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,799,464
net_rshares0
@glitterfart ·
$74.17
You should havea look at www.bittwenty.com.

It's a crypto currency index fund of the top 20 crypto. The index have a monthly revison, you will probably enjoy the information ;)
👍  , , , ,
properties (23)
authorglitterfart
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t102217842z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 10:19:03
last_update2017-06-14 10:19:03
depth1
children0
last_payout2017-06-21 10:19:03
cashout_time1969-12-31 23:59:59
total_payout_value55.630 HBD
curator_payout_value18.540 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length177
author_reputation48,401,633,178,775
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,813,051
net_rshares2,936,391,789,561
author_curate_reward""
vote details (5)
@gokulnk ·
Good POC. Though the approach is simplistic and may not be ready for real trading I think it would be great if you could create a website with a graph where we could track multiple currencies at once. It would be super cool if we could use it for all coins in our portfolio
👍  ,
properties (23)
authorgokulnk
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222902232z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:30:12
last_update2017-06-13 22:30:12
depth1
children0
last_payout2017-06-20 22:30:12
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_length273
author_reputation17,871,219,215,380
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,551
net_rshares580,353,686
author_curate_reward""
vote details (2)
@greatvideos ·
Great work mate 
I am your new follower 
Please follow back 

How I withdraw cash from a Bitcoin Cash machine atm
https://youtu.be/_mEx9nNYFek
properties (22)
authorgreatvideos
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t223252144z
categorypython
json_metadata{"tags":["python"],"image":["https://img.youtube.com/vi/_mEx9nNYFek/0.jpg"],"links":["https://youtu.be/_mEx9nNYFek"],"app":"steemit/0.1"}
created2017-06-13 22:32:42
last_update2017-06-13 22:32:42
depth1
children0
last_payout2017-06-20 22:32:42
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_length142
author_reputation6,696,611,383,944
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,734
net_rshares0
@hadif66 ·
Hey my friend Follow me back , thank you for your great posts.
👍  
properties (23)
authorhadif66
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t102607851z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 10:26:09
last_update2017-06-14 10:26:09
depth1
children0
last_payout2017-06-21 10:26:09
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_length62
author_reputation4,695,929,953,282
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,813,463
net_rshares191,516,577
author_curate_reward""
vote details (1)
@healthydelicious ·
This is surely worth a resteem! Cheers furion.
properties (22)
authorhealthydelicious
permlinkre-furion-analyzing-the-crypto-market-with-python-20170619t082838673z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-19 08:28:33
last_update2017-06-19 08:28:33
depth1
children0
last_payout2017-06-26 08:28:33
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_length46
author_reputation851,515,404,695
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,242,101
net_rshares0
@hicmaster ·
hi @furion can you help me starting in steem my local money is not convertible to usd
properties (22)
authorhicmaster
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t022312981z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-14 02:23:15
last_update2017-06-14 02:23:15
depth1
children0
last_payout2017-06-21 02:23:15
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_length85
author_reputation1,110,638,428,576
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,787,287
net_rshares0
@isaac.rodebush ·
$30.29
![](https://steemitimages.com/DQmeW4LE6YKMQpdPefXzKU8TCczp9VpRTqTpWb7nqPqrAiw/image.png)

This took me several days but I was able to calculate the top performers by market cap over the last year. small cap crushed it!!

Thank you for your insight on portfolio management!
Best,
Isaac
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorisaac.rodebush
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t001711979z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmeW4LE6YKMQpdPefXzKU8TCczp9VpRTqTpWb7nqPqrAiw/image.png"],"app":"steemit/0.1"}
created2017-06-14 00:17:15
last_update2017-06-14 00:17:15
depth1
children15
last_payout2017-06-21 00:17:15
cashout_time1969-12-31 23:59:59
total_payout_value25.054 HBD
curator_payout_value5.240 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length284
author_reputation1,868,717,056,233
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,779,693
net_rshares1,194,399,445,416
author_curate_reward""
vote details (63)
@altcointrends ·
I agree - small cap crushes it.  Well done @furion on a great post.

This post got me thinking [What happens if you invest $1000 into crypto and leave it for 1 year?](https://steemit.com/cryptocurrency/@altcointrends/what-happens-if-you-invest-usd1-000-into-crypto-and-leave-it-for-1-year) It's easy enough to find out. I'd love to hear others thoughts on their top choices over the next 365 days.
👍  ,
properties (23)
authoraltcointrends
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t134458660z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"links":["https://steemit.com/cryptocurrency/@altcointrends/what-happens-if-you-invest-usd1-000-into-crypto-and-leave-it-for-1-year"],"app":"steemit/0.1"}
created2017-06-14 13:44:54
last_update2017-06-14 13:44:54
depth2
children0
last_payout2017-06-21 13:44:54
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_length397
author_reputation267,244,538,554
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,826,173
net_rshares470,085,668
author_curate_reward""
vote details (2)
@falah ·
I'm gonna have a go at this!!
👍  
properties (23)
authorfalah
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t013806990z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:38:06
last_update2017-06-14 01:38:06
depth2
children0
last_payout2017-06-21 01:38:06
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_length29
author_reputation201,473,241
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,784,403
net_rshares136,694,800
author_curate_reward""
vote details (1)
@kevinm ·
Nice, you are right and the small cap coins still do.  If you have the data can simulate it with crystal ball, and lets see. 

Regards
👍  ,
properties (23)
authorkevinm
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t193729568z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 19:37:57
last_update2017-06-14 19:37:57
depth2
children0
last_payout2017-06-21 19:37:57
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_reputation57,906,173
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,854,792
net_rshares557,138,895
author_curate_reward""
vote details (2)
@leothelion ·
Hey Isaac! Awesome presentation here and very good insight. Lately, I had been thinking there has to be a sweet spot for coin market cap and it looks like it is clearly 10-100mm. May I ask where you got your data? I'd love to take a look at this myself? Thanks!
👍  
properties (23)
authorleothelion
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t112236393z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 11:22:36
last_update2017-06-14 11:22:36
depth2
children1
last_payout2017-06-21 11:22:36
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_length261
author_reputation16,107,121
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,816,552
net_rshares266,962,025
author_curate_reward""
vote details (1)
@isaac.rodebush ·
$2.93
Sure thing I used the historical snapshots on Coinmarketcap.com and then went to work crunching it if different ways to get the results I wanted.
👍  ,
properties (23)
authorisaac.rodebush
permlinkre-leothelion-re-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t165941588z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 16:59:45
last_update2017-06-14 16:59:45
depth3
children0
last_payout2017-06-21 16:59:45
cashout_time1969-12-31 23:59:59
total_payout_value2.198 HBD
curator_payout_value0.729 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length145
author_reputation1,868,717,056,233
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,842,511
net_rshares119,477,926,785
author_curate_reward""
vote details (2)
@researchcrypto ·
How can I increase your picture so I can see details I just see a small pic but it's not large enough for me to look at details. Thanks.
properties (22)
authorresearchcrypto
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170615t071111705z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 07:11:12
last_update2017-06-15 07:11:12
depth2
children1
last_payout2017-06-22 07:11:12
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_length136
author_reputation465,462,355,621
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,898,409
net_rshares0
@isaac.rodebush ·
$0.62
I am not sure on the esteem app is one way it show up better so you can read it
👍  
properties (23)
authorisaac.rodebush
permlinkre-researchcrypto-re-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170615t192813021z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 19:28:15
last_update2017-06-15 19:28:15
depth3
children0
last_payout2017-06-22 19:28:15
cashout_time1969-12-31 23:59:59
total_payout_value0.462 HBD
curator_payout_value0.154 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length79
author_reputation1,868,717,056,233
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,945,796
net_rshares26,744,196,511
author_curate_reward""
vote details (1)
@spicyer ·
That looks very nice, something I've been thinking of doing with market cap info from coinmarketcap. Have you finished the spreadsheet. Any chance we can take a look at the whole sheet. Thank You!
👍  
properties (23)
authorspicyer
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t133753961z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 13:37:54
last_update2017-06-14 13:37:54
depth2
children1
last_payout2017-06-21 13:37:54
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_length196
author_reputation662,900,806,610
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,825,681
net_rshares133,588,100
author_curate_reward""
vote details (1)
@isaac.rodebush ·
$0.62
I could email it if you want a copy. This is what I am doing full time now having turned down my job out of college.  So I need to find fair ways to get compensated for the work I do hope you understand. If anyone wants to send 1 SP or SBD with their email in the memo I would be happy to email them my sheets of excel research.
Best,
Isaac
👍  , ,
properties (23)
authorisaac.rodebush
permlinkre-spicyer-re-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170615t193429325z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 19:34:33
last_update2017-06-15 19:34:33
depth3
children0
last_payout2017-06-22 19:34:33
cashout_time1969-12-31 23:59:59
total_payout_value0.470 HBD
curator_payout_value0.154 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length340
author_reputation1,868,717,056,233
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,946,232
net_rshares27,171,067,771
author_curate_reward""
vote details (3)
@teamsteem ·
$16.61
Really interesting.
👍  , , ,
properties (23)
authorteamsteem
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t010209856z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:01:33
last_update2017-06-14 01:01:33
depth2
children3
last_payout2017-06-21 01:01:33
cashout_time1969-12-31 23:59:59
total_payout_value12.460 HBD
curator_payout_value4.147 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation284,804,541,406,803
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,782,258
net_rshares654,664,592,187
author_curate_reward""
vote details (4)
@isaac.rodebush ·
$0.77
Thanks @teamsteem, let's keep pooling the wealth of knowledge together!
👍  ,
properties (23)
authorisaac.rodebush
permlinkre-teamsteem-re-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t165714858z
categorypython
json_metadata{"tags":["python"],"users":["teamsteem"],"app":"steemit/0.1"}
created2017-06-14 16:57:18
last_update2017-06-14 16:57:18
depth3
children0
last_payout2017-06-21 16:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.583 HBD
curator_payout_value0.191 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation1,868,717,056,233
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,842,308
net_rshares31,712,349,966
author_curate_reward""
vote details (2)
@themonetaryfew · (edited)
$1.58
Certainly! 

For someone not understanding how blockchain technology works, this might seem like navel-gazing and building a "useless tool" and investing in "useless coins", just for the sake of it.

Where does the value come from, right?

For someone understanding what blockchain innovation means, it shows how 'permisionless innovation' is also coming to  the world of finance.

Interesting times ahead!
👍  ,
properties (23)
authorthemonetaryfew
permlinkre-teamsteem-re-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170615t222808990z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 22:28:09
last_update2017-06-15 22:28:45
depth3
children1
last_payout2017-06-22 22:28:09
cashout_time1969-12-31 23:59:59
total_payout_value1.582 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length406
author_reputation4,704,300,036,923
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,958,485
net_rshares69,262,886,377
author_curate_reward""
vote details (2)
@thecynic ·
This is by far one of the best analysis posts out there for the cryptocurrency community. Right on brother time to execute your random coin strategy. Even if the market tanks in the long term this is typical buffet style buy and hold, absent the inside info and the massive leverage haha
👍  , , ,
properties (23)
authorthecynic
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170614t012408316z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:24:15
last_update2017-06-14 01:24:15
depth2
children0
last_payout2017-06-21 01:24:15
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_reputation196,971,166,326
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,783,536
net_rshares693,833,676
author_curate_reward""
vote details (4)
@tonysteam ·
very very interesting. when you invest, do you normally buy and hold or do you trade? if you trade, do you use any anomaly detection algorithm that classifies the detected anomaly into a buy or sell signal? Great stuff - keep your posts coming Isaac
👍  
properties (23)
authortonysteam
permlinkre-isaacrodebush-re-furion-analyzing-the-crypto-market-with-python-20170616t211040345z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-16 21:10:45
last_update2017-06-16 21:10:45
depth2
children0
last_payout2017-06-23 21:10:45
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_length249
author_reputation44,004,399
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,041,627
net_rshares133,588,100
author_curate_reward""
vote details (1)
@isquid ·
I found the DOTA player.
properties (22)
authorisquid
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t113635337z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 11:36:36
last_update2017-06-15 11:36:36
depth1
children0
last_payout2017-06-22 11:36:36
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_length24
author_reputation1,127,885,992
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,912,307
net_rshares0
@jeff001 ·
Some very interesting charts.
properties (22)
authorjeff001
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t092641459z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 09:26:24
last_update2017-06-14 09:26:24
depth1
children0
last_payout2017-06-21 09:26:24
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_length29
author_reputation3,421,121,610,414
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,810,336
net_rshares0
@jf1088 ·
This is an interesting project, a lot of insight. Not sure whether it would be good to diversify one's portfolio in multiple coins or simply stick to the big ones (BTC and ETH) and invest around $100 a month.
👍  
properties (23)
authorjf1088
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t004100324z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:41:15
last_update2017-06-14 00:41:15
depth1
children0
last_payout2017-06-21 00:41:15
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_length208
author_reputation3,083,126
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,781,130
net_rshares197,320,110
author_curate_reward""
vote details (1)
@jimsparkle ·
Hi. I am a data analyst and I use machine learning to parse crpyto currency data as well.

https://steemit.com/bitcoin/@jimsparkle/understanding-bitcoin-market-trend-and-feature-using-unsupervised-machine-learning

Follow me if you are interested in my topic. I would really appreciate your support to my stories. I have also followed you as well. : )
properties (22)
authorjimsparkle
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t150449682z
categorypython
json_metadata{"tags":["python"],"links":["https://steemit.com/bitcoin/@jimsparkle/understanding-bitcoin-market-trend-and-feature-using-unsupervised-machine-learning"],"app":"steemit/0.1"}
created2017-06-14 15:04:00
last_update2017-06-14 15:04:00
depth1
children0
last_payout2017-06-21 15:04:00
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_length351
author_reputation714,894,690,343
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,832,786
net_rshares0
@jingdol ·
interesting facts
👍  
properties (23)
authorjingdol
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t025302118z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 02:53:03
last_update2017-06-14 02:53:03
depth1
children0
last_payout2017-06-21 02:53:03
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_reputation21,316,555,365,947
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,789,087
net_rshares0
author_curate_reward""
vote details (1)
@journeyoflife ·
This is some great work , while we see some investments fail , great to see as a new member of steemit that it has not let us down . Investments are always for long run
properties (22)
authorjourneyoflife
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231412329z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:14:12
last_update2017-06-13 23:14:12
depth1
children0
last_payout2017-06-20 23:14:12
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_length168
author_reputation59,559,728,568,586
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,618
net_rshares0
@junhokim ·
good posting!
properties (22)
authorjunhokim
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231442375z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:14:45
last_update2017-06-13 23:14:45
depth1
children0
last_payout2017-06-20 23:14:45
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_length13
author_reputation398,710,245,525
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,642
net_rshares0
@justcallmemyth ·
Sorry to BUD in, Its a Steemit emergency!
Please I need some MINNOWS and WHALES to Help!
Lets prove my WIFE wrong! :)!
https://steemit.com/story/@justcallmemyth/lets-prove-my-wife-wrong-she-thinks-steemit-is-fake-minnows-and-whales-unite-plus-custom-gif-giveaway#@danielsaori/re-justcallmemyth-lets-prove-my-wife-wrong-she-thinks-steemit-is-fake-minnows-and-whales-unite-plus-custom-gif-giveaway-20170613t214617789z
![Proud-Minnow.gif](https://steemitimages.com/DQmb1Rtf12khtkDMx67EZcXttnYBXiNKu3aQBZFV2oCjmFK/Proud-Minnow.gif)
(Like The Gif? View The Blog For More) (Free 2 Use)
👎  
properties (23)
authorjustcallmemyth
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t220336657z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmb1Rtf12khtkDMx67EZcXttnYBXiNKu3aQBZFV2oCjmFK/Proud-Minnow.gif"],"links":["https://steemit.com/story/@justcallmemyth/lets-prove-my-wife-wrong-she-thinks-steemit-is-fake-minnows-and-whales-unite-plus-custom-gif-giveaway#@danielsaori/re-justcallmemyth-lets-prove-my-wife-wrong-she-thinks-steemit-is-fake-minnows-and-whales-unite-plus-custom-gif-giveaway-20170613t214617789z"],"app":"steemit/0.1"}
created2017-06-13 22:03:42
last_update2017-06-13 22:03:42
depth1
children0
last_payout2017-06-20 22:03:42
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_length579
author_reputation2,553,965,564,497
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,798
net_rshares-654,143,286,707
author_curate_reward""
vote details (1)
@justcallmemyth ·
Nice write up! very Informative while staying visually stimulating!
DESPERATE PLEA 4 HELP!
 I need some MINNOWS and WHALES to Help!
Lets prove my WIFE wrong! :)!
https://steemit.com/story/@justcallmemyth/lets-prove-my-wife-wrong-she-thinks-steemit-is-fake-minnows-and-whales-unite-plus-custom-gif-giveaway
![Proud-Minnow.gif](https://steemitimages.com/DQmb1Rtf12khtkDMx67EZcXttnYBXiNKu3aQBZFV2oCjmFK/Proud-Minnow.gif)
(Like The Gif? View The Blog For More) (Free 2 Use)
👍  ,
properties (23)
authorjustcallmemyth
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222345955z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmb1Rtf12khtkDMx67EZcXttnYBXiNKu3aQBZFV2oCjmFK/Proud-Minnow.gif"],"links":["https://steemit.com/story/@justcallmemyth/lets-prove-my-wife-wrong-she-thinks-steemit-is-fake-minnows-and-whales-unite-plus-custom-gif-giveaway"],"app":"steemit/0.1"}
created2017-06-13 22:23:51
last_update2017-06-13 22:23:51
depth1
children0
last_payout2017-06-20 22:23:51
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_length469
author_reputation2,553,965,564,497
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,082
net_rshares474,189,608
author_curate_reward""
vote details (2)
@kenhudoy ·
very interesting lecture. my first day on steem and already reading up excellent post. I am certain cryptocurrency are here to stay. Keep it up..following you already and hope you do same...bless you
properties (22)
authorkenhudoy
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t224538292z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:43:15
last_update2017-06-13 22:43:15
depth1
children0
last_payout2017-06-20 22:43:15
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_length199
author_reputation10,766,809,992,992
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,500
net_rshares0
@kevinm ·
Nice analysis, thank you. Now we know in what to invest.  Good luck with the code created
properties (22)
authorkevinm
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t193935694z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 19:40:03
last_update2017-06-14 19:40:03
depth1
children0
last_payout2017-06-21 19:40:03
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_length89
author_reputation57,906,173
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,854,960
net_rshares0
@kimvizconde ·
This is a great project.
👍  
properties (23)
authorkimvizconde
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231412700z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:25:15
last_update2017-06-13 23:25:15
depth1
children0
last_payout2017-06-20 23:25:15
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_length24
author_reputation5,291,435,189
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,327
net_rshares261,159,154
author_curate_reward""
vote details (1)
@kingscrown ·
$15.19
loving this stuff
👍  , , , ,
properties (23)
authorkingscrown
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t001034191z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:10:39
last_update2017-06-14 00:10:39
depth1
children1
last_payout2017-06-21 00:10:39
cashout_time1969-12-31 23:59:59
total_payout_value11.394 HBD
curator_payout_value3.792 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,113,705,347,129,712
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,779,250
net_rshares598,688,804,364
author_curate_reward""
vote details (5)
@nogoud5 ·
push! such a great article!!
properties (22)
authornogoud5
permlinkre-kingscrown-re-furion-analyzing-the-crypto-market-with-python-20170614t133619027z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 13:36:18
last_update2017-06-14 13:36:18
depth2
children0
last_payout2017-06-21 13:36: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_reputation99,040,916
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,825,540
net_rshares0
@koreaculture · (edited)
Looks good analysis thanks
properties (22)
authorkoreaculture
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t224710199z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:47:12
last_update2017-06-13 22:49:54
depth1
children0
last_payout2017-06-20 22:47:12
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_length26
author_reputation152,233,111,328,193
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,773,751
net_rshares0
@krabgat ·
thanks. Very interesting information!
properties (22)
authorkrabgat
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t170458987z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 17:05:00
last_update2017-06-14 17:05:00
depth1
children0
last_payout2017-06-21 17:05:00
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_length37
author_reputation21,919,477,099,128
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,842,912
net_rshares0
@kyriacos ·
This is fantastic @furion. Thank you for sharing this
properties (22)
authorkyriacos
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t062012518z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-14 06:20:12
last_update2017-06-14 06:20:12
depth1
children0
last_payout2017-06-21 06:20:12
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_reputation151,079,958,921,004
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,800,811
net_rshares0
@lexiconical ·
$19.83
This is a very interesting project. Developing trading strategies is a lot of work, especially back-testing, thanks for posting your findings.

In your last two charts, it definitely looks like Steem is the only coin that hasn't gone totally parabolic yet; it's sitting at the BTC line. I hope that means there's plenty of room for it to run.
👍  , , , , , , , , , , , ,
properties (23)
authorlexiconical
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t220004994z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:00:09
last_update2017-06-13 22:00:09
depth1
children0
last_payout2017-06-20 22:00:09
cashout_time1969-12-31 23:59:59
total_payout_value19.286 HBD
curator_payout_value0.543 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length342
author_reputation183,198,168,434,738
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,575
net_rshares779,107,944,359
author_curate_reward""
vote details (13)
@lovedayamos ·
This is really interesting
properties (22)
authorlovedayamos
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t113010068z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 11:30:18
last_update2017-06-15 11:30:18
depth1
children0
last_payout2017-06-22 11:30: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_length26
author_reputation2,970,260,407
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,911,935
net_rshares0
@lqss64 · (edited)
Very comprehensive and informative post  #FOLLOW , vote up and I'll watch you from now on.
properties (22)
authorlqss64
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t150819899z
categorypython
json_metadata{"tags":["follow","python"],"app":"steemit/0.1"}
created2017-06-14 15:08:18
last_update2017-06-14 15:09:51
depth1
children0
last_payout2017-06-21 15:08: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_length90
author_reputation5,495,393,279,141
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,833,143
net_rshares0
@macko ·
this could be a little bit risky(though trading cryptocoin is risky).
what if a coin that you think would grow in the next on year suddenly crash, just like what happened to some compnies stock.

 what if it suddenly loses it value in a years time bringing it  to a price lower than the price you bought it the previous year.

what if the owner dies before that one year ,most cryptocurrency are not inheritable.

what if the value of your money (dollar,euros e.t.c)loses value.

all this makes it  ineffective
properties (22)
authormacko
permlinkre-furion-analyzing-the-crypto-market-with-python-20170725t130145683z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-07-25 13:02:00
last_update2017-07-25 13:02:00
depth1
children0
last_payout2017-08-01 13:02:00
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_length510
author_reputation38,761,707,004
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,663,755
net_rshares0
@mage00000 ·
Very interesting! About 12 years ago I build a Dow Jones prediction program based on over a 100 years of data and some AI algorithms. It worked pretty good and I learned some very interesting things from it. I have been wondering if sufficient historical data would be available to do the same for crypto's, for it might work better here. I'll have a look at your source. If I see possibilities I'll blog about it here on steemit.
Thanks for this article!
properties (22)
authormage00000
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t031822872z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 03:18:24
last_update2017-06-15 03:18:24
depth1
children0
last_payout2017-06-22 03:18:24
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_length455
author_reputation12,120,846,948,636
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,885,735
net_rshares0
@malem · (edited)
you're analyzing good, just don't neglect hat bitcoin currently has less than 10 million users so far. what does that tell you when you now? It means that the Federal Reserve is buying their product (actually selling, but at an expense) at $2, and selling those same bonds at 25 cents? 

Can you fucken believe what they are doing to us while getting rich out of our nine to five routine? this is bullshit, and that's why I am on the front line fighting them today.
👍  
properties (23)
authormalem
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t184116894z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:45:00
last_update2017-06-14 00:47:27
depth1
children1
last_payout2017-06-21 00:45:00
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_length465
author_reputation123,583,467,421
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,781,336
net_rshares284,373,276
author_curate_reward""
vote details (1)
@dipkumar ·
From which source did you got to know that there are 10 million users ?
properties (22)
authordipkumar
permlinkre-malem-re-furion-analyzing-the-crypto-market-with-python-20170614t031420278z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 03:14:21
last_update2017-06-14 03:14:21
depth2
children0
last_payout2017-06-21 03:14:21
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_length71
author_reputation450,411,493
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,790,419
net_rshares0
@malonmar ·
$0.09
Nice post my friend, I will test it in my conputer. Thanks for share.
👍  ,
properties (23)
authormalonmar
permlinkre-furion-2017614t011938z
categorypython
json_metadata{"tags":"python","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-13 22:00:57
last_update2017-06-13 22:00:57
depth1
children0
last_payout2017-06-20 22:00:57
cashout_time1969-12-31 23:59:59
total_payout_value0.094 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation23,736,103,343,870
root_title"Analyzing the crypto market with Python"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,614
net_rshares3,993,661,000
author_curate_reward""
vote details (2)
@marsresident ·
$0.29
If we can get STEEM in the news, we can get it over $5 each.

Everyone should use this Media email list (3000+ contacts)
https://steemit.com/steem/@marsresident/how-you-can-help-get-steem-in-the-news-simply-using-your-email

And send them this:
http://www.reuters.com/article/us-currency-steem-idUSKCN0ZS2MF

And this:
https://coinmarketcap.com/currencies/steem/
👍  ,
properties (23)
authormarsresident
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t122324075z
categorypython
json_metadata{"tags":["python"],"links":["https://steemit.com/steem/@marsresident/how-you-can-help-get-steem-in-the-news-simply-using-your-email","http://www.reuters.com/article/us-currency-steem-idUSKCN0ZS2MF","https://coinmarketcap.com/currencies/steem/"],"app":"steemit/0.1"}
created2017-06-14 12:23:27
last_update2017-06-14 12:23:27
depth1
children0
last_payout2017-06-21 12:23:27
cashout_time1969-12-31 23:59:59
total_payout_value0.220 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length362
author_reputation10,013,229,877,794
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,820,453
net_rshares11,675,125,283
author_curate_reward""
vote details (2)
@maxdevalue ·
Really sophisticated, but thanks you simplified it @furion
properties (22)
authormaxdevalue
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t235551769z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-13 23:55:51
last_update2017-06-13 23:55:51
depth1
children0
last_payout2017-06-20 23:55:51
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_reputation82,688,667,156,496
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,778,282
net_rshares0
@mcekworo ·
Thanks for sharing your insights @furion
👍  
properties (23)
authormcekworo
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t123416249z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-15 12:34:15
last_update2017-06-15 12:34:15
depth1
children0
last_payout2017-06-22 12:34:15
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_length40
author_reputation209,346,252,210
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,916,032
net_rshares257,281,670
author_curate_reward""
vote details (1)
@me-do ·
Good job, Very interesting. Still a good trip in europe:)
👍  
properties (23)
authorme-do
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t220724191z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:07:21
last_update2017-06-13 22:07:21
depth1
children0
last_payout2017-06-20 22:07:21
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_length57
author_reputation3,497,045,404,820
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,000
net_rshares197,320,110
author_curate_reward""
vote details (1)
@megico · (edited)
Nice artice, I Have resteem it on my timeline. Take a look to my channel if you want;)
👍  
properties (23)
authormegico
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t215638102z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 21:56:39
last_update2017-06-13 21:59:30
depth1
children0
last_payout2017-06-20 21:56:39
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_length86
author_reputation40,227,815,226
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,356
net_rshares278,570,025
author_curate_reward""
vote details (1)
@mickmoney ·
Is it possible to apply this analysis to horse racing?
properties (22)
authormickmoney
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t025632109z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 02:56:33
last_update2017-06-14 02:56:33
depth1
children0
last_payout2017-06-21 02:56:33
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_length54
author_reputation4,671,032,551
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,789,317
net_rshares0
@mikletimes ·
This is some good research! I was looking for something like this. Thank you!
properties (22)
authormikletimes
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t221345751z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:13:45
last_update2017-06-13 22:13:45
depth1
children0
last_payout2017-06-20 22:13:45
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_length77
author_reputation105,193,766,243
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,398
net_rshares0
@mohit ·
Thanks for sharing with us
properties (22)
authormohit
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t061924745z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 06:19:30
last_update2017-06-14 06:19:30
depth1
children0
last_payout2017-06-21 06:19:30
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_length26
author_reputation-141,498,635,632
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,800,766
net_rshares0
@momogrow ·
Thanks for sharing. Indeed - could be  promising for Steem.
properties (22)
authormomogrow
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t225224477z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:52:24
last_update2017-06-13 22:52:24
depth1
children0
last_payout2017-06-20 22:52:24
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_length59
author_reputation188,909,402,942,599
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,099
net_rshares0
@msmirza ·
Great Write UP! Can't wait for more..
Got approved few hours ago, enjoying it already.
👍  
properties (23)
authormsmirza
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t003326394z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:33:30
last_update2017-06-14 00:33:30
depth1
children0
last_payout2017-06-21 00:33:30
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_length86
author_reputation15,816,259,850
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,780,665
net_rshares290,176,857
author_curate_reward""
vote details (1)
@myhealth ·
I love this presentation.
properties (22)
authormyhealth
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t165807038z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 16:58:18
last_update2017-06-14 16:58:18
depth1
children0
last_payout2017-06-21 16:58: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_length25
author_reputation109,770,552,715
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,842,388
net_rshares0
@nezaigor ·
Very interesting post, how accurately I translated it Google. I love good posts.
properties (22)
authornezaigor
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t082732388z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 08:27:33
last_update2017-06-14 08:27:33
depth1
children0
last_payout2017-06-21 08:27:33
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_reputation1,792,493,947,203
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,807,218
net_rshares0
@nuagnorab ·
Awesome! One more user I got to follow!
properties (22)
authornuagnorab
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t102749002z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 10:27:48
last_update2017-06-14 10:27:48
depth1
children0
last_payout2017-06-21 10:27:48
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_length39
author_reputation125,097,310,898,849
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,813,567
net_rshares0
@oluwoleolaide ·
i got stuck at basic html by the way, python sounds wizadry to me......
properties (22)
authoroluwoleolaide
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t225646121z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:56:42
last_update2017-06-13 22:56:42
depth1
children0
last_payout2017-06-20 22:56:42
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_length71
author_reputation113,793,841,740,896
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,407
net_rshares0
@pattty847 ·
This is amazing. Would it be possible to, based on the previous years performance in the market, create a script to will project how a currency will do? If you were able to enter either previous trading information of other currencies like it and possibly see a chart on how it will do over the next year?

There was so much potential in the small currencies even years ago, which I did not know. I remember I started to enter the this world of money when BTC was $100 but I had no idea there was this much money to be made. 

Great post bro!
properties (22)
authorpattty847
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t131534584z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 13:15:33
last_update2017-06-14 13:15:33
depth1
children0
last_payout2017-06-21 13:15:33
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_length542
author_reputation60,491,068
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,823,888
net_rshares0
@paulyaces76 · (edited)
$0.16
We rebalance our portfolio weekly.
Rules:
we can not initially buy more than 10,000 worth of coins
with each sell/trade, we re-calculate balance

With the fees involved that would become very pricey,No?
👍  ,
properties (23)
authorpaulyaces76
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t221119418z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:11:21
last_update2017-06-13 22:11:48
depth1
children2
last_payout2017-06-20 22:11:21
cashout_time1969-12-31 23:59:59
total_payout_value0.164 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length202
author_reputation875,675,879,730
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,238
net_rshares6,540,529,424
author_curate_reward""
vote details (2)
@furion ·
$0.16
Possibly. I don't know. I should be looking for integration with some more sophisticated backtesting / analysis framework, such as zipline.
👍  ,
properties (23)
authorfurion
permlinkre-paulyaces76-re-furion-analyzing-the-crypto-market-with-python-20170613t221319630z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:13:21
last_update2017-06-13 22:13:21
depth2
children1
last_payout2017-06-20 22:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.156 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation116,503,940,714,958
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,369
net_rshares6,376,009,900
author_curate_reward""
vote details (2)
@somethingsubtle ·
Is 6 months worth of backtesting even a statistically significant span of time?
properties (22)
authorsomethingsubtle
permlinkre-furion-re-paulyaces76-re-furion-analyzing-the-crypto-market-with-python-20170614t002528416z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:25:27
last_update2017-06-14 00:25:27
depth3
children0
last_payout2017-06-21 00:25:27
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_length79
author_reputation3,308,521,861,069
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,780,148
net_rshares0
@pedramhd ·
thank you for your information. very interesting data and graphs.
properties (22)
authorpedramhd
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t010756694z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:07:57
last_update2017-06-14 01:07:57
depth1
children0
last_payout2017-06-21 01:07:57
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_length65
author_reputation31,454,884,830
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,782,642
net_rshares0
@pikto ·
Good job, interesting
👍  
properties (23)
authorpikto
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t215614917z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 21:56:21
last_update2017-06-13 21:56:21
depth1
children0
last_payout2017-06-20 21:56:21
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_length21
author_reputation6,393,595,584,410
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,330
net_rshares191,516,577
author_curate_reward""
vote details (1)
@pnc ·
$0.25
This space is growing very fast and many people a missing a lot of opporunity. Do u imagine that 700$ invested in top 7 crypto-currencies in 2016 will be valued at 32 000$ today. Not trading a good way to win BIG in crypto. As a value investor, I do not trade and usually follow the legend Warren Buffet strategy. Best luck !
👍  ,
properties (23)
authorpnc
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t024242675z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 02:42:42
last_update2017-06-14 02:42:42
depth1
children0
last_payout2017-06-21 02:42:42
cashout_time1969-12-31 23:59:59
total_payout_value0.236 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length325
author_reputation31,713,611,208,250
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,788,469
net_rshares9,862,970,048
author_curate_reward""
vote details (2)
@point ·
Interesting analysis.
properties (22)
authorpoint
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t135913378z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 13:59:15
last_update2017-06-15 13:59:15
depth1
children0
last_payout2017-06-22 13:59:15
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_length21
author_reputation914,037,002,035
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,921,853
net_rshares0
@praxiseven ·
I must say you have done a fine job . Thanks for the charts and info you got my vote :)
properties (22)
authorpraxiseven
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t222802356z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:28:03
last_update2017-06-13 22:28:03
depth1
children0
last_payout2017-06-20 22:28:03
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_length87
author_reputation6,940,209,740
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,399
net_rshares0
@pyorinho ·
wow, It's new point of view in invest coin 

I keep watching your post THank you ^^
properties (22)
authorpyorinho
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t235846123z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:58:51
last_update2017-06-13 23:58:51
depth1
children0
last_payout2017-06-20 23:58:51
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_length83
author_reputation6,393,309,360,608
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,778,472
net_rshares0
@queeneleanor ·
$0.10
Jesus....as depressing as this is, it's really well done. I wish hindsight wasn't always 20/20!! haha. Cool article though!
👍  
properties (23)
authorqueeneleanor
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t225552891z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:55:51
last_update2017-06-13 22:55:51
depth1
children0
last_payout2017-06-20 22:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.101 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation350,697,077,414
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,774,343
net_rshares4,057,131,287
author_curate_reward""
vote details (1)
@randowhale ·
$0.48
This post received a 50% upvote from @randowhale thanks to @furion!  For more information, [click here](https://steemit.com/steemit/@randowhale/introducing-randowhale-will-you-get-the-100-vote-give-it-a-shot)!
👍  ,
properties (23)
authorrandowhale
permlinkre-analyzing-the-crypto-market-with-python-20170615t221029
categorypython
json_metadata"{"format": "markdown", "app": "randowhale/0.1"}"
created2017-06-15 22:10:30
last_update2017-06-15 22:10:30
depth1
children0
last_payout2017-06-22 22:10:30
cashout_time1969-12-31 23:59:59
total_payout_value0.478 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation47,657,457,485,459
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,957,225
net_rshares20,906,730,348
author_curate_reward""
vote details (2)
@readmore ·
Really interesting, why not make a bot for this strategy :D
properties (22)
authorreadmore
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t215654779z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 21:56:57
last_update2017-06-13 21:56:57
depth1
children0
last_payout2017-06-20 21:56:57
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_length59
author_reputation2,002,214,535,047
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,369
net_rshares0
@researchcrypto ·
Wow that is a brilliant eye opening post @furion. Thanks for sharing!
properties (22)
authorresearchcrypto
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t071023283z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-15 07:10:24
last_update2017-06-15 07:10:24
depth1
children0
last_payout2017-06-22 07:10:24
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_length69
author_reputation465,462,355,621
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,898,365
net_rshares0
@richguy ·
@furion, I need your help. Just resteem on of my article and I will be grateful. I am not asking your for steem but resteem. Thank you in advance.
properties (22)
authorrichguy
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t100008248z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-14 10:00:09
last_update2017-06-14 10:00:09
depth1
children0
last_payout2017-06-21 10:00:09
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_length146
author_reputation3,799,890,794,265
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,812,020
net_rshares0
@romangt87 ·
$3.19
Interesting strategy. What is the annual turnover? I like the way you take proffit!
👍  , ,
properties (23)
authorromangt87
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t215916636z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 21:59:24
last_update2017-06-13 21:59:24
depth1
children0
last_payout2017-06-20 21:59:24
cashout_time1969-12-31 23:59:59
total_payout_value3.188 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length83
author_reputation4,481,376,032,503
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,526
net_rshares125,392,103,544
author_curate_reward""
vote details (3)
@rooby ·
Great, you're happy to write about it. I like to read about such possibilities
properties (22)
authorrooby
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t114048003z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 11:40:48
last_update2017-06-14 11:40:48
depth1
children0
last_payout2017-06-21 11:40:48
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_length78
author_reputation962,075,808,206
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,817,692
net_rshares0
@rooby ·
Well, you're writing about it. Even if it's just a basic and very naive approach. This shows how little we can do to acquire very valuable assets. Do you know people who use more advanced mechanisms?
properties (22)
authorrooby
permlinkre-furion-analyzing-the-crypto-market-with-python-20170630t183615470z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-30 18:36:15
last_update2017-06-30 18:36:15
depth1
children0
last_payout2017-07-07 18:36:15
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_length199
author_reputation962,075,808,206
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,796,170
net_rshares0
@rtdcs ·
<b >Very interesting project. Create a trade system takes a lot of work, but you are on the right path.

What is the annual turnover? I like a lot the way you take  proffit!

I also did some tests, we can share knowledge. Crypto market is the future. </b>
properties (22)
authorrtdcs
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t232556146z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:25:57
last_update2017-06-13 23:25:57
depth1
children0
last_payout2017-06-20 23:25:57
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_length255
author_reputation19,449,784,090,468
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,382
net_rshares0
@safwan ·
You should have a look at www.bittwenty.com.

This is the currency of the index funds of crypto crypto top 20. Revison index monthly, you'll probably enjoy this information.
I hope you can work well. @furion
properties (22)
authorsafwan
permlinkre-furion-analyzing-the-crypto-market-with-python-20170709t114659117z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-07-09 11:47:03
last_update2017-07-09 11:47:03
depth1
children0
last_payout2017-07-16 11:47:03
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_length207
author_reputation1,089,398,925,528
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,856,910
net_rshares0
@samminator ·
As a programmer, I haven't really shown interest in Python Programming Language. I went for VB and PHP instead. But after going through this, my interest in Python has been piqued. I'm picking up a tutorial in it
properties (22)
authorsamminator
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231020389z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:10:27
last_update2017-06-13 23:10:27
depth1
children0
last_payout2017-06-20 23:10:27
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_length212
author_reputation663,083,531,460,247
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,377
net_rshares0
@secretdev ·
good info..
properties (22)
authorsecretdev
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t120754047z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 12:07:54
last_update2017-06-14 12:07:54
depth1
children0
last_payout2017-06-21 12:07:54
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_reputation25,043,941,308
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,819,381
net_rshares0
@sflaherty ·
That is a truly interesting way to do some analysis and amazed at the python skills which I so lack lol. Appreciate the honest breakdown at the end that some bugs maybe present but overall I am impressed none the less and curious to see how further testing and dev work will end up. Great job, gots my follow because now I think I learned something new here
properties (22)
authorsflaherty
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t053437311z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 05:34:36
last_update2017-06-15 05:34:36
depth1
children0
last_payout2017-06-22 05:34:36
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_length357
author_reputation5,562,650,432,515
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,893,614
net_rshares0
@shaheer001 ·
great tips for trading in crypto currencies , and at the moments these type of well experienced  tips and posts are required to gain some handsome income from top currencies.
properties (22)
authorshaheer001
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t232102079z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:21:06
last_update2017-06-13 23:21:06
depth1
children0
last_payout2017-06-20 23:21:06
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_length174
author_reputation2,979,487,900,700
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,042
net_rshares0
@shorab ·
nice strategy, i follow ADX for any trades. its the most relaxing way to trade you dont have to analyze anything just follow this indicator
properties (22)
authorshorab
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t182945876z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 18:29:45
last_update2017-06-14 18:29:45
depth1
children0
last_payout2017-06-21 18:29:45
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_length139
author_reputation18,626,073,684
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,849,443
net_rshares0
@siva ·
Good strategy.
properties (22)
authorsiva
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t233542641z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 00:36:45
last_update2017-06-14 00:36:45
depth1
children0
last_payout2017-06-21 00:36:45
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_length14
author_reputation62,937,580,671
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,780,856
net_rshares0
@slayerkm ·
This is a really interesting read. Really got my engrossed! thank you @furion
properties (22)
authorslayerkm
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231408503z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-13 23:14:09
last_update2017-06-13 23:14:09
depth1
children0
last_payout2017-06-20 23:14:09
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_length77
author_reputation56,134,054,844,399
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,612
net_rshares0
@slidex ·
Very helpful, i'll try to apply this with my next trades thankyou!
properties (22)
authorslidex
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t231448642z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:14:54
last_update2017-06-13 23:14:54
depth1
children0
last_payout2017-06-20 23:14:54
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_length66
author_reputation332,703,513,587
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,775,647
net_rshares0
@slywalker ·
STEEM will win with people like you.
properties (22)
authorslywalker
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t104324016z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 10:43:27
last_update2017-06-14 10:43:27
depth1
children0
last_payout2017-06-21 10:43:27
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_reputation4,472,799,693
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,814,414
net_rshares0
@soufiati · (edited)
Thank you for this explanation, I just got involved in trading currencies a week ago (BTC and ETH), had more luck with one than the other :p but i'm very interested in trading strategies like the one that you described. @furion If you have any more info for "begginners" or where to find it, It will be much appreciated. Great post by the way!
properties (22)
authorsoufiati
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t000942797z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1","users":["furion"]}
created2017-06-14 00:09:42
last_update2017-06-14 00:11:33
depth1
children0
last_payout2017-06-21 00:09:42
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_length343
author_reputation18,481,605
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,779,186
net_rshares0
@soul-sister-abby ·
Interesting strategy you got here. Thanks for sharing ☺
properties (22)
authorsoul-sister-abby
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t014653843z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:48:42
last_update2017-06-14 01:48:42
depth1
children0
last_payout2017-06-21 01:48:42
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_length55
author_reputation12,695,239
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,785,142
net_rshares0
@sravankcm ·
Awesome!!!
properties (22)
authorsravankcm
permlinkre-furion-analyzing-the-crypto-market-with-python-20170618t142815667z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-18 14:28:24
last_update2017-06-18 14:28:24
depth1
children0
last_payout2017-06-25 14:28:24
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_length10
author_reputation22,440,907,937
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,180,069
net_rshares0
@stay9n0 ·
Furion! Thank for posting!

This is a interesting post here!
Currently I am part time forex trader and hope to develop more automatic trading using codes.

I am sure I can learn some techniques regarding python code or trading idea.

Keep the hard works. Definitely will follow your posts.
👍  
properties (23)
authorstay9n0
permlinkre-furion-2017614t83729344z
categorypython
json_metadata{"tags":"python","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-14 00:37:33
last_update2017-06-14 00:37:33
depth1
children0
last_payout2017-06-21 00:37:33
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_length289
author_reputation1,452,017,590,144
root_title"Analyzing the crypto market with Python"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,780,904
net_rshares278,569,737
author_curate_reward""
vote details (1)
@steemanator ·
Strategy would work great in a bull market like the one we've had, not so good in a bear market.
properties (22)
authorsteemanator
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t234920510z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 23:49:21
last_update2017-06-14 23:49:21
depth1
children0
last_payout2017-06-21 23:49:21
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_reputation53,508,131,669
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,873,305
net_rshares0
@steemt ·
Awesome stuff! Interesting to compare with the Experts recommendations and backtest :)

I have compared 43 crypto experts' picks from May-June: 
 ![Screen Shot 2017-06-13 at 3.59.55 PM.png](https://steemitimages.com/DQmVEKKjgD9widayLQkXUMhgm22LqHnUdFzmCpUui2cLUpf/Screen%20Shot%202017-06-13%20at%203.59.55%20PM.png)

Full post:  https://steemit.com/cryptocurrency/@steemt/cryptocurrency-expert-sentiment-what-do-the-experts-recommend-and-do-they-agree
👍  
properties (23)
authorsteemt
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t163508870z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmVEKKjgD9widayLQkXUMhgm22LqHnUdFzmCpUui2cLUpf/Screen%20Shot%202017-06-13%20at%203.59.55%20PM.png"],"links":["https://steemit.com/cryptocurrency/@steemt/cryptocurrency-expert-sentiment-what-do-the-experts-recommend-and-do-they-agree"],"app":"steemit/0.1"}
created2017-06-14 16:35:09
last_update2017-06-14 16:35:09
depth1
children0
last_payout2017-06-21 16:35:09
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_length451
author_reputation4,187,907,095
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,840,504
net_rshares191,516,577
author_curate_reward""
vote details (1)
@steveitt ·
A great argument for buy & hold...
properties (22)
authorsteveitt
permlinkre-furion-analyzing-the-crypto-market-with-python-20170619t015007682z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-19 01:50:09
last_update2017-06-19 01:50:09
depth1
children0
last_payout2017-06-26 01:50:09
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_length34
author_reputation1,565,745,672,513
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,222,936
net_rshares0
@teamsteem ·
Very cool post! Very empowering kind of posts.
properties (22)
authorteamsteem
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t010437838z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:04:03
last_update2017-06-14 01:04:03
depth1
children0
last_payout2017-06-21 01:04:03
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_length46
author_reputation284,804,541,406,803
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,782,389
net_rshares0
@techforn10 ·
Very nice analysis. Great post.
properties (22)
authortechforn10
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t045112686z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 04:51:15
last_update2017-06-15 04:51:15
depth1
children0
last_payout2017-06-22 04:51:15
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_length31
author_reputation34,793,187,819
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,891,052
net_rshares0
@technium ·
Great post - I dev python. We should get together to do some machine learning and reinforcement learning applications with TensorFlow sometime.
👍  
properties (23)
authortechnium
permlinkre-furion-analyzing-the-crypto-market-with-python-20170728t100820906z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-07-28 10:08:24
last_update2017-07-28 10:08:24
depth1
children0
last_payout2017-08-04 10:08:24
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_length143
author_reputation5,402,319,412,741
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,004,230
net_rshares4,668,137,887
author_curate_reward""
vote details (1)
@thejohalfiles · (edited)
$0.27
Very interesting, cool stuff brother @furion thank you. We are involved in a space like no other. People are catching on this year more than ever.
👍  , ,
👎  
properties (23)
authorthejohalfiles
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t220008776z
categorypython
json_metadata{"tags":["python"],"users":["furion"],"app":"steemit/0.1"}
created2017-06-13 22:00:06
last_update2017-06-13 22:01:03
depth1
children4
last_payout2017-06-20 22:00:06
cashout_time1969-12-31 23:59:59
total_payout_value0.204 HBD
curator_payout_value0.065 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length146
author_reputation10,452,104,581,740
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,770,570
net_rshares10,655,593,881
author_curate_reward""
vote details (4)
@berniesanders ·
Are you ready??  This is gonna be fun!
👎  
properties (23)
authorberniesanders
permlinkre-thejohalfiles-re-furion-analyzing-the-crypto-market-with-python-20170613t233229811z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:32:30
last_update2017-06-13 23:32:30
depth2
children0
last_payout2017-06-20 23:32:30
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_length38
author_reputation600,251,775,828,524
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,792
net_rshares-11,222,500,436,964
author_curate_reward""
vote details (1)
@berniesanders ·
Don't worry, I'll get them just before payout.  Keep wasting that voting power though.
👎  
properties (23)
authorberniesanders
permlinkre-thejohalfiles-re-furion-analyzing-the-crypto-market-with-python-20170613t233516223z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:35:18
last_update2017-06-13 23:35:18
depth2
children0
last_payout2017-06-20 23:35: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_length86
author_reputation600,251,775,828,524
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,970
net_rshares-11,222,500,436,964
author_curate_reward""
vote details (1)
@berniesanders ·
Also, it's funny that you're not smart enough to know that your flags can't do shit to my comments.  Dumbass!
👎  
properties (23)
authorberniesanders
permlinkre-thejohalfiles-re-furion-analyzing-the-crypto-market-with-python-20170613t233905967z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:39:06
last_update2017-06-13 23:39:06
depth2
children0
last_payout2017-06-20 23:39:06
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_length109
author_reputation600,251,775,828,524
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,212
net_rshares-10,955,298,045,608
author_curate_reward""
vote details (1)
@berniesanders ·
Bring it on you fucking pussy!  Just wait to see what happens to the rest of @krnel's posts!!  I think you'll like my work!!!
👎  
properties (23)
authorberniesanders
permlinkre-thejohalfiles-re-furion-analyzing-the-crypto-market-with-python-20170613t234524849z
categorypython
json_metadata{"tags":["python"],"users":["krnel"],"app":"steemit/0.1"}
created2017-06-13 23:45:24
last_update2017-06-13 23:45:24
depth2
children0
last_payout2017-06-20 23:45:24
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_length125
author_reputation600,251,775,828,524
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,601
net_rshares-10,955,298,045,608
author_curate_reward""
vote details (1)
@tiffanybcorp ·
Nice  simple strategy . What's your reasoning for avoiding the top 10 coins?
properties (22)
authortiffanybcorp
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t011014153z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:10:15
last_update2017-06-14 01:10:15
depth1
children0
last_payout2017-06-21 01:10:15
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_length76
author_reputation101,289,709
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,782,775
net_rshares0
@toadslinger ·
I liked this post a lot! Voted, following and resteeming. Here are links to some posts I wrote that could help.



https://steemit.com/investing/@toadslinger/improving-investment-profits

https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-2-of-7

https://steemit.com/investing/@toadslinger/improving-investment-profit-pt-3-of-7

https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-4-of-7

https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-5-of-7

https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-6-of-7

https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-7-of-7
properties (22)
authortoadslinger
permlinkre-furion-analyzing-the-crypto-market-with-python-20170618t073302609z
categorypython
json_metadata{"tags":["python"],"links":["https://steemit.com/investing/@toadslinger/improving-investment-profits","https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-2-of-7","https://steemit.com/investing/@toadslinger/improving-investment-profit-pt-3-of-7","https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-4-of-7","https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-5-of-7","https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-6-of-7","https://steemit.com/investing/@toadslinger/improving-investment-profits-pt-7-of-7"],"app":"steemit/0.1"}
created2017-06-18 07:33:06
last_update2017-06-18 07:33:06
depth1
children0
last_payout2017-06-25 07:33:06
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_length683
author_reputation81,054,079,419
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,157,110
net_rshares0
@tuakanamorgan ·
Nice work thanks for sharing
👍  
properties (23)
authortuakanamorgan
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t021816599z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 02:18:15
last_update2017-06-14 02:18:15
depth1
children0
last_payout2017-06-21 02:18:15
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_reputation228,450,255,458
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,786,971
net_rshares93,265,480
author_curate_reward""
vote details (1)
@tumbleweeds ·
Great article! Very interesting project!
👍  
properties (23)
authortumbleweeds
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t173402342z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 17:34:03
last_update2017-06-14 17:34:03
depth1
children0
last_payout2017-06-21 17:34:03
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_length40
author_reputation6,023,147,605
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,845,157
net_rshares133,481,251
author_curate_reward""
vote details (1)
@umiksang ·
Hello.Thank you for your useful information.^^
Have a nice day today.
properties (22)
authorumiksang
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t005146111z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 01:02:54
last_update2017-06-14 01:02:54
depth1
children0
last_payout2017-06-21 01:02:54
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_length69
author_reputation1,351,184,124,801
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,782,322
net_rshares0
@umit · (edited)
Thanks man!! This post is gold
properties (22)
authorumit
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t033523781z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 03:35:24
last_update2017-06-14 03:36:00
depth1
children0
last_payout2017-06-21 03:35:24
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_length30
author_reputation51,877,222
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,791,680
net_rshares0
@unit423 ·
Awesome read.  I've been trying to wrap my head around crypto currency  and what its all about so it definitely helps to read stuff like this.
properties (22)
authorunit423
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t232057005z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:21:00
last_update2017-06-13 23:21:00
depth1
children0
last_payout2017-06-20 23:21:00
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_length142
author_reputation85,421,806,612
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,776,028
net_rshares0
@usama ·
I like it i thing Dash or Lite coin doing best
👍  
properties (23)
authorusama
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t234733528z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:47:36
last_update2017-06-13 23:47:36
depth1
children0
last_payout2017-06-20 23:47:36
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_length46
author_reputation10,144,182,417
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,738
net_rshares278,569,750
author_curate_reward""
vote details (1)
@usama ·
Nice .I agree
👍  
properties (23)
authorusama
permlinkre-furion-analyzing-the-crypto-market-with-python-20170615t145145962z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-15 02:48:42
last_update2017-06-15 02:48:42
depth1
children0
last_payout2017-06-22 02:48:42
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_length13
author_reputation10,144,182,417
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,883,943
net_rshares623,502,274
author_curate_reward""
vote details (1)
@vickykumar ·
https://steemit.com/teamaustralia/@vickykumar/linux-can-hack-steemit-or-not
![hack.jpg](https://steemitimages.com/DQmXeKyJHJt4ALNzoi1UU9ECKh3Hv7mJWt2w9KUiQ1dkW7v/hack.jpg)
properties (22)
authorvickykumar
permlinkre-furion-analyzing-the-crypto-market-with-python-20170617t160738094z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmXeKyJHJt4ALNzoi1UU9ECKh3Hv7mJWt2w9KUiQ1dkW7v/hack.jpg"],"links":["https://steemit.com/teamaustralia/@vickykumar/linux-can-hack-steemit-or-not"],"app":"steemit/0.1"}
created2017-06-17 16:07:39
last_update2017-06-17 16:07:39
depth1
children0
last_payout2017-06-24 16:07:39
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_length171
author_reputation-48,811,901,328
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,104,462
net_rshares0
@vidallia · (edited)
Is that screenshot the whole source code? if not will you please throw it into a  pastebin? I'm learning Python and would find it very interesting to look over!
Edit: Found the source lol. I have no idea how i missed it!
properties (22)
authorvidallia
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t165455503z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 16:55:00
last_update2017-06-14 17:07:30
depth1
children0
last_payout2017-06-21 16:55:00
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_length220
author_reputation252,226,177,161
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,842,106
net_rshares0
@viralhume ·
Invest in ETH it is soon going to $450+ . currently around $380 .
Already made $50 Profit in 6 Days.
![]![](https://steemitimages.com/DQmcsDugo5UFnLYkZ8FopjCoTwBeXnS6RLcMUkuBQWtCHNk/image.png)(https://steemitimages.com/DQmcsDugo5UFnLYkZ8FopjCoTwBeXnS6RLcMUkuBQWtCHNk/image.png)
properties (22)
authorviralhume
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t065133648z
categorypython
json_metadata{"tags":["python"],"image":["https://steemitimages.com/DQmcsDugo5UFnLYkZ8FopjCoTwBeXnS6RLcMUkuBQWtCHNk/image.png"],"app":"steemit/0.1"}
created2017-06-14 06:51:39
last_update2017-06-14 06:51:39
depth1
children0
last_payout2017-06-21 06:51:39
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_length277
author_reputation26,657,771
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,802,539
net_rshares0
@waqasaps ·
I could have been a millionaire if i invested 10$ in btc in 2012
properties (22)
authorwaqasaps
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t234217677z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 23:42:21
last_update2017-06-13 23:42:21
depth1
children0
last_payout2017-06-20 23:42:21
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_reputation123,513,632,764
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,777,409
net_rshares0
@watchout2017 ·
Super cool. Im printing this.  Ill be in touch soon with results.

@watchout

Domi
upvote max
properties (22)
authorwatchout2017
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t235824157z
categorypython
json_metadata{"tags":["python"],"users":["watchout"],"app":"steemit/0.1"}
created2017-06-13 23:58:30
last_update2017-06-13 23:58:30
depth1
children0
last_payout2017-06-20 23:58:30
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_length93
author_reputation237,607,560,257
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,778,453
net_rshares0
@wvm ·
Great info, re-steeming and upvoted!
properties (22)
authorwvm
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t223340481z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:33:39
last_update2017-06-13 22:33:39
depth1
children0
last_payout2017-06-20 22:33:39
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,755,829,867,297
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,772,794
net_rshares0
@yash2212 ·
Here are some related articles readers might be interested in

https://steemit.com/steemit/@yash2212/what-s-the-best-cryptocurrency-to-invest-in-long-term-why

https://steemit.com/stocks/@yash2212/the-ultimate-guide-to-becoming-an-investor
👍  
properties (23)
authoryash2212
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t173558937z
categorypython
json_metadata{"tags":["python"],"links":["https://steemit.com/steemit/@yash2212/what-s-the-best-cryptocurrency-to-invest-in-long-term-why","https://steemit.com/stocks/@yash2212/the-ultimate-guide-to-becoming-an-investor"],"app":"steemit/0.1"}
created2017-06-14 17:36:00
last_update2017-06-14 17:36:00
depth1
children2
last_payout2017-06-21 17:36:00
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_reputation4,962,207,292
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,845,310
net_rshares290,176,667
author_curate_reward""
vote details (1)
@yash2212 ·
Here are some related articles readers might be interested in

https://steemit.com/steemit/@yash2212/what-s-the-best-cryptocurrency-to-invest-in-long-term-why

https://steemit.com/stocks/@yash2212/the-ultimate-guide-to-becoming-an-investor
👍  
properties (23)
authoryash2212
permlinkre-yash2212-re-furion-analyzing-the-crypto-market-with-python-20170615t041351368z
categorypython
json_metadata{"tags":["python"],"links":["https://steemit.com/steemit/@yash2212/what-s-the-best-cryptocurrency-to-invest-in-long-term-why","https://steemit.com/stocks/@yash2212/the-ultimate-guide-to-becoming-an-investor"],"app":"steemit/0.1"}
created2017-06-15 04:13:48
last_update2017-06-15 04:13:48
depth2
children1
last_payout2017-06-22 04:13:48
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_reputation4,962,207,292
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,888,879
net_rshares290,176,667
author_curate_reward""
vote details (1)
@yash2212 ·
Here are some related articles readers might be interested in

https://steemit.com/steemit/@yash2212/what-s-the-best-cryptocurrency-to-invest-in-long-term-why

https://steemit.com/stocks/@yash2212/the-ultimate-guide-to-becoming-an-investor
👍  
properties (23)
authoryash2212
permlinkre-yash2212-re-yash2212-re-furion-analyzing-the-crypto-market-with-python-20170615t041550537z
categorypython
json_metadata{"tags":["python"],"links":["https://steemit.com/steemit/@yash2212/what-s-the-best-cryptocurrency-to-invest-in-long-term-why","https://steemit.com/stocks/@yash2212/the-ultimate-guide-to-becoming-an-investor"],"app":"steemit/0.1"}
created2017-06-15 04:15:48
last_update2017-06-15 04:15:48
depth3
children0
last_payout2017-06-22 04:15:48
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_reputation4,962,207,292
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,889,014
net_rshares290,176,667
author_curate_reward""
vote details (1)
@yehey ·
I'm curious to know. Did anyone of you follow this 30% up buy, 100% up sell half, 50% down sell all investing strategy?

What are your results? Loss or gain?
properties (22)
authoryehey
permlinkre-furion-analyzing-the-crypto-market-with-python-20170614t021247501z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-14 02:12:54
last_update2017-06-14 02:12:54
depth1
children0
last_payout2017-06-21 02:12:54
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_length157
author_reputation22,184,787,552,504
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,786,634
net_rshares0
@zatdi ·
Glad to see a post from a data scientist on Steemit.
properties (22)
authorzatdi
permlinkre-furion-analyzing-the-crypto-market-with-python-20170613t220854210z
categorypython
json_metadata{"tags":["python"],"app":"steemit/0.1"}
created2017-06-13 22:08:57
last_update2017-06-13 22:08:57
depth1
children0
last_payout2017-06-20 22:08:57
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_reputation19,116,075,118
root_title"Analyzing the crypto market with Python"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,771,096
net_rshares0