BRO - dividends DATA and CHARTS + Python codes .

avatar

Good morning to everyone , I have been posting recently about various investment tokens , how they are performing , how much they are paying to the holders.

Today the post is about one of the most rewarding tokens on Hive blockchain - The BRO token.

BRO

It is a token created by @raymondspeaks . To put it in simple words , he uses the money raised by selling BRO to invest in various projects and provide dividends to the holders .
If you want to buy it - go to H-E market since it can be puchased only on the market now .

The price right now is - 9 HIVE .

Dividends in 8 tokens

If you are holding BRO , you will receive dividends in 8 tokens .

import shelve 
import pandas as pd
import json
from datetime import datetime as dt

s=shelve.open('Blocks\Blockchain') # Where I store 2nd layer token transaction details

df=pd.DataFrame.from_dict(s.items()) # Converting to DataFrame 

df.columns=['Blocks','Transactions'] # Naming the columns 

Now let's dive into the real part -

brofund_list=[]
for i in range(0,len(df)): 
    if(df['Transactions'][i]['Transaction']['action']=='transfer'):# To get only transfer tx
        json_all_transfers=json.loads(df['Transactions'][i]['Transaction']['logs'])
        if 'events' in json_all_transfers:
            if(str(json_all_transfers['events'][0]['data']['from']).startswith('brofund-')): # Since different tokens are sent by different accounts I have used startswith to match all the accounts
                brofund_list.append([json_all_transfers['events'][0]['data']['from'],json_all_transfers['events'][0]['data']['to'],json_all_transfers['events'][0]['data']['symbol'],json_all_transfers['events'][0]['data']['quantity'],pd.to_datetime(df['Transactions'][i]['Date']).date()]) # Storing it in a list . 

Output looks something like this if I print the above -

image.png

The above is only a part of the output , there are totally 37635 rows in the output .

df_brofund=pd.DataFrame(brofund_list) # Converting list to dataframe
df_brofund.columns=['from','to','symbol','quantity','date'] # Naming the columns
df_brofund['quantity']=pd.to_numeric(df_brofund['quantity']) # Converting to float type 
df_grouped=df_brofund.groupby(['date','symbol']).sum().reset_index() # Grouping the dividends using date and symbol column

Output -

image.png

#To get individual token details 

df_arc=df_grouped[df_grouped['symbol']=='ARCHON']
df_bee=df_grouped[df_grouped['symbol']=='BEE']
df_leo=df_grouped[df_grouped['symbol']=='LEO']
df_ag=df_grouped[df_grouped['symbol']=='NEOXAG']
df_pal=df_grouped[df_grouped['symbol']=='PAL']
df_sim=df_grouped[df_grouped['symbol']=='SIM']
df_stem=df_grouped[df_grouped['symbol']=='STEM']
df_weed=df_grouped[df_grouped['symbol']=='WEED']

Now I have just plotted it in chart so I will stop with all this codes and stuff lol .

Dividends from BRO for the period Jan 1 to Jan 26

ARCHON

image.png
image.png

NEOXAG

image.png
image.png

BEE

image.png
image.png

LEO

image.png
image.png

SIM

image.png
image.png

PAL

image.png
image.png

STEM

image.png
image.png

WEED

image.png
image.png

Note: The above is dividends paid to all the holders of BRO for the period - JAN 1 to JAN 26.

We can see from the above that the dividends has been consistent to the holders . Although we can see dips on somedays , it has always recovered and paid good dividends to holders .

Example of @trumpman account who holds 1k BRO

df_trumpman=df_brofund[df_brofund['to']=='trumpman'].groupby(['date','symbol']).sum().reset_index()
df_trumpman.groupby(['symbol']).sum()

For the period of Jan 1 to Jan 26 - @trumpman has got -

image.png

Example of @spinvest account which holds 4k BRO

For the period of Jan 1 to Jan 26 - @spinvest has got -

image.png

Do you hold BRO ?

If you want data for your account , let me know in the comments I will get it for you :)
But know that I can get only for the period Jan 1 to Jan 26 .


Follow me on noise.cash - https://noise.cash/u/AMR where I post about LEO / HIVE or photography .
Regards ,
MR.

Posted Using LeoFinance Beta



0
0
0.000
26 comments
avatar

I got a tiny 14.5 bro at the moment, don't think I would have much gained from payouts yet. =p

0
0
0.000
avatar

At what price did you buy them ? That matters too - this is your total dividends from Jan 1 to Jan 26 -

image.png

Not bad I guess?

Posted Using LeoFinance Beta

0
0
0.000
avatar

can't remember, probably 8-9hive a piece only recently invested.

0
0
0.000
avatar

Oh okay I guess if you hold for long time you will get into profits . Since it holds a lot of LEO , the airdrop will be beneficial for the holders.

Posted Using LeoFinance Beta

0
0
0.000
avatar

I'd definitely like to know about my divdidends so far this month. Thanks in advance
:<)

0
0
0.000
avatar

Hey :) Sure here it is -

image.png

Are you happy with this amount ?

I definitely would be ;)

Posted Using LeoFinance Beta

0
0
0.000
avatar

Not too bad for passive income. Thanks a lot and have a great weekend! :<)

Posted Using LeoFinance Beta

0
0
0.000
avatar

Thanks Vincent:) you too have a great Sunday.

Posted Using LeoFinance Beta

0
0
0.000
avatar

It's Saturday here in Portugal haha
Are you on the other side of the world? :<)

0
0
0.000
avatar

Oh yes sir I'm from India.

Posted Using LeoFinance Beta

0
0
0.000
avatar

I actually lost track of days. It was Sunday here but I thought it was Saturday. That happens after working at home since 2016 and living in this crazy world.

It's about 5 hours later where you're at, so mostly the same day :<)

0
0
0.000
avatar

This is so interesting! :D

I have 34 Bros!
But I got in "early" on, I don't think I paid more than 4 hive for a token never :D

0
0
0.000
avatar

Then you are already in profits. Right now the value is 9 Hive so you are already 2x up + dividends. Would you like to know the data?

Posted Using LeoFinance Beta

0
0
0.000
avatar

Yes I am :D Not gonna sell anytime soon :D

Yes, if you pleases, that would be awesome

0
0
0.000
avatar

Nice work dear.. I've some BRO tokens can you pull out the report for me to analyze and see how I'm doing with my investment. cheers

0
0
0.000
avatar

Thanks for the stats. I would love to see my data. It would be great if you can host your tools somewhere. :)

0
0
0.000
avatar

I am thinking about it too actually . I recently heard about the heroku app which let's me use python. As soon as I find time I will do it :)

Regarding the data , is it okay if I send it to you once I hop on to my laptop ?

Posted Using LeoFinance Beta

0
0
0.000