create account

When do whales upvote? by bitcalm

View this thread on: hive.blogpeakd.comecency.com
· @bitcalm ·
$5,731.09
When do whales upvote?
Ever wondered when whales are upvoting? I was wondering the same thing. I thought: perhaps some times are better to post than others.

So I wrote a program in Python to plot the upvote times for July 2016 for a random selection of whales. Here are the results:

# The founders

@ned and @dan appear very limited in the time they have to upvote. They're both similar in the number of votes they give.

![](http://steemit.bitcalm.mm.st/posts/whale_votes/ned.png)

![](http://steemit.bitcalm.mm.st/posts/whale_votes/dan.png)

If you get upvoted by @dan or @ned, you've done well. Not only because the founders like your work, but also because they aren't the most active upvoters.

# Whale bots

The accounts @steemed, @itsascam, and @steemroller are [all bots run by the same whale](https://steemit.com/curation/@steemed/im-a-steem-whale-looking-for-writers). These graphs illustrate bot behaviour: the distribution of upvotes is more even, and of course, they never seem to sleep.

![](http://steemit.bitcalm.mm.st/posts/whale_votes/steemed.png)

![](http://steemit.bitcalm.mm.st/posts/whale_votes/itsascam.png)

![](http://steemit.bitcalm.mm.st/posts/whale_votes/steemroller.png)

All these graphs really tell us are when the authors in the bot's author list have published an article.

# Others

Here are a bunch of other whales. Maybe some of them are bots, let me know if that's the case. It's fun making assumptions about the whales, like when they sleep.

![berniesanders](http://steemit.bitcalm.mm.st/posts/whale_votes/berniesanders.png)

Between 07:00 UTC and 14:00 UTC @berniesanders is mostly inactive. At the other times though he's a generous upvoter and quite consistent.

![blocktrades](http://steemit.bitcalm.mm.st/posts/whale_votes/blocktrades.png)

@blocktrades is very likely asleep between 06:00 UTC and 14:00 UTC. After this time there's a bit of voting, but not a great deal.

![complexring](http://steemit.bitcalm.mm.st/posts/whale_votes/complexring.png)

@complexring is either or bot or someone who has trouble sleeping. While upvoting between 06:00 and 12:00 UTC is significantly lower, there are still some votes taking place. @complexring is much more active in upvoting than @berniesanders.

![nextgencrypto](http://steemit.bitcalm.mm.st/posts/whale_votes/nextgencrypto.png)

@nextgencrypto does most upvoting during the weekend with some activity in the evening (their local time), assuming the gaps indicate sleep.

![pharesim](http://steemit.bitcalm.mm.st/posts/whale_votes/pharesim.png)

@pharesim's behaviour resembles @complexring. Perhaps a bot. There are lower periods of activity which could indicate sleep. Friday seems to be the most stable day where there's a clear pickup in voting after 12:00 UTC.

![rainmain](http://steemit.bitcalm.mm.st/posts/whale_votes/rainman.png)

It's clear that @rainman is sleeping between around 22:00 UTC and 04:00 UTC. Another low upvoting whale, @rainman is pretty consistent during the day.

![smooth](http://steemit.bitcalm.mm.st/posts/whale_votes/smooth.png)

@smooth's behaviour is similar to rainmain in that it's consistent during voting times, but there's no clear downtime, which raises the suspicion of bot use. @smooth is a slightly more active upvoter during the weekend.

![tombstone](http://steemit.bitcalm.mm.st/posts/whale_votes/tombstone.png)

@tombstone's graph looks empty, but that's caused by the bizarre outlier on Friday at 10:00 UTC. I have no idea what @tombstone was doing then, but it was an upvote frenzy.

The rest of the time @tombstone is quite consistent with voting, with slightly more activity between 02:00 UTC and 08:00 UTC.

# When should I post?

I've intentionally not drawn too many conclusion from these graphs. Perhaps the most useful information is knowing which whales upvote the most and when, so you can time your publication correctly.

Do you want to increase the chance that @berniesanders will upvote you? Don't post at 07:00 UTC because for the next 8 hours he's unlikely to see it; better to post around 03:00 UTC on a Wednesday.

With so many whales you're more or less covered whenever you post. What you're posting is far more important than when you post it.

# Show me the code

Feel free to use and adapt the code below as you like. Any bugs, please let me know in the comments. Read @furion's post for more information on parsing the blockchain.

The program requires Python 3 and the following libraries, which you can install with pip:

* matplotlib
* numpy
* pandas
* seaborn
* steem 

The program runs on the command-line. Provide a list of whale username and optionally, either the start and end blocks to analyze or start and end dates. The latter will convert the dates into the appropriate block numbers (this isn't fast - there's probably a better way to do it).

    python3 vote_dist.py dan ned smooth berniesanders -f 2016-07-01 -t 2016-07-31

Enjoy!

```
import argparse
import datetime
import math
from collections import defaultdict

import pandas as pd
import seaborn as sns
import numpy as np
from steemapi.steemnoderpc import SteemNodeRPC


def get_stats(rpc, users, beg_block, end_block):
    print("Getting stats for {} from block {} to block {}".format(
          users, beg_block, end_block))

    stats = defaultdict(list)
    current_block = beg_block
    while current_block < end_block:
        block = rpc.get_block(current_block)

        if "transactions" not in block:
            continue

        for tx in block["transactions"]:
            for op in tx["operations"]:
                op_type = op[0]
                op_data = op[1]

                timestamp = pd.to_datetime(tx['expiration'])

                if op_type == "vote":
                    author = op_data['author']
                    voter = op_data['voter']
                    weight = op_data['weight']
                    if voter in users and weight > 0:
                        stats[voter].append((timestamp, weight))
        current_block += 1
    return stats


def get_block_num_for_date(rpc, date):
    """
    Gets the first block number for the given date.

    This is anything but fast. There's probably a better way, but this was the
    first thing that came to mind.
    """
    print("Getting block num for {}".format(date))

    block = rpc.get_block(1)
    bc_date = pd.to_datetime(block['timestamp'])

    SECONDS_IN_DAY = 24 * 60 * 60
    NUM_BLOCKS_PER_DAY = math.floor(SECONDS_IN_DAY / 3)

    # Estimate the block number
    block_num = (date - bc_date).days * NUM_BLOCKS_PER_DAY

    # Use estimation to find the actual block number
    best_block_num = block_num
    best_block_diff = None
    while True:
        block = rpc.get_block(block_num)
        block_date = pd.to_datetime(block['timestamp'])
        diff = (date - block_date).total_seconds()

        if best_block_diff:
            if abs(diff) > abs(best_block_diff):
                break

        best_block_num = block_num
        best_block_diff = diff
        if diff > 0:
            block_num += 1
        elif diff < 0:
            block_num -= 1
        else:
            break
    return best_block_num


def create_plot(user, votes):
    print("Creating plot for {}".format(user))

    df = pd.DataFrame.from_records(votes, columns=['time', 'weight'])
    df['day'] = df['time'].dt.weekday_name
    df['hour'] = df['time'].dt.hour

    col_order = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday",
                 "Saturday", "Sunday"]

    plot = sns.FacetGrid(df, col="day", col_order=col_order, col_wrap=3)
    plot = plot.map(sns.plt.hist, "hour", bins=np.arange(0, 23),
                    color="c").set_titles("{col_name}")
    plot.set(xticks=np.arange(23, step=2), xlim=(0, 23))
    plot.set_axis_labels('Hour', 'Upvotes')
    plot.fig.suptitle(user, size=16)
    plot.fig.subplots_adjust(top=.9)

    return plot


if __name__ == "__main__":
    parser = argparse.ArgumentParser()
    parser.add_argument('usernames', nargs='*',
                        help='Usernames to show statistics for')
    parser.add_argument('-s', '--server', default='ws://localhost:8090',
                        dest='server',
                        help='Address of the steem JSON-RPC server')
    block_group = parser.add_argument_group('blocks')
    block_group.add_argument('-b', '--begin-block', default=1, type=int,
                        dest='beg_block',
                        help='The block to begin on.')
    block_group.add_argument('-e', '--end-block', default=None, type=int,
                        dest='end_block',
                        help='The block to end on. Default is last_irreversible_block_num.')
    date_group = parser.add_argument_group('dates')
    date_group.add_argument('-f', '--from-date', type=str, dest='from_date',
                        help='The date to end on.')
    date_group.add_argument('-t', '--to-date', type=str, dest='to_date',
                        help='The date to end on.')
    args = parser.parse_args()

    # Connect to steem rpc server
    rpc = SteemNodeRPC(args.server, "", "")

    # Get the block numbers
    if args.from_date and args.to_date:
        args.from_date = pd.to_datetime(args.from_date)
        args.to_date = pd.to_datetime(args.to_date)
        args.beg_block = get_block_num_for_date(rpc, args.from_date)
        args.end_block = get_block_num_for_date(rpc, args.to_date + datetime.timedelta(days=1)) - 1
    else:
        props = rpc.get_dynamic_global_properties()
        if args.end_block:
            if args.end_block > props['last_irreversible_block_num']:
                args.end_block = props['last_irreversible_block_num']
        else:
            args.end_block = props['last_irreversible_block_num']

    # Validate block numbers
    if args.beg_block < 0:
        print("begin-block must be greater than 0")
        sys.exit(1)

    if args.end_block < args.beg_block:
        print("end-block must be greater than beg-block")
        sys.exit(1)

    # Get the stats
    stats = get_stats(rpc, args.usernames, args.beg_block, args.end_block)
    for user, votes in stats.items():
        plot = create_plot(user, votes)
        plot.savefig('{}.png'.format(user))

    if len(stats) == 0:
        print("Nothing found for the given parameters")
```

---

Like my post? Don't forget to follow me!
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 478 others
properties (23)
authorbitcalm
permlinkwhen-do-whales-upvote
categoryprogramming
json_metadata{"tags":["programming","steemit","stats","analysis"]}
created2016-08-09 11:24:24
last_update2016-08-09 11:24:24
depth0
children120
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value4,519.766 HBD
curator_payout_value1,211.325 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10,327
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,440
net_rshares191,755,750,002,223
author_curate_reward""
vote details (542)
@abit ·
Interesting. Ordered by what?
properties (22)
authorabit
permlinkre-bitcalm-when-do-whales-upvote-20160809t210456853z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 21:05:06
last_update2016-08-09 21:05:06
depth1
children1
last_payout2016-09-09 03:59: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_length29
author_reputation141,171,499,037,785
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id711,497
net_rshares0
@bitcalm ·
There's no ordering. It's grouped by day and distributed over the number of upvotes in each hour in the day for all upvotes in July.
properties (22)
authorbitcalm
permlinkre-abit-re-bitcalm-when-do-whales-upvote-20160810t052745723z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 05:27:36
last_update2016-08-10 05:27:36
depth2
children0
last_payout2016-09-09 03:59: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_length132
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id718,956
net_rshares0
@ace108 ·
thanks for sharing the interesting insight.
so, the real humans seeming identified by you do take rest too.
:-)
properties (22)
authorace108
permlinkre-bitcalm-when-do-whales-upvote-20160810t010525131z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 01:02:15
last_update2016-08-10 01:02:15
depth1
children0
last_payout2016-09-09 03:59: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_length111
author_reputation1,230,316,950,530,522
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id715,321
net_rshares0
@akkha ·
Great 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-bitcalm-when-do-whales-upvote-20170531t185520298z
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://steemitimages.com/DQmcxhQm8weYpmQHp1PA8RkxpoZzMgHWYwykm7vcQH3jug9/thumbs%20up%20steem%20with%20akkha.jpg"],"app":"steemit/0.1"}
created2017-05-31 18:55:18
last_update2017-05-31 18:55:18
depth1
children0
last_payout2017-06-07 18:55: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_length188
author_reputation6,662,251,112,812
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id4,004,579
net_rshares0
@alifton ·
Pretty insightful stuff if you're out to go "Whaling" in hopes of grabbing one's attention.  Math never lies and these graphs seem very concise.  While I'm sure these graphs will come in handy for those hoping to win the Whale "Lottery" so to speak, I would rather hope my work speaks for itself.

Having seen the changes coming in the next hard fork, it looks like the 12 hour window is likely being extended to 24 hours.  Most likely because as you pointed out above, people have lives, and do need sleep.  If you figure the average person sleeps for 6 to 8 hours a night, your post's window for discovery becomes that much smaller if you post it during off-peak hours.

This was a great analysis with code included so your peers can also see for themselves first hand the voting (and possibly sleeping) habits of other fellow Steemians.  

A+ to you Sir for a job well done!
properties (22)
authoralifton
permlinkre-bitcalm-when-do-whales-upvote-20160810t043253490z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 04:32:51
last_update2016-08-10 04:32:51
depth1
children1
last_payout2016-09-09 03:59: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_length877
author_reputation661,948,714,392
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id718,280
net_rshares0
@bitcalm ·
Math doesn't lie but people can present facts in different ways to influence behaviour. Check out my post on [the framing effect](https://steemit.com/psychology/@bitcalm/the-lies-we-tell-ourselves-the-framing-effect) to see what I mean. Also, I may have made a mistake :)

I wasn't aware of the limit being extended back to 24 hours. It'll be interesting to see what that does to upvoting behaviour.
properties (22)
authorbitcalm
permlinkre-alifton-re-bitcalm-when-do-whales-upvote-20160810t053231705z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/psychology/@bitcalm/the-lies-we-tell-ourselves-the-framing-effect"]}
created2016-08-10 05:32:24
last_update2016-08-10 05:32:24
depth2
children0
last_payout2016-09-09 03:59: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_length399
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id719,011
net_rshares0
@allasyummyfood ·
following you now of course! and amazing analysis! Loved the geeky graphs! haha So conclusion... post whenever :P
πŸ‘  
properties (23)
authorallasyummyfood
permlinkre-bitcalm-when-do-whales-upvote-20160809t112926618z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 11:29:27
last_update2016-08-09 11:29:27
depth1
children3
last_payout2016-09-09 03:59: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_length113
author_reputation283,763,839,951,286
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,492
net_rshares62,283,361
author_curate_reward""
vote details (1)
@bitcalm ·
Don't make fun of my conclusion! :) Yes, conclusion is there are enough whales (probably) that it doesn't matter. Although, targeting the avid upvoting big whales might pay off.
properties (22)
authorbitcalm
permlinkre-allasyummyfood-re-bitcalm-when-do-whales-upvote-20160809t123320730z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:33:12
last_update2016-08-09 12:33:12
depth2
children2
last_payout2016-09-09 03:59: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_length177
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,303
net_rshares0
@allasyummyfood ·
ummm ;P
properties (22)
authorallasyummyfood
permlinkre-bitcalm-re-allasyummyfood-re-bitcalm-when-do-whales-upvote-20160809t123734837z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:37:33
last_update2016-08-09 12:37:33
depth3
children1
last_payout2016-09-09 03:59: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_length7
author_reputation283,763,839,951,286
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,363
net_rshares0
@allasyummyfood ·
omg nice job ;))) hahaha
πŸ‘  
properties (23)
authorallasyummyfood
permlinkre-bitcalm-when-do-whales-upvote-20160809t171428567z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 17:14:27
last_update2016-08-09 17:14:27
depth1
children0
last_payout2016-09-09 03:59: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_length24
author_reputation283,763,839,951,286
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id706,949
net_rshares4,264,720,934
author_curate_reward""
vote details (1)
@anwar78 ·
Nice tip man!!
properties (22)
authoranwar78
permlinkre-bitcalm-when-do-whales-upvote-20160809t193013497z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 19:30:15
last_update2016-08-09 19:30:15
depth1
children0
last_payout2016-09-09 03:59: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_length14
author_reputation23,452,817,298
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,579
net_rshares0
@arisromansyah88 ·
@bitcalm, Wow .. good posts, thanks for your info .. :)

https://s10.postimg.org/8exmn71uh/13820847_10206443367717147_1438664747_n.gif
πŸ‘  ,
properties (23)
authorarisromansyah88
permlinkre-bitcalm-when-do-whales-upvote-20160809t133517947z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"],"image":["https://s10.postimg.org/8exmn71uh/13820847_10206443367717147_1438664747_n.gif"]}
created2016-08-09 13:36:09
last_update2016-08-09 13:36:09
depth1
children0
last_payout2016-09-09 03:59: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_length134
author_reputation-818,215,108,010
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,228
net_rshares1,083,941,227
author_curate_reward""
vote details (2)
@ats-david ·
But what do the whales actually vote on? I was hoping that my latest post would catch a few of them. How does that happen? Do I need more followers? And what's with the 30-minute talk about rewards? I would think that a post like this would at least get a little more attention from whales and bots:

https://steemit.com/anarchism/@ats-david/enriching-lives-through-the-power-of-steemit
properties (22)
authorats-david
permlinkre-bitcalm-when-do-whales-upvote-20160809t180626656z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/anarchism/@ats-david/enriching-lives-through-the-power-of-steemit"]}
created2016-08-09 18:06:27
last_update2016-08-09 18:06:27
depth1
children0
last_payout2016-09-09 03:59: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_length386
author_reputation324,017,334,201,433
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id707,931
net_rshares0
@ayishagisel ·
I thought bots weren't allow.  Now I'm wondering if the only way to make money is to get upvoted by a whale.  I'm new here and just figuring things out before I do my first post.
πŸ‘  
properties (23)
authorayishagisel
permlinkre-bitcalm-when-do-whales-upvote-20170622t082829505z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2017-06-22 08:28:30
last_update2017-06-22 08:28:30
depth1
children0
last_payout2017-06-29 08:28: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_length178
author_reputation9,603,148,553
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id5,603,674
net_rshares986,601,444
author_curate_reward""
vote details (1)
@azurejasper ·
Just reading this now- fantastic into - thanks for taking the time to put this together & share - awesome work!
properties (22)
authorazurejasper
permlinkre-bitcalm-when-do-whales-upvote-20160810t005228628z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 00:52:30
last_update2016-08-10 00:52:30
depth1
children0
last_payout2016-09-09 03:59: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_length111
author_reputation11,951,841,900,510
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id715,215
net_rshares0
@bhavnapatel68 ·
I liked you post...upvote has to be always there for a good post like this which explains the statistics well...
πŸ‘  
properties (23)
authorbhavnapatel68
permlinkre-bitcalm-when-do-whales-upvote-20160809t224644749z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 22:46:45
last_update2016-08-09 22:46:45
depth1
children0
last_payout2016-09-09 03:59: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_length112
author_reputation4,976,629,087,476
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id713,293
net_rshares338,182,018
author_curate_reward""
vote details (1)
@binkyprod ·
Wait, I don't get it. So maybe a Whale will upvote you. So this program will guarantee a whale upvote?
properties (22)
authorbinkyprod
permlinkre-bitcalm-when-do-whales-upvote-20170821t064639685z
categoryprogramming
json_metadata{"tags":["programming"],"app":"steemit/0.1"}
created2017-08-21 06:46:39
last_update2017-08-21 06:46:39
depth1
children0
last_payout2017-08-28 06:46: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_length102
author_reputation103,994,393,290,019
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,411,206
net_rshares0
@blakemiles84 ·
$0.28
# Absolute friggin gold. 

https://www.steemimg.com/images/2016/08/05/18i15tc6517.jpg
πŸ‘  , , , , , ,
properties (23)
authorblakemiles84
permlinkre-bitcalm-when-do-whales-upvote-20160809t154915020z
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://www.steemimg.com/images/2016/08/05/18i15tc6517.jpg"]}
created2016-08-09 15:49:09
last_update2016-08-09 15:49:09
depth1
children2
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.274 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length85
author_reputation51,861,865,663,185
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,457
net_rshares416,000,922,820
author_curate_reward""
vote details (7)
@keithwillshine ·
Your perverted, you know that! lol
properties (22)
authorkeithwillshine
permlinkre-blakemiles84-re-bitcalm-when-do-whales-upvote-20160809t182052942z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:20:54
last_update2016-08-09 18:20:54
depth2
children1
last_payout2016-09-09 03:59: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_length34
author_reputation6,275,954,556,208
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,247
net_rshares0
@blakemiles84 ·
I see what you did there...
properties (22)
authorblakemiles84
permlinkre-keithwillshine-re-blakemiles84-re-bitcalm-when-do-whales-upvote-20160809t205631838z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 20:56:33
last_update2016-08-09 20:56:33
depth3
children0
last_payout2016-09-09 03:59: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_length27
author_reputation51,861,865,663,185
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id711,293
net_rshares0
@blueorgy ·
$0.11
Oh Man, you stole my thunder! http://catchawhale.com 
Was going to publish my results soon, but looks like you beat me to the chase. 
I will still of course be publishing my findings but this looks pretty damn good.
πŸ‘  , , , , ,
properties (23)
authorblueorgy
permlinkre-bitcalm-when-do-whales-upvote-20160809t163242469z
categoryprogramming
json_metadata{"tags":["programming"],"links":["http://catchawhale.com"]}
created2016-08-09 16:32:42
last_update2016-08-09 16:32:42
depth1
children2
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.110 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length215
author_reputation56,287,880,276,342
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id706,189
net_rshares174,260,746,905
author_curate_reward""
vote details (6)
@bitcalm ·
$0.11
But you made a cool web app out of it. I was too lazy to do that (well actually it's cause I'm going on holiday soon and wouldn't finish it in time).

Looking forward to your post. Oh and I'm following you now :D
πŸ‘  
properties (23)
authorbitcalm
permlinkre-blueorgy-re-bitcalm-when-do-whales-upvote-20160809t172045027z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 17:20:45
last_update2016-08-09 17:20:45
depth2
children1
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.098 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id707,086
net_rshares168,782,402,474
author_curate_reward""
vote details (1)
@blueorgy ·
As am I! We should collaborate in the near future!
properties (22)
authorblueorgy
permlinkre-bitcalm-re-blueorgy-re-bitcalm-when-do-whales-upvote-20160809t173100767z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 17:31:00
last_update2016-08-09 17:31:00
depth3
children0
last_payout2016-09-09 03:59: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_length50
author_reputation56,287,880,276,342
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id707,308
net_rshares0
@budgetbucketlist ·
Any whales want to vote on this one perhaps ;)   

I spent my birthday helping the homeless in Argentina. Upvoting = making a donation for free! https://steemit.com/travel/@budgetbucketlist/an-unforgettable-birthday-party-with-the-homeless-people-of-buenos-aires-made-possible-by-steemit
πŸ‘  ,
properties (23)
authorbudgetbucketlist
permlinkre-bitcalm-when-do-whales-upvote-20160809t153511697z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/travel/@budgetbucketlist/an-unforgettable-birthday-party-with-the-homeless-people-of-buenos-aires-made-possible-by-steemit"]}
created2016-08-09 15:35:06
last_update2016-08-09 15:35:06
depth1
children0
last_payout2016-09-09 03:59: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_length287
author_reputation52,748,266,682,213
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,202
net_rshares5,247,691,210
author_curate_reward""
vote details (2)
@bythenumbers432 ·
Wow amazing post, very thorough I have often wonder when the whales are voting and now we know.
properties (22)
authorbythenumbers432
permlinkre-bitcalm-when-do-whales-upvote-20160810t023142809z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 02:31:24
last_update2016-08-10 02:31:24
depth1
children0
last_payout2016-09-09 03:59: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_length95
author_reputation655,688,292,786
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id716,644
net_rshares0
@c082832 ·
@steemed, @itsascam, and @steemroller are bots???!?!?!
properties (22)
authorc082832
permlinkre-bitcalm-when-do-whales-upvote-20160809t185921873z
categoryprogramming
json_metadata{"tags":["programming"],"users":["steemed","itsascam","steemroller"]}
created2016-08-09 18:59:21
last_update2016-08-09 18:59:21
depth1
children0
last_payout2016-09-09 03:59: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_length54
author_reputation5,187,432,801,760
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,015
net_rshares0
@candy49 ·
$0.02
Some fantastic work by you here. It is a real pity there are so few whales - there just arn't enough to go around.
πŸ‘  ,
properties (23)
authorcandy49
permlinkre-bitcalm-when-do-whales-upvote-20160809t122357797z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:23:54
last_update2016-08-09 12:23:54
depth1
children1
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation8,256,286,200,499
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,188
net_rshares81,731,792,732
author_curate_reward""
vote details (2)
@bitcalm · (edited)
Thanks! They say this will change as time goes on and power is more distributed. We'll see.
properties (22)
authorbitcalm
permlinkre-candy49-re-bitcalm-when-do-whales-upvote-20160809t130953014z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 13:09:45
last_update2016-08-09 13:09:57
depth2
children0
last_payout2016-09-09 03:59: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_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,803
net_rshares0
@clement ·
Great work! And thanks for the code that you used!
properties (22)
authorclement
permlinkre-bitcalm-when-do-whales-upvote-20160809t114422352z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 11:44:21
last_update2016-08-09 11:44:21
depth1
children1
last_payout2016-09-09 03:59: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_length50
author_reputation12,800,792,022,668
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,677
net_rshares0
@bitcalm ·
You're welcome. Hopefully others can use it as a basis for even cooler stats.
properties (22)
authorbitcalm
permlinkre-clement-re-bitcalm-when-do-whales-upvote-20160809t131033619z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 13:10:27
last_update2016-08-09 13:10:27
depth2
children0
last_payout2016-09-09 03:59: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_length77
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,811
net_rshares0
@complexring ·
$0.29
I can assure you that I am not a bot ... I just happen to enjoy most posts I read.
πŸ‘  , , , , , , , , , , ,
properties (23)
authorcomplexring
permlinkre-bitcalm-when-do-whales-upvote-20160809t131301984z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 13:13:00
last_update2016-08-09 13:13:00
depth1
children1
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.224 HBD
curator_payout_value0.065 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation62,649,292,215,598
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,845
net_rshares430,337,388,977
author_curate_reward""
vote details (12)
@bitcalm · (edited)
Hehe my analysis was anything but in depth, and I'm no statistician. Hope you weren't offended :D I hear you're a mathematician. Any tips for future stats posts?
properties (22)
authorbitcalm
permlinkre-complexring-re-bitcalm-when-do-whales-upvote-20160809t135625620z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 13:56:18
last_update2016-08-09 14:15:39
depth2
children0
last_payout2016-09-09 03:59: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_length161
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,537
net_rshares0
@cryptosi ·
I'd say avoid 8-16UTC time, which is 9-5 UK time! kinda convenient if you live in UK and want help with your Steem addiction!
πŸ‘  
properties (23)
authorcryptosi
permlinkre-bitcalm-when-do-whales-upvote-20160809t120327244z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:03:21
last_update2016-08-09 12:03:21
depth1
children2
last_payout2016-09-09 03:59: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_length125
author_reputation378,844,291,332
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,898
net_rshares5,446,895,616
author_curate_reward""
vote details (1)
@bitcalm ·
$0.12
Yeah. The next question to answer is after posting, when do the most rewards happen. Do most come in the first hour? Is 30 minutes really the cutoff? Is there a point where posts just stop getting attention even though it's inside the reward time limit?

The blockchain has the answer! :)
πŸ‘  , , , ,
properties (23)
authorbitcalm
permlinkre-cryptosi-re-bitcalm-when-do-whales-upvote-20160809t121242838z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:12:36
last_update2016-08-09 12:12:36
depth2
children1
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.090 HBD
curator_payout_value0.026 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length288
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,044
net_rshares185,334,667,968
author_curate_reward""
vote details (5)
@cryptobro ·
This was my next question as I read through your post.  Are you reading my mind?  You have a new follower.
properties (22)
authorcryptobro
permlinkre-bitcalm-re-cryptosi-re-bitcalm-when-do-whales-upvote-20160809t131823392z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 13:18:24
last_update2016-08-09 13:18:24
depth3
children0
last_payout2016-09-09 03:59: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_length106
author_reputation912,384,027,106
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,942
net_rshares0
@cuckoo ·
Which time zone it is?
properties (22)
authorcuckoo
permlinkre-bitcalm-when-do-whales-upvote-20160809t220844090z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 22:08:45
last_update2016-08-09 22:08:45
depth1
children1
last_payout2016-09-09 03:59: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_length22
author_reputation550,621,144,979
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,690
net_rshares0
@bitcalm ·
It's in the post. UTC stands for Coordinated Universal Time. There are many online tools for translating UTC time to the time zone you're in.
properties (22)
authorbitcalm
permlinkre-cuckoo-re-bitcalm-when-do-whales-upvote-20160810t053351297z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 05:33:42
last_update2016-08-10 05:33:42
depth2
children0
last_payout2016-09-09 03:59: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_length141
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id719,033
net_rshares0
@decrypt ·
cool work
properties (22)
authordecrypt
permlinkre-bitcalm-when-do-whales-upvote-20160810t024149759z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 02:41:51
last_update2016-08-10 02:41:51
depth1
children0
last_payout2016-09-09 03:59: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_length9
author_reputation987,629,623,608
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id716,818
net_rshares0
@defiant ·
Great job!
properties (22)
authordefiant
permlinkre-bitcalm-when-do-whales-upvote-20160810t012004159z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 01:20:03
last_update2016-08-10 01:20:03
depth1
children0
last_payout2016-09-09 03:59: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_length10
author_reputation80,769,043,128
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id715,593
net_rshares0
@dennygalindo ·
This is really helpful. Thanks for building. What lis next?
πŸ‘  
properties (23)
authordennygalindo
permlinkre-bitcalm-when-do-whales-upvote-20160809t113537436z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 11:35:36
last_update2016-08-09 11:35:36
depth1
children0
last_payout2016-09-09 03:59: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_length59
author_reputation6,552,498,469,686
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,585
net_rshares57,963,848
author_curate_reward""
vote details (1)
@epiphany ·
Fascinating and clever. Thank you!
properties (22)
authorepiphany
permlinkre-bitcalm-when-do-whales-upvote-20160809t220053293z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 22:00:48
last_update2016-08-09 22:00:48
depth1
children0
last_payout2016-09-09 03:59: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_length34
author_reputation961,293,231,586
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,536
net_rshares0
@escapeamericanow ·
Thanks for your work on this. Pretty cool. It really ended up being a sort of interesting sideshow more than helping to figure out when to post, eh? Can't seem to get traction with my posts, so was excited to see the title. Just keeping on I guess... :)
properties (22)
authorescapeamericanow
permlinkre-bitcalm-when-do-whales-upvote-20160810t002110121z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 00:21:12
last_update2016-08-10 00:21:12
depth1
children0
last_payout2016-09-09 03:59: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_length253
author_reputation12,411,720,457,033
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id714,761
net_rshares0
@etcmike ·
Fantastic post!  Thank you for doing the analysis and sharing the code.  This post is definitely making it to my FAVORITES!

Steem on!
Mike
properties (22)
authoretcmike
permlinkre-bitcalm-when-do-whales-upvote-20160809t210148784z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 21:01:48
last_update2016-08-09 21:01:48
depth1
children0
last_payout2016-09-09 03:59: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_length139
author_reputation534,676,096,189,306
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id711,425
net_rshares0
@freddy008 ·
$0.05
Interesting research, but people can still post everyday, this is not a reason to just post on those specific days in those specific hours.
πŸ‘  
properties (23)
authorfreddy008
permlinkre-bitcalm-when-do-whales-upvote-20160809t160144100z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 16:01:45
last_update2016-08-09 16:01:45
depth1
children1
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length139
author_reputation1,469,326,629,460
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,648
net_rshares81,098,004,691
author_curate_reward""
vote details (1)
@soulsistashakti ·
I don't have time for all that.  Steemit is just one of the many things I do, I can't be up all in this bizness 24/7 I have other things to do.  Money doesn't run my life :)
πŸ‘  
properties (23)
authorsoulsistashakti
permlinkre-freddy008-re-bitcalm-when-do-whales-upvote-20160809t182249129z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:22:48
last_update2016-08-09 18:22:48
depth2
children0
last_payout2016-09-09 03:59: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_length173
author_reputation16,661,384,249,815
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,286
net_rshares57,843,281
author_curate_reward""
vote details (1)
@gargon ·
I think we need ro focus on our posts. If not we will get crazy trying to catch a whale
properties (22)
authorgargon
permlinkre-bitcalm-when-do-whales-upvote-20160809t141054659z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 14:10:54
last_update2016-08-09 14:10:54
depth1
children2
last_payout2016-09-09 03:59: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_length87
author_reputation169,359,743,811,801
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,758
net_rshares0
@bitcalm ·
You're right, people shouldn't "go overboard" (see what I did there?) trying to get whale votes. The reason I did this was for the fun and just in case there was a really obvious pattern, like whales never upvoting on Fridays. Not the case.
πŸ‘  
properties (23)
authorbitcalm
permlinkre-gargon-re-bitcalm-when-do-whales-upvote-20160809t141310285z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 14:13:03
last_update2016-08-09 14:13:03
depth2
children1
last_payout2016-09-09 03:59: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_length240
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,786
net_rshares870,575,932
author_curate_reward""
vote details (1)
@gargon ·
Anyway, I think you always make good points and post that generate discussion. You were one of the first ones I followed. Keep the good work!
properties (22)
authorgargon
permlinkre-bitcalm-re-gargon-re-bitcalm-when-do-whales-upvote-20160810t095021060z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 09:50:21
last_update2016-08-10 09:50:21
depth3
children0
last_payout2016-09-09 03:59: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_length141
author_reputation169,359,743,811,801
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id721,808
net_rshares0
@go-voluntary ·
Here's some helpful information! @seedsofliberty @jaredhowe @dragonanarchist @larkenrose
properties (22)
authorgo-voluntary
permlinkre-bitcalm-when-do-whales-upvote-20160809t193822534z
categoryprogramming
json_metadata{"tags":["programming"],"users":["seedsofliberty","jaredhowe","dragonanarchist","larkenrose"]}
created2016-08-09 19:38:24
last_update2016-08-09 19:38:24
depth1
children0
last_payout2016-09-09 03:59: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_length88
author_reputation14,053,671,653
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,725
net_rshares0
@grolelo ·
I usually finish writing my posts around midnight Hawaii time and find that it's better to just leave it overnight and post the next morning for better visibility.  Purely anecdotal, no data to back it up, but seems to be working out ok.
properties (22)
authorgrolelo
permlinkre-bitcalm-when-do-whales-upvote-20160810t062348703z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 06:23:48
last_update2016-08-10 06:23:48
depth1
children0
last_payout2016-09-09 03:59: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_length237
author_reputation1,646,650,171,375
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id719,656
net_rshares0
@guinsanity ·
Whoah man what a great post! upvoted and followed
properties (22)
authorguinsanity
permlinkre-bitcalm-when-do-whales-upvote-20160809t220242625z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 22:10:33
last_update2016-08-09 22:10:33
depth1
children0
last_payout2016-09-09 03:59: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_length49
author_reputation27,030,404,862
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,724
net_rshares0
@guyvoltaire ·
I'm sure this isn't a very original thing to say but kudos to you for compiling this and coding the script/program? yourself. Very interesting idea, I never really gave much thought as to posting and upvoting times trends throughout the day until now. I think I'd to like follow further posts relevant to this. Could you maybe suggest a few of the steemtools you think are most useful or interesting for a new member?
properties (22)
authorguyvoltaire
permlinkre-bitcalm-when-do-whales-upvote-20160809t183034156z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:30:36
last_update2016-08-09 18:30:36
depth1
children2
last_payout2016-09-09 03:59: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_length417
author_reputation13,222,980,324
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,437
net_rshares0
@bitcalm ·
I use steemstats and not much else. I'm in steemit.chat a lot, but that's not what you mean. @furion has a nice developer's guide if you're interested in getting into it yourself, and @blueorgy has a stats website that works with live data. I'm sure there are more.
properties (22)
authorbitcalm
permlinkre-guyvoltaire-re-bitcalm-when-do-whales-upvote-20160809t185025933z
categoryprogramming
json_metadata{"tags":["programming"],"users":["furion","blueorgy"]}
created2016-08-09 18:50:24
last_update2016-08-09 18:50:24
depth2
children1
last_payout2016-09-09 03:59: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_length265
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,826
net_rshares0
@guyvoltaire ·
Alright cool I'll be sure to check steemstats, furion's guide and the chat and stats website! 
Thanks again :)
properties (22)
authorguyvoltaire
permlinkre-bitcalm-re-guyvoltaire-re-bitcalm-when-do-whales-upvote-20160810t033958560z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 03:40:03
last_update2016-08-10 03:40:03
depth3
children0
last_payout2016-09-09 03:59: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_length110
author_reputation13,222,980,324
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id717,558
net_rshares0
@hilarski ·
Brilliant work and I imagine it took hours of work. My experience on social media has been to post whenever I can. Preferably in the am since most of my followers are in North, Central or South America. On Steemit with the window being shortlived I think 10am EST is a safe time for my account.
properties (22)
authorhilarski
permlinkre-bitcalm-when-do-whales-upvote-20160809t154505059z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 15:45:06
last_update2016-08-09 15:45:06
depth1
children1
last_payout2016-09-09 03:59: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_length294
author_reputation488,873,580,141,533
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,379
net_rshares0
@bitcalm ·
Yeah it took about 5 hours. I spent ages tweaking it. Converting a date to a block number wasn't really necessary, but it makes it easier to use. Also, that method is super slow. I bet it can be done better.
πŸ‘  
properties (23)
authorbitcalm
permlinkre-hilarski-re-bitcalm-when-do-whales-upvote-20160809t155108300z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 15:51:00
last_update2016-08-09 15:51:00
depth2
children0
last_payout2016-09-09 03:59: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_length207
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,482
net_rshares9,820,073,617
author_curate_reward""
vote details (1)
@jedau ·
$5.97
Oh, man, @bitcalm. Your posts never cease to amaze me. I don't know if it's just because you're posting topics that I can relate to or are interested in, but you get all my upvotes. I've been meaning to code something like this for a while now, but opted to experiment posting on different times with different kinds of content. This post is very insightful and is shaping up to be one of my most favorite posts in Steemit so far. I guess an improvement to this is to factor in the tags or types of post they upvote along with their voting time. This really has a potential to analyze whale voting behavior.

By the way, @complexring is 100% human, and an accomplished mathematician. As to why his voting behavior looks like that, I'm not sure. But, he's a cool guy who has an inclination to fiction posts.
πŸ‘  , , , , , , , , , , , , , , , , , , , , , ,
properties (23)
authorjedau
permlinkre-bitcalm-when-do-whales-upvote-20160809t113729358z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm","complexring"]}
created2016-08-09 11:37:30
last_update2016-08-09 11:37:30
depth1
children22
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value5.276 HBD
curator_payout_value0.696 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length806
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,608
net_rshares4,563,261,711,223
author_curate_reward""
vote details (23)
@bitcalm ·
You're welcome. I'm glad you enjoy my posts. This one took a bit more effort than the others, but it was a lot of fun. It's only touching the surface of the kind of statistical analysis you can do on the blockchain.
properties (22)
authorbitcalm
permlinkre-jedau-re-bitcalm-when-do-whales-upvote-20160809t121030294z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:10:24
last_update2016-08-09 12:10:24
depth2
children5
last_payout2016-09-09 03:59: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_length215
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,014
net_rshares0
@jedau ·
Good for you for blazing the trail. Personally, I've been mostly scared of making any analysis out of fear of making a mistake and being criticized for it. I really hope posts like this gain some traction to increase the confidence of people like myself. I agree that there are tons of insights to be mined.
πŸ‘  ,
properties (23)
authorjedau
permlinkre-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t121233378z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:12:33
last_update2016-08-09 12:12:33
depth3
children2
last_payout2016-09-09 03:59: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_length307
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,042
net_rshares4,177,795,274
author_curate_reward""
vote details (2)
@rushd · (edited)
Do you think you could find out the general topics they upvote on? Not really because I want to posting about those topics but more to see the direction in which steem it might be heading in. After all the whales are the curators of steem.
properties (22)
authorrushd
permlinkre-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t190427455z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 19:04:33
last_update2016-08-09 19:05:21
depth3
children1
last_payout2016-09-09 03:59: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_reputation172,953,944,203
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,123
net_rshares0
@bitcalm ·
$0.07
Good to know @complexring is human. Hope he figure out the sleep problem ;) Actually, it'd be cool to have a mathematician weigh in on this. Can you pass the link on?
πŸ‘  , ,
properties (23)
authorbitcalm
permlinkre-jedau-re-bitcalm-when-do-whales-upvote-20160809t122239772z
categoryprogramming
json_metadata{"tags":["programming"],"users":["complexring"]}
created2016-08-09 12:22:33
last_update2016-08-09 12:22:33
depth2
children6
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length166
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,167
net_rshares110,924,385,767
author_curate_reward""
vote details (3)
@faraz ·
Like ur post @bitcalm , follow u
πŸ‘  
properties (23)
authorfaraz
permlinkre-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t191436920z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-09 19:14:42
last_update2016-08-09 19:14:42
depth3
children0
last_payout2016-09-09 03:59: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_length32
author_reputation324,357,724,493
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,331
net_rshares205,899,987
author_curate_reward""
vote details (1)
@jedau ·
Sure thing! I hope he replies on this thread with his thoughts
properties (22)
authorjedau
permlinkre-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t122330158z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:23:30
last_update2016-08-09 12:23:30
depth3
children0
last_payout2016-09-09 03:59: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_length62
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,184
net_rshares0
@meteor78 ·
πŸ‘nice showing graphics to know @bitcalm
πŸ‘  
properties (23)
authormeteor78
permlinkre-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t183840400z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-09 18:38:45
last_update2016-08-09 18:38:45
depth3
children1
last_payout2016-09-09 03:59: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_length39
author_reputation184,361,553,890
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,606
net_rshares210,579,533
author_curate_reward""
vote details (1)
@steemitpatina ·
I was giggling as I read, wondering if any of the possibly-a-bot-but-really-a-human whales were rethinking their sleep schedules.
πŸ‘  
properties (23)
authorsteemitpatina
permlinkre-bitcalm-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t141432198z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 14:14:33
last_update2016-08-09 14:14:33
depth3
children1
last_payout2016-09-09 03:59: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_length129
author_reputation7,507,292,756,109
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,815
net_rshares57,205,327
author_curate_reward""
vote details (1)
@cryptobro ·
$0.09
@bitcalm nailed it on this post.  I would love to see this trend month over month!
πŸ‘  , ,
properties (23)
authorcryptobro
permlinkre-jedau-re-bitcalm-when-do-whales-upvote-20160809t131653354z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-09 13:16:54
last_update2016-08-09 13:16:54
depth2
children1
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.068 HBD
curator_payout_value0.018 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation912,384,027,106
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id702,917
net_rshares142,283,657,499
author_curate_reward""
vote details (3)
@jedau ·
Right you are!
properties (22)
authorjedau
permlinkre-cryptobro-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t132722632z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 13:27:21
last_update2016-08-09 13:27:21
depth3
children0
last_payout2016-09-09 03:59: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_length14
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,073
net_rshares0
@flyboyzombie ·
Wow that was way to dam helpful !! OK if anyone agrees smash dat mfcking up vote! Also how has this helped others??
properties (22)
authorflyboyzombie
permlinkre-jedau-re-bitcalm-when-do-whales-upvote-20160809t225233045z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 22:52:36
last_update2016-08-09 22:52:36
depth2
children1
last_payout2016-09-09 03:59: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_length115
author_reputation5,788,213,054,794
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id713,396
net_rshares0
@jedau ·
The upvote button for this post has been so smashed, I don't know if we could even resuscitate it.
properties (22)
authorjedau
permlinkre-flyboyzombie-re-jedau-re-bitcalm-when-do-whales-upvote-20160810t033724299z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 03:37:24
last_update2016-08-10 03:37:24
depth3
children0
last_payout2016-09-09 03:59: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_length98
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id717,536
net_rshares0
@merej99 ·
What @jedau said.  I've been posting whenever and wherever I can since I've got to wait about 2 weeks to get internet at my house, so parking lot hopping with free wifi has been my life the last few days since I moved.  Yay Me!  Anyway - I saw your list of bots and I'm thinking, "Well, I'm a frikken idiot" because I've been seeking those usernames out and trying to engage...maybe get on their radar...and I might as well be talking to my stereo.  *sigh*  I kind of have to laugh at myself.  LOL
πŸ‘  , , , , ,
properties (23)
authormerej99
permlinkre-jedau-re-bitcalm-when-do-whales-upvote-20160809t141323201z
categoryprogramming
json_metadata{"tags":["programming"],"users":["jedau"]}
created2016-08-09 14:13:03
last_update2016-08-09 14:13:03
depth2
children2
last_payout2016-09-09 03:59: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_length497
author_reputation109,727,414,619,488
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,787
net_rshares27,268,355,984
author_curate_reward""
vote details (6)
@jedau ·
It's good you were notified they were bots before you got emotionally invested in them LOL :D seriously though, great effort trying to find places to post from. I really hope that my upvote for you was worth more but sadly it isn't.
πŸ‘  ,
properties (23)
authorjedau
permlinkre-merej99-re-jedau-re-bitcalm-when-do-whales-upvote-20160809t142542505z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 14:25:42
last_update2016-08-09 14:25:42
depth3
children1
last_payout2016-09-09 03:59: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_length232
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id704,037
net_rshares4,408,442,470
author_curate_reward""
vote details (2)
@spookypooky ·
Data is beautiful.
properties (22)
authorspookypooky
permlinkre-jedau-re-bitcalm-when-do-whales-upvote-20160809t193728641z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 19:37:30
last_update2016-08-09 19:37:30
depth2
children1
last_payout2016-09-09 03:59: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_length18
author_reputation2,591,924,956,536
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,705
net_rshares0
@jedau ·
I agree with this wholeheartedly. If only data wasn't shared by all, I would've put a ring on it instantly. That's how much I like it.
properties (22)
authorjedau
permlinkre-spookypooky-re-jedau-re-bitcalm-when-do-whales-upvote-20160810t033630066z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 03:36:30
last_update2016-08-10 03:36:30
depth3
children0
last_payout2016-09-09 03:59: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_length134
author_reputation50,429,040,590,557
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id717,525
net_rshares0
@justtryme90 ·
Thats some mighty fine whale stalking you've been doing here. Bravo for the effort man!
πŸ‘  
properties (23)
authorjusttryme90
permlinkre-bitcalm-when-do-whales-upvote-20160810t014920870z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 01:48:39
last_update2016-08-10 01:48:39
depth1
children0
last_payout2016-09-09 03:59: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_length87
author_reputation140,118,479,939,905
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id716,011
net_rshares101,922,286
author_curate_reward""
vote details (1)
@juvyjabian ·
Good to have this information @bitcalm, its very useful to people like me who wanted to be upvoted by whales. The only trouble here is the time, I live on the other side of the world where days here are night there but I can find a way, I have to find a way.
properties (22)
authorjuvyjabian
permlinkre-bitcalm-when-do-whales-upvote-20160809t224651903z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-09 21:56:24
last_update2016-08-09 21:56:24
depth1
children0
last_payout2016-09-09 03:59: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_length258
author_reputation185,700,092,637,158
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,458
net_rshares0
@kalimor ·
very useful )
πŸ‘  ,
πŸ‘Ž  , , ,
properties (23)
authorkalimor
permlinkre-bitcalm-when-do-whales-upvote-20160809t142920468z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 14:31:15
last_update2016-08-09 14:31:15
depth1
children0
last_payout2016-09-09 03:59: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_length13
author_reputation945,706,095,176
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id704,128
net_rshares4,880,225,252
author_curate_reward""
vote details (6)
@lasseehlers ·
So the conclusion is: Content matter and not the time of the post.

Nice to know.

<p><a href="https://steemit.com/@lasseehlers/posts">Lasse Ehlers</a></p>
properties (22)
authorlasseehlers
permlinkre-bitcalm-when-do-whales-upvote-20160809t153753074z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/@lasseehlers/posts"]}
created2016-08-09 15:38:00
last_update2016-08-09 15:38:00
depth1
children0
last_payout2016-09-09 03:59: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_length155
author_reputation-19,498,697,845,818
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,258
net_rshares0
@lkong87 ·
lol you crack me up with the "whales".
properties (22)
authorlkong87
permlinkre-bitcalm-when-do-whales-upvote-20160809t185314466z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:53:21
last_update2016-08-09 18:53:21
depth1
children0
last_payout2016-09-09 03:59: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_length38
author_reputation343,276,759,037
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,895
net_rshares0
@lordvader · (edited)
This is like asking ,"When do Sith Lords force choke someone?"

http://img.cinemablend.com/cb/9/9/c/6/d/7/99c6d756088902e30f12e7775581a9fe7294eb6dfc2d20bf611f0c12d9fd6d0c.jpg

Whenever they want.
properties (22)
authorlordvader
permlinkre-bitcalm-when-do-whales-upvote-20160809t193340968z
categoryprogramming
json_metadata{"tags":["programming"],"image":["http://img.cinemablend.com/cb/9/9/c/6/d/7/99c6d756088902e30f12e7775581a9fe7294eb6dfc2d20bf611f0c12d9fd6d0c.jpg"]}
created2016-08-09 19:33:39
last_update2016-08-09 19:37:06
depth1
children0
last_payout2016-09-09 03:59: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_length195
author_reputation94,274,982,842,662
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,650
net_rshares0
@mac-o ·
I'm saving this post in my browser favs; it's worth to revisit from time to time. I like what you did here @bitcalm
properties (22)
authormac-o
permlinkre-bitcalm-when-do-whales-upvote-20160809t212149734z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-09 21:21:48
last_update2016-08-09 21:21:48
depth1
children0
last_payout2016-09-09 03:59: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_length115
author_reputation542,049,933,877
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id711,800
net_rshares0
@mac-o ·
besides the time frame, any particular lure i can use to attract these whales to my posts. they seem to pass by pretty much unnoticed no mather what
properties (22)
authormac-o
permlinkre-bitcalm-when-do-whales-upvote-20160810t034253519z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 03:42:54
last_update2016-08-10 03:42:54
depth1
children0
last_payout2016-09-09 03:59: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_length148
author_reputation542,049,933,877
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id717,589
net_rshares0
@matherly ·
no matter when you posted, YOU made it!!!  :^) @bitcalm
properties (22)
authormatherly
permlinkre-bitcalm-when-do-whales-upvote-20160810t020949750z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-10 02:09:51
last_update2016-08-10 02:09:51
depth1
children0
last_payout2016-09-09 03:59: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_length55
author_reputation5,036,194,561,090
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id716,344
net_rshares0
@moonguy ·
So, if @steemed, @itsascam, and @steemroller are all bot, how do they judge quality of a post? Does it mean that these whale bots are upvoting relying on some pre-defined parameter instead of post quality?
properties (22)
authormoonguy
permlinkre-bitcalm-when-do-whales-upvote-20160809t173251844z
categoryprogramming
json_metadata{"tags":["programming"],"users":["steemed","itsascam","steemroller"]}
created2016-08-09 17:32:51
last_update2016-08-09 17:32:51
depth1
children1
last_payout2016-09-09 03:59: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_length205
author_reputation355,338,083,472
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id707,343
net_rshares0
@bitcalm ·
To get on the author list you need to be pre-approved, and from what I've heard, what gets upvoted is checked and if the quality is poor, you risk being removed.

So it's automated but still sort of curated.

I get why you're not happy with it though. It's a big presumptuous to think that someone always writes good content; a kind of halo effect, if you like.
properties (22)
authorbitcalm
permlinkre-moonguy-re-bitcalm-when-do-whales-upvote-20160809t184759691z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:48:00
last_update2016-08-09 18:48:00
depth2
children0
last_payout2016-09-09 03:59: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_length361
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,782
net_rshares0
@mrgrey ·
Awesome info now I just need a script to guide them to my blog lol just kidding you post is awesome.

[![@mrgrey](https://i.imgsafe.org/8cb9d0171b.jpg)](http://steemit.com/@mrgrey)
properties (22)
authormrgrey
permlinkre-bitcalm-when-do-whales-upvote-20160809t214226061z
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://i.imgsafe.org/8cb9d0171b.jpg"]}
created2016-08-09 21:42:24
last_update2016-08-09 21:42:24
depth1
children0
last_payout2016-09-09 03:59: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_length180
author_reputation3,805,658,080,500
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,196
net_rshares0
@nippel66 ·
This is cool. Great you made this statestic. ^^
πŸ‘  
properties (23)
authornippel66
permlinkre-bitcalm-when-do-whales-upvote-20160809t120806386z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 12:08:21
last_update2016-08-09 12:08:21
depth1
children0
last_payout2016-09-09 03:59: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_length47
author_reputation26,614,292,969,136
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,978
net_rshares6,786,216,500
author_curate_reward""
vote details (1)
@noor ·
very detailed, making a clearer picture about "whales"
properties (22)
authornoor
permlinkre-bitcalm-when-do-whales-upvote-20160809t153633570z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 15:36:33
last_update2016-08-09 15:36:33
depth1
children0
last_payout2016-09-09 03:59: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_length54
author_reputation40,245,578,104
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,235
net_rshares0
@owdy ·
Good work @bitcalm, I really like the way you displayed your information. I assume the times shown here are UTC?

I posted something that looked at similar data not too long ago, but I tried looking at it on a calendar.  [Check it out if your have a minute, I'd appreciate your input.](https://steemit.com/steemit/@owdy/steemit-analysis-3-upvotes-lots-of-them-how-understanding-the-whales-upvoting-cycles-can-increase-your-expected-payout)
πŸ‘  
properties (23)
authorowdy
permlinkre-bitcalm-when-do-whales-upvote-20160809t190009926z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"],"links":["https://steemit.com/steemit/@owdy/steemit-analysis-3-upvotes-lots-of-them-how-understanding-the-whales-upvoting-cycles-can-increase-your-expected-payout"]}
created2016-08-09 19:00:12
last_update2016-08-09 19:00:12
depth1
children0
last_payout2016-09-09 03:59: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_length439
author_reputation3,152,666,625,062
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,036
net_rshares2,084,442,170
author_curate_reward""
vote details (1)
@penguinpablo ·
Great analysis. Now we can cast our fishing rod at the right time trying to catch a whale :)
πŸ‘  
properties (23)
authorpenguinpablo
permlinkre-bitcalm-when-do-whales-upvote-20160809t142323084z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 14:23:21
last_update2016-08-09 14:23:21
depth1
children0
last_payout2016-09-09 03:59: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_length92
author_reputation792,312,678,950,166
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id703,994
net_rshares4,438,791,176
author_curate_reward""
vote details (1)
@persik ·
We need to check
properties (22)
authorpersik
permlinkre-bitcalm-when-do-whales-upvote-20160809t173853988z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 17:39:00
last_update2016-08-09 17:39:00
depth1
children0
last_payout2016-09-09 03:59: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_length16
author_reputation60,573,820,387
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id707,455
net_rshares0
@poeticsnake ·
I really love posts with stats because they show me so much more than reading words that make me scared to say them out loud. Thank you for sharing this with us all and giving us some more insight on what plays around here and around what time. Not that I think it will do me good seeing I am awake when all the whales sleep. But then again, I am rather enjoying myself here even without the whales. I love goldfish.
properties (22)
authorpoeticsnake
permlinkre-bitcalm-when-do-whales-upvote-20160809t182000258z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:20:12
last_update2016-08-09 18:20:12
depth1
children0
last_payout2016-09-09 03:59: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_length416
author_reputation147,782,814,593,781
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,225
net_rshares0
@professorx ·
Automated whale watching. Really great bit of code!
properties (22)
authorprofessorx
permlinkre-bitcalm-when-do-whales-upvote-20160810t020302386z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 02:03:03
last_update2016-08-10 02:03:03
depth1
children0
last_payout2016-09-09 03:59: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_length51
author_reputation2,328,048,423,342
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id716,235
net_rshares0
@rainman ·
This was actually much more interesting that I expected, good job :)

I can confirm I don't use a bot to vote for me; it's all done manually by yours truly, at least for now. I'm a bit surprised that I'm a "low upvoting whale" since I feel like I vote *a lot*, but as I don't use bots or have a team of people curating for me I suppose that's normal.

I'm also trying to refrain from voting on posts that already have $1000+  payouts in order to balance things out a little, so I guess that factors in as well.
πŸ‘  , , , ,
properties (23)
authorrainman
permlinkre-bitcalm-when-do-whales-upvote-20160809t183813158z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:38:12
last_update2016-08-09 18:38:12
depth1
children4
last_payout2016-09-09 03:59: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_reputation8,323,904,861,044
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,592
net_rshares11,187,128,048
author_curate_reward""
vote details (5)
@bitcalm ·
Nice to hear you don't use a bot. It was difficult to tell with you because it could have just been (and probably was) the way things averaged out....or you're telling porkies ;)

It makes sense that the bot powered whales are upvoting more. Perhaps that's a good metric to determine if someone is a bot - I can imagine bots upvote more than regular users (and also never post articles). At the same time, I literally just looked at the images to compare them. I wanted to add the total count to each plot, but I'd already generated them and took 30 mins - laziness won. :)

Nice to hear that you hold back on large reward posts. I think a lot of users will be happy to hear that.
properties (22)
authorbitcalm
permlinkre-rainman-re-bitcalm-when-do-whales-upvote-20160809t185823606z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:58:24
last_update2016-08-09 18:58:24
depth2
children2
last_payout2016-09-09 03:59: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_length680
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,987
net_rshares0
@lordvader ·
Your power has grown! Impressive. Most impressive.
properties (22)
authorlordvader
permlinkre-bitcalm-re-rainman-re-bitcalm-when-do-whales-upvote-20160813t065816468z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-13 06:58:15
last_update2016-08-13 06:58:15
depth3
children0
last_payout2016-09-09 03:59: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_length50
author_reputation94,274,982,842,662
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id778,921
net_rshares0
@rainman ·
You did get my vote nevertheless ;)

I could be telling porkies of course but that doesn't come natural to me so I don't :) My curation rewards probably would've been way higher had I used a bot in any way, and being sick like I was for the last 3-4 days would not have made such a big impact.

I'm fine with the lesser rewards though, and to be honest  I feel the system is a bit too skewed towards whale curators at the moment. Us whales working hard to optimize our curation rewards will not help with the distribution issue, so I prefer to take a relaxed attitude towards it.
πŸ‘  
properties (23)
authorrainman
permlinkre-bitcalm-re-rainman-re-bitcalm-when-do-whales-upvote-20160809t191603592z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 19:16:03
last_update2016-08-09 19:16:03
depth3
children0
last_payout2016-09-09 03:59: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_length579
author_reputation8,323,904,861,044
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,358
net_rshares4,177,685,813
author_curate_reward""
vote details (1)
@knozaki2015 ·
$0.10
Hi Rainman,

its great to see you communicate with us.  i think it doesn't matter, if one uses a bot or votes himself. 
through you own reading , you will catch more valuable stuff than the bots, the bots on the other hand, will be able to spread more earnings to many authors. so both sides have good and bad aspects.

maybe you could do me a favor and check this out, 
https://steemit.com/food/@knozaki2015/britafilters-hacked-read-the-whole-hacking-story-steemit-exclusive

i co-authored it with a friend (100% of the Steem $ going to him) , and this is my piece i think was my best post of all in my Steemit history. 

thanks !
πŸ‘  , , , , ,
properties (23)
authorknozaki2015
permlinkre-rainman-re-bitcalm-when-do-whales-upvote-20160809t222242566z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/food/@knozaki2015/britafilters-hacked-read-the-whole-hacking-story-steemit-exclusive"]}
created2016-08-09 22:22:45
last_update2016-08-09 22:22:45
depth2
children0
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.100 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length631
author_reputation1,102,353,973,346,032
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,903
net_rshares160,104,760,041
author_curate_reward""
vote details (6)
@ranko-k ·
$0.03
Now?
πŸ‘  
properties (23)
authorranko-k
permlinkre-bitcalm-when-do-whales-upvote-20160809t183954170z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:39:57
last_update2016-08-09 18:39:57
depth1
children0
last_payout2016-09-09 03:59:00
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation6,755,527,628,023
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,626
net_rshares47,070,988,926
author_curate_reward""
vote details (1)
@scottcal ·
I meant to write some code that did something similar. Hopefully this helps you understand what I've been doing this whole time. YOU ARE THE MAN!
http://i247.photobucket.com/albums/gg140/scottcal/ahh-procrastination.jpg
properties (22)
authorscottcal
permlinkre-bitcalm-when-do-whales-upvote-20160810t041309619z
categoryprogramming
json_metadata{"tags":["programming"],"image":["http://i247.photobucket.com/albums/gg140/scottcal/ahh-procrastination.jpg"]}
created2016-08-10 04:13:09
last_update2016-08-10 04:13:09
depth1
children0
last_payout2016-09-09 03:59: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_length219
author_reputation1,147,005,007
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id718,003
net_rshares0
@scottvanfossen · (edited)
Excellent post @bitcalm.  I'll take a look at that code as well.  Upvoted.  Oh, also take a peek at this, @katecloud!  Hopefully this can help you with your awesome artwork!! :)
πŸ‘  
properties (23)
authorscottvanfossen
permlinkre-bitcalm-when-do-whales-upvote-20160809t214624972z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm","katecloud"]}
created2016-08-09 21:46:24
last_update2016-08-09 21:47:18
depth1
children0
last_payout2016-09-09 03:59: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_length177
author_reputation179,894,142,228
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id712,275
net_rshares290,605,787
author_curate_reward""
vote details (1)
@scottvanfossen ·
I posted a Visual Timezone Aide over here, citing this post for the inspiration. Hope this helps people!
https://steemit.com/programming/@scottvanfossen/need-a-visual-aide-in-time-zones-post-when-the-whales-will-see-you
πŸ‘  
properties (23)
authorscottvanfossen
permlinkre-bitcalm-when-do-whales-upvote-20160809t235703914z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/programming/@scottvanfossen/need-a-visual-aide-in-time-zones-post-when-the-whales-will-see-you"]}
created2016-08-09 23:57:06
last_update2016-08-09 23:57:06
depth1
children0
last_payout2016-09-09 03:59: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_length219
author_reputation179,894,142,228
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id714,415
net_rshares290,605,787
author_curate_reward""
vote details (1)
@seanengman ·
Fascinating article and good work on the program. Thanks for sharing with all of us.
properties (22)
authorseanengman
permlinkre-bitcalm-when-do-whales-upvote-20160810t013858933z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 01:39:03
last_update2016-08-10 01:39:03
depth1
children0
last_payout2016-09-09 03:59: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_length84
author_reputation1,081,578,404,830
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id715,865
net_rshares0
@soulsistashakti ·
LOL!  Great :)
properties (22)
authorsoulsistashakti
permlinkre-bitcalm-when-do-whales-upvote-20160809t181335469z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 18:13:33
last_update2016-08-09 18:13:33
depth1
children0
last_payout2016-09-09 03:59: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_length14
author_reputation16,661,384,249,815
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id708,072
net_rshares0
@spinbunny ·
Very interesting even tho I will admit I don't understand the details😍
properties (22)
authorspinbunny
permlinkre-bitcalm-when-do-whales-upvote-20160809t192858717z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 19:29:03
last_update2016-08-09 19:29:03
depth1
children0
last_payout2016-09-09 03:59: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_length70
author_reputation115,763,566,190,375
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id709,559
net_rshares0
@stephaniemurphy ·
This is the Willy Report of Steemit.
πŸ‘  
properties (23)
authorstephaniemurphy
permlinkre-bitcalm-when-do-whales-upvote-20160809t201449025z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 20:14:48
last_update2016-08-09 20:14:48
depth1
children0
last_payout2016-09-09 03:59: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_length36
author_reputation985,490
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id710,393
net_rshares63,071,415
author_curate_reward""
vote details (1)
@summonerrk ·
Looks like a tombstone have a nice Friday morning

https://www.steemimg.com/images/2016/08/09/sxxsc8479.png
πŸ‘  
properties (23)
authorsummonerrk
permlinkre-bitcalm-when-do-whales-upvote-20160809t170047134z
categoryprogramming
json_metadata{"tags":["programming"],"image":["https://www.steemimg.com/images/2016/08/09/sxxsc8479.png"]}
created2016-08-09 17:00:48
last_update2016-08-09 17:00:48
depth1
children0
last_payout2016-09-09 03:59: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_length107
author_reputation46,064,707,665,216
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id706,717
net_rshares4,264,720,934
author_curate_reward""
vote details (1)
@sunjata ·
This is great. I actually have just finished a step-by-step guide to [extracting and analysing data from the blockchain](https://steemit.com/programming/@sunjata/a-data-scientist-s-guide-to-steem-s-blockchain) that you, and others inspired by your post, might find interesting. I did some basic time-series stuff (rolling mean) on post payouts, which is definitely an analysis that you could use on vote frequency to smooth out the fluctuations.
properties (22)
authorsunjata
permlinkre-bitcalm-when-do-whales-upvote-20160810t023820695z
categoryprogramming
json_metadata{"tags":["programming"],"links":["https://steemit.com/programming/@sunjata/a-data-scientist-s-guide-to-steem-s-blockchain"]}
created2016-08-10 02:38:21
last_update2016-08-10 02:38:21
depth1
children0
last_payout2016-09-09 03:59: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_length445
author_reputation2,215,677,577,306
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id716,760
net_rshares0
@thebatchman ·
Good stuff, I was wondering what best post times would be. Steemians, it's wise to do your best with the knowledge @bitcalm just posted!
πŸ‘  , , , ,
properties (23)
authorthebatchman
permlinkre-bitcalm-when-do-whales-upvote-20160809t113122571z
categoryprogramming
json_metadata{"tags":["programming"],"users":["bitcalm"]}
created2016-08-09 11:31:33
last_update2016-08-09 11:31:33
depth1
children0
last_payout2016-09-09 03:59: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_length136
author_reputation10,499,752,392,175
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id701,521
net_rshares24,491,275,911
author_curate_reward""
vote details (5)
@thebluepanda ·
That was a good laugh. lol.
There are real people behind whale :)
πŸ‘  
properties (23)
authorthebluepanda
permlinkre-bitcalm-when-do-whales-upvote-20160809t154504486z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 15:44:57
last_update2016-08-09 15:44:57
depth1
children0
last_payout2016-09-09 03:59: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_length65
author_reputation37,591,154,470,762
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,375
net_rshares4,264,720,934
author_curate_reward""
vote details (1)
@themagus ·
Good work....I assume their different geographical locations also influence what is reflected as 'post times'
properties (22)
authorthemagus
permlinkre-bitcalm-when-do-whales-upvote-20160810t061545477z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 06:15:15
last_update2016-08-10 06:15:15
depth1
children2
last_payout2016-09-09 03:59: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_length109
author_reputation95,451,799,136,793
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id719,551
net_rshares0
@bitcalm ·
The graphs show time in UTC (coordinated universal time) which is not specific to a time zone. I'm assuming that an eight hour period is when they are asleep, so can infer their time zone. If you want to know when you should post when given such a graph, you need to convert a given time in UTC to your local time. There are tools online for this.
properties (22)
authorbitcalm
permlinkre-themagus-re-bitcalm-when-do-whales-upvote-20160810t174508645z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-10 17:45:09
last_update2016-08-10 17:45:09
depth2
children1
last_payout2016-09-09 03:59: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_length347
author_reputation24,919,530,803,138
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id728,985
net_rshares0
@themagus ·
Never too old to learn. Thank you my friend.... I shall research.
properties (22)
authorthemagus
permlinkre-bitcalm-re-themagus-re-bitcalm-when-do-whales-upvote-20160811t060033423z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-11 06:00:39
last_update2016-08-11 06:00:39
depth3
children0
last_payout2016-09-09 03:59: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_length65
author_reputation95,451,799,136,793
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id740,696
net_rshares0
@warrensteem ·
wow! i was thinking about this the other day. unfortunately i dont have the knowledge to this.  so thanks a mil for this
properties (22)
authorwarrensteem
permlinkre-bitcalm-when-do-whales-upvote-20160809t155235890z
categoryprogramming
json_metadata{"tags":["programming"]}
created2016-08-09 15:51:12
last_update2016-08-09 15:51:12
depth1
children0
last_payout2016-09-09 03:59: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_length120
author_reputation29,924,587,138,042
root_title"When do whales upvote?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id705,487
net_rshares0