# Your Simple Guide To Creating An Effective Rebalancing Tool **** <center></center><br> **** Rebalancing is a great method to ensure you sell high and buy low, it takes the emotion out of trying to call the bottom or the top. It really is a staple of investing, although most asset management firms rebalance for you whether its an index fund or your 401(k), for this tool you will have to do the trading yourself. Normally you see a stock portfolio rebalanced quarterly but in crypto a more aggressive rebalancing strategy may be necessary. In light of this I'm going to share a new Google Sheet I put together that assists you in rebalancing your portfolio. ## Features Before we start here are some cool features: - Prices pulled from Coinmarketcap - Automatically tells you what to buy and sell in your portfolio - Can account for adding recurring deposits to your crypto portfolio  ## Ok lets begin... 1 - Make a copy of this Google Sheet:<a href="https://docs.google.com/spreadsheets/d/1CD2bhVe3kj2kEnC1V4vHJyfzdGDt8MrU-OSLrikgVh4/edit?usp=sharing"> Rebalance Tool</a> 2 - Once the Google Sheet is copied open Tools> Script Editor... 3 - Remove default text when script editor loads. 4 - Copy and Paste this into the new script: ``` function onOpen() { var sheet = SpreadsheetApp.getActiveSpreadsheet(); var entries = [{ name : "Refresh", functionName : "refreshLastUpdate" }]; sheet.addMenu("Refresh", entries); }; function refreshLastUpdate() { SpreadsheetApp.getActiveSpreadsheet().getRange('I5').setValue(new Date().toTimeString()); } function ccprice(name, currency, datetime) { var url = "https://api.coinmarketcap.com/v1/ticker/" + name + "?convert=" + currency var response = UrlFetchApp.fetch(url); var json = response.getContentText(); var data = JSON.parse(json); var priceval = { "EUR" : data[0].price_eur, "USD" : data[0].price_usd, "BTC" : data[0].price_btc, "AUD" : data[0].price_aud, "BRL" : data[0].price_brl, "CAD" : data[0].price_cad, "CHF" : data[0].price_chf, "CNY" : data[0].price_cny, "RUB" : data[0].price_rub, "GBP" : data[0].price_gbp, "HKD" : data[0].price_hkd, "IDR" : data[0].price_idr, "INR" : data[0].price_inr, "JPY" : data[0].price_jpy, "KRW" : data[0].price_krw, "MXN" : data[0].price_mxn, "eur" : data[0].price_eur, "usd" : data[0].price_usd, "btc" : data[0].price_btc, "aud" : data[0].price_aud, "brl" : data[0].price_brl, "chf" : data[0].price_chf, "cny" : data[0].price_cny, "rub" : data[0].price_rub, "gbp" : data[0].price_gbp, "hkd" : data[0].price_hkd, "idr" : data[0].price_idr, "inr" : data[0].price_inr, "jpy" : data[0].price_jpy, "krw" : data[0].price_krw, "mxn" : data[0].price_mxn, "cad" : data[0].price_cad } var price = priceval[currency] return price SpreadsheetApp.flush(); } ``` <br> 4 - Save Script (any name is fine) 5 - Start editing for your data. Collumns B, C, D are the only manually entered data. - B - Name of your coin - C - Ideal value that coin should be in as a percentage of your portfolio - D - Quantity of coin currently held (You can put 0 if you intent to buy some) 6 - To add or change a coin or the FIAT currency just select the respective $G cell and change the name of the coin. See this screen shot. <img align="right" src="https://steemitimages.com/DQmcCbWQWxSxrrv8A8GSH8zKS5ZbmHHMgDW94vy2F3iYSYU/InkedScreenshot%20(1)_LI.jpg"> 7 - To refresh the sheets prices anytime use the menu option refresh. Note: This actively calls the function which will require permissions - google will ask if you want to run it, follow the prompts to approve it. It will only do this the first time you run the script in a new sheet. ## The end! Hope you like the tool, if you have any questions or run into issues I'll try to support you in the comment section. I wish you the best in your journey to wealth! ##### <center>Tips always appreciated: <br><br> BTC: 1LdHmPUAEggc5Rk6UmczSkfT8tYL68txb6 </center> **** Sources & References >Kick ass Coinmarketcap api script sampled from: <a href="https://github.com/rathergood/Crypto-Currency-Price"> rathergood Github </a> >Refresh function to update google sheet sampled from: <a href="https://stackoverflow.com/questions/17341399/refresh-data-retrieved-by-a-custom-function-in-google-spreadsheet"> Stack Overflow </a>
author | thorthur22 |
---|---|
permlink | portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency","crypto","portfolio","investing","money"],"image":["https://steemitimages.com/DQmQB1aHbtiTr46TCDMD4rkbzZDEP2QQY25mRjmpaK4dafm/invest-1346104_960_720.jpg","https://steemitimages.com/DQmfRwojXx7xNj6DY1V3Y7kPqBD8HsYV2LveTgHbfgvdFBk/Screenshot.png","https://steemitimages.com/DQmcCbWQWxSxrrv8A8GSH8zKS5ZbmHHMgDW94vy2F3iYSYU/InkedScreenshot%20(1)_LI.jpg"],"links":["https://docs.google.com/spreadsheets/d/1CD2bhVe3kj2kEnC1V4vHJyfzdGDt8MrU-OSLrikgVh4/edit?usp=sharing","https://github.com/rathergood/Crypto-Currency-Price","https://stackoverflow.com/questions/17341399/refresh-data-retrieved-by-a-custom-function-in-google-spreadsheet"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-07-30 10:49:18 |
last_update | 2017-07-31 07:26:42 |
depth | 0 |
children | 78 |
last_payout | 2017-08-06 10:49:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.894 HBD |
curator_payout_value | 0.307 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,731 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,207,519 |
net_rshares | 557,043,103,872 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
maylong | 0 | 1,502,221,830 | 100% | ||
ajguera101 | 0 | 1,449,065,659 | 100% | ||
olyup | 0 | 11,319,784,032 | 50% | ||
silentpower | 0 | 71,994,591,580 | 100% | ||
martiniblanco | 0 | 991,480,248 | 100% | ||
madeyes | 0 | 990,552,977 | 100% | ||
tronix | 0 | 415,701,184 | 100% | ||
cryptos | 0 | 3,078,506,517 | 5% | ||
olegw | 0 | 1,639,457,635 | 100% | ||
bitcoin3d | 0 | 0 | 100% | ||
lebedev | 0 | 0 | 100% | ||
proce55or | 0 | 628,255,506 | 100% | ||
azes | 0 | 0 | 100% | ||
tonnykeef | 0 | 0 | 100% | ||
decebal2dac | 0 | 0 | 100% | ||
ecomisystems | 0 | 0 | 100% | ||
responsive | 0 | 3,740,331,679 | 100% | ||
beautifulgame | 0 | 1,935,184,724 | 100% | ||
stalsobrook | 0 | 0 | 100% | ||
derrickzv | 0 | 0 | 100% | ||
latinoscifigeek | 0 | 0 | 100% | ||
banjo | 0 | 270,955,216 | 1% | ||
graveric60 | 0 | 735,508,273 | 100% | ||
bigash | 0 | 0 | 100% | ||
scoop | 0 | 0 | 100% | ||
marcusxman | 0 | 249,754,703 | 0.2% | ||
kingtate | 0 | 0 | 100% | ||
cryptoesco | 0 | 0 | 100% | ||
oriongazer | 0 | 0 | 100% | ||
ferdi010 | 0 | 0 | 100% | ||
dpencilpusher | 0 | 0 | 100% | ||
shaishav | 0 | 0 | 100% | ||
elfson | 0 | 0 | 100% | ||
cryptozod | 0 | 621,340,000 | 100% | ||
randowhale | 0 | 266,298,537,796 | 3% | ||
smithlite | 0 | 1,160,708,757 | 100% | ||
joker8 | 0 | 1,160,708,495 | 100% | ||
makd58 | 0 | 1,160,708,267 | 100% | ||
phoenixperson | 0 | 1,160,707,909 | 100% | ||
agilesdi | 0 | 0 | 100% | ||
ashr | 0 | 2,004,151,939 | 100% | ||
bangkokbrit | 0 | 2,378,884,624 | 100% | ||
boych | 0 | 0 | 100% | ||
madloch | 0 | 0 | 100% | ||
birdsong | 0 | 1,073,063,431 | 100% | ||
artcenter1 | 0 | 0 | 100% | ||
doroda | 0 | 0 | 100% | ||
circlenofurther | 0 | 0 | 100% | ||
foodisfree | 0 | 71,555,189,536 | 100% | ||
deepsoulradio | 0 | 0 | 100% | ||
antonietrigger | 0 | 0 | 100% | ||
faimloup | 0 | 0 | 100% | ||
khemcrypto | 0 | 0 | 100% | ||
funnymeme | 0 | 1,221,612,138 | 100% | ||
snakiest | 0 | 0 | 100% | ||
mix1009 | 0 | 0 | 30% | ||
travelmagician | 0 | 0 | 100% | ||
unprovoked | 0 | 87,195,452 | 2% | ||
coramdeo25 | 0 | 1,160,692,400 | 100% | ||
oaklandsoles | 0 | 0 | 100% | ||
cryptooracle | 0 | 0 | 100% | ||
clearlife | 0 | 0 | 100% | ||
dagoldman | 0 | 0 | 100% | ||
a1848art | 0 | 1,160,685,046 | 100% | ||
thorthur22 | 0 | 88,902,959,268 | 100% | ||
gwilty | 0 | 0 | 100% | ||
lavant | 0 | 0 | 100% | ||
thejavascripts | 0 | 1,160,679,862 | 100% | ||
aakeelr | 0 | 1,120,055,930 | 100% | ||
burningturtle | 0 | 0 | 100% | ||
ashbcrowther | 0 | 1,572,078,920 | 100% | ||
mdflorio | 0 | 0 | 100% | ||
nikadima | 0 | 0 | 100% | ||
weesh | 0 | 0 | 100% | ||
vladeta | 0 | 1,160,670,220 | 100% | ||
ncrypt | 0 | 0 | 100% | ||
bitmaker | 0 | 0 | 100% | ||
drt | 0 | 237,439,404 | 100% | ||
glenjobi | 0 | 1,160,669,701 | 100% | ||
roarwrecker | 0 | 0 | 100% | ||
jobsande | 0 | 0 | 100% | ||
johnycrypto | 0 | 4,044,828,862 | 100% | ||
hco | 0 | 1,160,665,641 | 100% | ||
duval | 0 | 0 | 100% | ||
ender-ld | 0 | 0 | 100% | ||
koltregaskes | 0 | 0 | 100% | ||
raziell | 0 | 58,033,125 | 100% | ||
projekt2k | 0 | 1,160,662,031 | 100% | ||
qme988 | 0 | 998,167,710 | 100% | ||
delloff | 0 | 0 | 100% | ||
ontask | 0 | 0 | 100% | ||
kavselj | 0 | 1,160,655,645 | 100% | ||
saltlakesteem | 0 | 0 | 100% | ||
hyperjai | 0 | 0 | 100% | ||
tipu | 0 | 0 | 2% | ||
derning | 0 | 0 | 100% | ||
dmuniz | 0 | 0 | 100% | ||
wealthinvestor | 0 | 0 | 100% | ||
jfchoi | 0 | 0 | 100% | ||
manicdude | 0 | 0 | 100% | ||
kelborhal78 | 0 | 0 | 100% | ||
fcstfernandes | 0 | 0 | 100% | ||
breakingbarriers | 0 | 0 | 100% | ||
rscgn | 0 | 0 | 100% | ||
mrja | 0 | 0 | 100% | ||
hiuhup | 0 | 0 | 100% | ||
richbill | 0 | 0 | 100% | ||
yumioh007 | 0 | 0 | 100% | ||
crysttn | 0 | 0 | 100% | ||
iggythet | 0 | 0 | 100% | ||
rastiazul | 0 | 0 | 100% | ||
alcpp | 0 | 0 | 100% | ||
toddicus13 | 0 | 0 | 100% | ||
tobakudan | 0 | 0 | 100% | ||
wolfgeo | 0 | 0 | 100% | ||
fbhoy86 | 0 | 0 | 100% | ||
ericv1027 | 0 | 0 | 100% |
Very insightful tips, thanks.
author | artcenter1 |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170814t171255675z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-14 17:12:54 |
last_update | 2017-08-14 17:12:54 |
depth | 1 |
children | 1 |
last_payout | 2017-08-21 17:12:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 5,674,082,647 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,797,936 |
net_rshares | 15,196,911,039 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 15,196,911,039 | 14% |
You're welcome! Hope you enjoy the tool.
author | thorthur22 |
---|---|
permlink | re-artcenter1-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170814t192258998z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-14 19:23:06 |
last_update | 2017-08-14 19:23:06 |
depth | 2 |
children | 0 |
last_payout | 2017-08-21 19:23:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,807,994 |
net_rshares | 0 |
Excellent post. Thanks for sharing. I've resteemed it as well.
author | bangkokbrit |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t150436920z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 15:04:39 |
last_update | 2017-07-30 15:04:39 |
depth | 1 |
children | 1 |
last_payout | 2017-08-06 15:04:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.081 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 258,749,556,876 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,227,116 |
net_rshares | 27,658,924,002 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 27,658,924,002 | 30% |
Awesome, glad you liked it and thanks for sharing!
author | thorthur22 |
---|---|
permlink | re-bangkokbrit-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t193238142z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 19:32:36 |
last_update | 2017-07-30 19:32:36 |
depth | 2 |
children | 0 |
last_payout | 2017-08-06 19:32:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,248,370 |
net_rshares | 0 |
Great post! Thanks alot. I have one issue thou. The "Current allocation" percentage Is completely of. It sums up to 700% and should 100% right. What could be wrong?
author | bitcoin3d |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170815t101054381z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-15 10:10:57 |
last_update | 2017-08-15 10:10:57 |
depth | 1 |
children | 1 |
last_payout | 2017-08-22 10:10:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 164 |
author_reputation | 53,751,334,722 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,865,262 |
net_rshares | 11,244,804,440 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 11,244,804,440 | 10% |
Hmm well that percentage is just a sum and should always add up to 100 as you said. I would ensure the format of collumn F is percentages and then look at the E collumn formula to ensure nothing was accidentally changed. You compare the cell formula to the original sheet in the link above. If you just cant identify the issue then making a fresh copy never hurts. I do it all the time to troubleshoot :)
author | thorthur22 |
---|---|
permlink | re-bitcoin3d-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170815t175018979z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-15 17:50:27 |
last_update | 2017-08-15 17:50:27 |
depth | 2 |
children | 0 |
last_payout | 2017-08-22 17:50:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 405 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,902,509 |
net_rshares | 0 |
Hi thor love your rebalancing spread sheet. Now coinmarketcap is updating their api data to v2. I see in your spread sheet your using v1. How would I or you implement the v2 api data to work with your spread sheet? I tried just changing v1 to v2 in the google Script editor but it looks like it didn't work once I saved it. Would it be possible for you to update your spread sheet? Thanks again. s.
author | cryptolus |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20180827t204619047z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2018-08-27 20:46:18 |
last_update | 2018-08-27 20:46:18 |
depth | 1 |
children | 0 |
last_payout | 2018-09-03 20:46:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 400 |
author_reputation | 0 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,537,977 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cryptolus | 0 | 0 | 100% |
Amazingly useful stuff, man! Much respect to you for sharing this!!
author | crysttn |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170903t195301915z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-09-03 19:53:00 |
last_update | 2017-09-03 19:53:00 |
depth | 1 |
children | 0 |
last_payout | 2017-09-10 19:53:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 279,512,373 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 13,775,568 |
net_rshares | 0 |
Is it possible to use this sheet to view the results of this strategy applied to the past month?
author | dbalex |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170909t102924897z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-09-09 10:29:24 |
last_update | 2017-09-09 10:29:24 |
depth | 1 |
children | 0 |
last_payout | 2017-09-16 10:29:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 0 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,343,984 |
net_rshares | 0 |
Thanks for the info dude! Shoutout to coinmastery.com which led me to this.
author | dmuniz |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t055922917z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 05:59:21 |
last_update | 2017-08-12 05:59:21 |
depth | 1 |
children | 3 |
last_payout | 2017-08-19 05:59:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.072 HBD |
curator_payout_value | 0.004 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 2,034,065,903 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,571,177 |
net_rshares | 23,114,203,656 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 23,114,203,656 | 20% |
No problem. So how did Coinmastery lead you here? Not sure what their service is.
author | thorthur22 |
---|---|
permlink | re-dmuniz-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t060318694z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 06:03:15 |
last_update | 2017-08-12 06:03:15 |
depth | 2 |
children | 2 |
last_payout | 2017-08-19 06:03:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.506 HBD |
curator_payout_value | 0.168 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,571,384 |
net_rshares | 200,465,630,432 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 200,465,630,432 | 100% |
Carter Thomas's youtube channel. He talked about your spreadsheet in one of his videos and forwarded a link to it. http://coinmastery.com/rebalance He did credit you on it of course. https://www.youtube.com/watch?v=CU84YW2YEjU
author | dmuniz |
---|---|
permlink | re-thorthur22-re-dmuniz-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t203508110z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"image":["https://img.youtube.com/vi/CU84YW2YEjU/0.jpg"],"links":["http://coinmastery.com/rebalance","https://www.youtube.com/watch?v=CU84YW2YEjU"],"app":"steemit/0.1"} |
created | 2017-08-12 20:35:09 |
last_update | 2017-08-12 20:48:27 |
depth | 3 |
children | 1 |
last_payout | 2017-08-19 20:35:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.259 HBD |
curator_payout_value | 0.084 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 230 |
author_reputation | 2,034,065,903 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,631,446 |
net_rshares | 104,321,350,153 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
circlenofurther | 0 | 619,520,000 | 100% | ||
thorthur22 | 0 | 103,701,830,153 | 100% |
Love this thank you! I saw this on CoinMastery Youtube page. Question: My portfolio is about 13 coins. I cut/paste the names/quantities of them from another spreadsheet, but the current coin price isn't refreshing. I updated the script and pressed refresh as you stated. Any thoughts...
author | drobi81 |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170814t161241883z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-14 16:12:42 |
last_update | 2017-08-14 16:12:42 |
depth | 1 |
children | 3 |
last_payout | 2017-08-21 16:12:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.035 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 287 |
author_reputation | 626,724,105 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,793,132 |
net_rshares | 15,196,911,039 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 15,196,911,039 | 14% |
Paste your forumla you have in the cell G10. Did the prices update prior to copying your coins and quantities in?
author | thorthur22 |
---|---|
permlink | re-drobi81-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170814t192605957z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-14 19:26:12 |
last_update | 2017-08-14 19:26:12 |
depth | 2 |
children | 2 |
last_payout | 2017-08-21 19:26:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 113 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,808,212 |
net_rshares | 0 |
It's all good now. Thank you so much!
author | drobi81 |
---|---|
permlink | re-thorthur22-re-drobi81-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170815t154506318z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-15 15:45:09 |
last_update | 2017-08-15 15:45:09 |
depth | 3 |
children | 1 |
last_payout | 2017-08-22 15:45:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.040 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 626,724,105 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,891,205 |
net_rshares | 15,875,018,034 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 15,875,018,034 | 14% |
Hello, Bitcoin Cash is not recognised? Do you know what to put? I've tried 'Bitcoin Cash' 'BCH' 'BitcoinCash' etc. Thanks in advance.
author | fbhoy86 |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20180103t171600061z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2018-01-03 17:15:51 |
last_update | 2018-01-03 17:15:51 |
depth | 1 |
children | 1 |
last_payout | 2018-01-10 17:15:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 10,191,466,922 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,826,581 |
net_rshares | 0 |
Just went through some comments above and tried - 'Bitcoin-Cash' ~ Works like a dream. Great tool. Thank you!
author | fbhoy86 |
---|---|
permlink | re-fbhoy86-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20180103t180851045z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2018-01-03 18:08:42 |
last_update | 2018-01-03 18:08:42 |
depth | 2 |
children | 0 |
last_payout | 2018-01-10 18:08:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 10,191,466,922 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,836,960 |
net_rshares | 0 |
Awesome! I'm excited to check this out. Thank you for sharing with the community. We're all in this together!
author | foodisfree |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170801t141603191z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-01 14:15:21 |
last_update | 2017-08-01 14:15:21 |
depth | 1 |
children | 1 |
last_payout | 2017-08-08 14:15:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.196 HBD |
curator_payout_value | 0.064 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 1,549,551,799,990 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,428,304 |
net_rshares | 63,884,092,622 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 63,884,092,622 | 60% |
Hope you like it! I thought it was valuable for me but then again, I'm bias :p
author | thorthur22 |
---|---|
permlink | re-foodisfree-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170801t232326387z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-01 23:23:33 |
last_update | 2017-08-01 23:23:33 |
depth | 2 |
children | 0 |
last_payout | 2017-08-08 23:23:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,478,236 |
net_rshares | 0 |
Well done, like and resteemed! Nice to see the CCC so active in here!
author | hco |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t124308500z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 12:43:09 |
last_update | 2017-07-30 12:43:09 |
depth | 1 |
children | 1 |
last_payout | 2017-08-06 12:43:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.081 HBD |
curator_payout_value | 0.027 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 3,751,818,687 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,215,493 |
net_rshares | 27,658,924,002 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 27,658,924,002 | 30% |
Thanks @hco, CCC is a great crypto centric group to share and extract information from so it seems natural to cross post to each.
author | thorthur22 |
---|---|
permlink | re-hco-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t194956614z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"users":["hco"],"app":"steemit/0.1"} |
created | 2017-07-30 19:49:54 |
last_update | 2017-07-30 19:49:54 |
depth | 2 |
children | 0 |
last_payout | 2017-08-06 19:49:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,249,637 |
net_rshares | 14,317,845,716 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
olyup | 0 | 13,157,180,075 | 30% | ||
hco | 0 | 1,160,665,641 | 100% |
Thanks for posting, really saves a lot of work! I've noticed prices Coinbase/GDAX differ a lot from those at coinmarketcap at times. As the former is where I trade atm, would it be possible to change the script to read prices from there? The API is there, but I've tried a few times to change the script - without success. :( https://developers.coinbase.com/api/v2
author | howtodowtle |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20171101t153900827z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"links":["https://developers.coinbase.com/api/v2"],"app":"steemit/0.1"} |
created | 2017-11-01 15:39:00 |
last_update | 2017-11-01 15:39:00 |
depth | 1 |
children | 0 |
last_payout | 2017-11-08 15:39:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 364 |
author_reputation | 0 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 19,179,644 |
net_rshares | 0 |
Thanks for posting, really saves a lot of work! I've noticed prices Coinbase/GDAX differ a lot from those at coinmarketcap at times. As the former is where I trade atm, would it be possible to change the script to read prices from there? The API is there, I just don't know how to write the Script. :( https://developers.coinbase.com/api/v2
author | howtodowtle |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20171130t104103942z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"links":["https://developers.coinbase.com/api/v2"],"app":"steemit/0.1"} |
created | 2017-11-30 10:41:06 |
last_update | 2017-11-30 10:41:06 |
depth | 1 |
children | 0 |
last_payout | 2017-12-07 10:41:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 340 |
author_reputation | 0 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 21,979,955 |
net_rshares | 0 |
Cool, but why did you not address one of the most important questions: how often and when to rebalance? Once a year? Once a month? Once a week?
author | jameslogan |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170815t213949867z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-15 21:39:48 |
last_update | 2017-08-15 21:39:48 |
depth | 1 |
children | 2 |
last_payout | 2017-08-22 21:39:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.316 HBD |
curator_payout_value | 0.104 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 143 |
author_reputation | 53,418,109,366 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,919,936 |
net_rshares | 120,385,553,426 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 120,385,553,426 | 100% |
Well for one, this is a post sharing how to make a google sheet work as a rebalancing tool not an educational piece on the topic of rebalancing. I did however mention in the first paragraph that a more aggressive rebalance strategy may be necessary in comparison to a quarterly schedule. The reason is quite simple, there is no one size fits all time period nor is there a set deviation from you target allocation that triggers a rebalance. Regardless let me cover this question because it does come up. First of all when is a function of how often the vast majority of the time. So how often? Thats up to you. But if you're totally unsure start with a 2 week period. Now when? At the end of the two week period unless your deviation from your target allocation on all assets is less than 5%. If nothing as moved more than 5% wait for the next 2 week period. Everyone will have a personal decision to make about these two questions because withdraw fees, exchange fees, network fees can impact a small portfolio more so than a large portfolio.
author | thorthur22 |
---|---|
permlink | re-jameslogan-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170816t224426797z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-16 22:44:33 |
last_update | 2017-08-16 23:08:36 |
depth | 2 |
children | 1 |
last_payout | 2017-08-23 22:44:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.410 HBD |
curator_payout_value | 0.001 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,048 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,029,790 |
net_rshares | 117,739,717,087 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 117,739,717,087 | 100% | ||
mdflorio | 0 | 0 | 100% |
I was also wondering how often to rebalance. This is definitely an helpful answer! Another factor that's important to me is how much time I want to spent on trading. So far I couldn't help myself checking coinmarketcap several times a day, with that constant FOMO feeling. Rebalancing with a set period gives me more peace of mind. So, many thanks for the balance sheet and the guidance! And @coinmasteryct thanks for sharing this on your youtube channel!
author | ferdi010 |
---|---|
permlink | re-thorthur22-re-jameslogan-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170822t082315800z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1","users":["coinmasteryct"]} |
created | 2017-08-22 08:23:15 |
last_update | 2017-08-22 08:30:30 |
depth | 3 |
children | 0 |
last_payout | 2017-08-29 08:23:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.138 HBD |
curator_payout_value | 0.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 455 |
author_reputation | 693,536,195 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,513,412 |
net_rshares | 44,386,316,513 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 44,386,316,513 | 43% |
Thanks for sharing the Google Sheet. I've added these functions to get data from Bitstamp and Bitfinex. Call them from the cells as you would ccprice (including the last parameter which references the cell I5 that gets updated with the timestamp upon refresh) function bitfinexPrice(name, datetime) { var url = "https://api.bitfinex.com/v1/pubticker/" + name; var response = UrlFetchApp.fetch(url); var json = response.getContentText(); var data = JSON.parse(json); var price = data["last_price"]; SpreadsheetApp.flush(); return price; } function bitstampPrice(name, datetime) { var url = "https://www.bitstamp.net/api/v2/ticker/" + name + "/"; var response = UrlFetchApp.fetch(url); var json = response.getContentText(); var data = JSON.parse(json); var price = data["last"]; SpreadsheetApp.flush(); return price; }
author | jilagan |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20180613t131152014z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"links":["https://api.bitfinex.com/v1/pubticker/","https://www.bitstamp.net/api/v2/ticker/"],"app":"steemit/0.1"} |
created | 2018-06-13 13:11:51 |
last_update | 2018-06-13 13:11:51 |
depth | 1 |
children | 0 |
last_payout | 2018-06-20 13:11:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 849 |
author_reputation | 43,767,456,720 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 60,582,947 |
net_rshares | 1,836,874,824 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jilagan | 0 | 1,836,874,824 | 100% |
Thank you so much, thorthur22.
author | jmsm2 |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t015124836z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 01:51:24 |
last_update | 2017-08-12 01:51:24 |
depth | 1 |
children | 2 |
last_payout | 2017-08-19 01:51:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 323,632,699,983 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,558,138 |
net_rshares | 22,453,797,837 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 22,453,797,837 | 20% |
You're welcome! It would seem there is renewed interest in this tool, can I ask how you made your way here?
author | thorthur22 |
---|---|
permlink | re-jmsm2-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t060603353z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 06:06:00 |
last_update | 2017-08-12 06:09:57 |
depth | 2 |
children | 1 |
last_payout | 2017-08-19 06:06:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,571,534 |
net_rshares | 0 |
I think it was mentioned by Carter Thomas on his uTube video (Coin Mastery).
author | jmsm2 |
---|---|
permlink | re-thorthur22-re-jmsm2-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170816t111819536z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-16 11:18:18 |
last_update | 2017-08-16 11:18:42 |
depth | 3 |
children | 0 |
last_payout | 2017-08-23 11:18:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 76 |
author_reputation | 323,632,699,983 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,973,829 |
net_rshares | 11,248,042,682 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 11,248,042,682 | 10% |
Looks awesome, I definitely want to put some thought into this and adapt it for my needs. More specifically, I've made a decision on the money I've put into crypto not to take it out - at least not for the short term..waiting til Bitcoin hits the high $6,000's (a la Clif High) before I consider pulling some crypto out to invest in more silver. Anyway, what I'm trying to say is that whenever I "sell" an altcoin, it's just selling into Bitcoin for a bit of arbitrage profit. I want to use your spreadsheet simply replacing USD with Bitcoin (removing BTC from the Asset Class column and valuing all other cryptos in BTC instead of USD). That should work though! :)
author | jobsande |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t105332497z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 10:53:33 |
last_update | 2017-08-12 10:53:33 |
depth | 1 |
children | 4 |
last_payout | 2017-08-19 10:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 666 |
author_reputation | 349,986,558,608 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,588,472 |
net_rshares | 16,513,030,279 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 16,513,030,279 | 16% |
Ya you can do that fairly easily. I will say that mostly defeats the purpose of rebalancing but if you make a strategy that works for you then its all good :) Good luck @jobsande!
author | thorthur22 |
---|---|
permlink | re-jobsande-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t211431629z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"users":["jobsande"],"app":"steemit/0.1"} |
created | 2017-08-12 21:14:30 |
last_update | 2017-08-12 21:14:30 |
depth | 2 |
children | 3 |
last_payout | 2017-08-19 21:14:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,634,078 |
net_rshares | 0 |
Oh really, it defeats the purpose? Hmm...I'll have to put a bit more thought into it. It's just in times like these especially, where Clif High predicts the upper $6K range before hitting a major correction, then shooting back up to $11K at some point... in these times it really doesn't make much sense for me to pull out of crypto. When BTC hits those levels I MIGHT consider it at that point, just to lock in some gains :)
author | jobsande |
---|---|
permlink | re-thorthur22-re-jobsande-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170813t093628580z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-13 09:36:27 |
last_update | 2017-08-13 09:36:27 |
depth | 3 |
children | 2 |
last_payout | 2017-08-20 09:36:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.012 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 425 |
author_reputation | 349,986,558,608 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,673,238 |
net_rshares | 15,196,911,039 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 15,196,911,039 | 14% |
Awesome tool! its a good way to robot sellings and buys and cut the emotion orders
author | johnycrypto |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170731t065617231z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-31 06:56:18 |
last_update | 2017-07-31 06:56:18 |
depth | 1 |
children | 1 |
last_payout | 2017-08-07 06:56:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.078 HBD |
curator_payout_value | 0.026 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 82 |
author_reputation | 8,300,556,388,586 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,292,105 |
net_rshares | 26,342,757,743 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 26,342,757,743 | 30% |
That's one of the best aspects, which makes it effective for novice traders or investors who would normally get emotionally attached to a coins value or performance.
author | thorthur22 |
---|---|
permlink | re-johnycrypto-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170731t072802110z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-31 07:28:00 |
last_update | 2017-07-31 07:28:00 |
depth | 2 |
children | 0 |
last_payout | 2017-08-07 07:28:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,294,147 |
net_rshares | 0 |
https://media.giphy.com/media/lCAkyIbqDDSLe/giphy.gif
author | joker8 |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t163134459z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"image":["https://media.giphy.com/media/lCAkyIbqDDSLe/giphy.gif"],"app":"steemit/0.1"} |
created | 2017-07-30 16:31:36 |
last_update | 2017-07-30 16:31:36 |
depth | 1 |
children | 0 |
last_payout | 2017-08-06 16:31:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 29,531,810,970 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,234,297 |
net_rshares | 1,143,297,868 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
joker8 | 0 | 1,143,297,868 | 100% |
Thanks a lot for this article. Upvote from me.
author | lebedev |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170817t085443070z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-17 08:54:42 |
last_update | 2017-08-17 08:54:42 |
depth | 1 |
children | 1 |
last_payout | 2017-08-24 08:54:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.033 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 2,326,899,629,286 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,066,025 |
net_rshares | 12,571,341,821 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 12,571,341,821 | 10% |
No problem! Although the payout window for the post closed awhile ago, I'll take the upvote as moral support :p
author | thorthur22 |
---|---|
permlink | re-lebedev-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170817t200113103z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-17 20:01:21 |
last_update | 2017-08-17 20:01:21 |
depth | 2 |
children | 0 |
last_payout | 2017-08-24 20:01:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,115,929 |
net_rshares | 0 |
Hi For some reason the table stopped to refresh the current price of the coins.
author | lebedev |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170906t104930224z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-09-06 10:49:30 |
last_update | 2017-09-06 10:49:30 |
depth | 1 |
children | 0 |
last_payout | 2017-09-13 10:49:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 2,326,899,629,286 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 14,037,557 |
net_rshares | 0 |
thanks for sharing this. Have saw it first on CCC, so it's fair I comment it here. Keep up the good work!
author | mdflorio |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170811t175115641z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-11 17:51:12 |
last_update | 2017-08-11 17:51:12 |
depth | 1 |
children | 1 |
last_payout | 2017-08-18 17:51:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 1,384,298,712 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,526,105 |
net_rshares | 22,453,797,837 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 22,453,797,837 | 20% |
No problem @mdflorio, I hope you enjoy the tool :)
author | thorthur22 |
---|---|
permlink | re-mdflorio-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t060433794z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"users":["mdflorio"],"app":"steemit/0.1"} |
created | 2017-08-12 06:04:30 |
last_update | 2017-08-12 06:04:30 |
depth | 2 |
children | 0 |
last_payout | 2017-08-19 06:04:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,571,464 |
net_rshares | 0 |
This looks great, thanks for sharing!
author | olyup |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t121051124z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 12:10:54 |
last_update | 2017-07-30 12:10:54 |
depth | 1 |
children | 1 |
last_payout | 2017-08-06 12:10:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.279 HBD |
curator_payout_value | 0.092 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 37 |
author_reputation | 2,724,027,541,358 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,213,042 |
net_rshares | 94,172,050,771 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 94,172,050,771 | 100% | ||
delloff | 0 | 0 | 100% | ||
elcharle | 0 | 0 | 100% |
Thanks @olyup!
author | thorthur22 |
---|---|
permlink | re-olyup-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t192932222z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"busy/1.0.0"} |
created | 2017-07-30 19:29:30 |
last_update | 2017-07-30 19:29:30 |
depth | 2 |
children | 0 |
last_payout | 2017-08-06 19:29:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 14 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,248,145 |
net_rshares | 6,567,714,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
olyup | 0 | 6,567,714,999 | 30% |
Thanks very much for this tool! Just learned about it from Coin Mastery.
author | oriongazer |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t122551967z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 12:25:51 |
last_update | 2017-08-12 12:25:51 |
depth | 1 |
children | 1 |
last_payout | 2017-08-19 12:25:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.041 HBD |
curator_payout_value | 0.013 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 72 |
author_reputation | 38,419,402,803 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,594,193 |
net_rshares | 16,513,030,279 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 16,513,030,279 | 16% |
Right on, I was just watching his video talking about this tool! I hope it works well for you - best of luck!
author | thorthur22 |
---|---|
permlink | re-oriongazer-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t211630589z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 21:16:30 |
last_update | 2017-08-12 21:16:30 |
depth | 2 |
children | 0 |
last_payout | 2017-08-19 21:16:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,634,275 |
net_rshares | 0 |
Would you address the comment posted by one guy under Giovanni post? Quotation: "maybe I'm just tired and not reading this correctly, but your calculation doesn't work. If on day 2 when BTC goes up to 3000, and you rebalance "To rebalance your portfolio you sell the excess BTC and get USDT. This will give you a portfolio with 5 BTC and 13750 in USDT". According to that you've just made USDT out of nowhere without actually selling any of your 5 BTC. I assume you mean that you sell 0.416 BTC to USDT which would actually leave you with 4.583 BTC and 13750 in USDT (the equivalent vales of both)." and then: "If you forgot to take away the BTC you sold each time in your calculations it would explain your crazy exponential graph. After day 3 when BTC goes down to 2300 and you rebalance you'd actually have 5.281 BTC and $12,145USDT = $24290 value. Now this is still better than holding for sure, but does not put you in front of where you've started."
author | proce55or |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t125332068z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 12:53:33 |
last_update | 2017-07-30 12:53:33 |
depth | 1 |
children | 1 |
last_payout | 2017-08-06 12:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 962 |
author_reputation | 92,961,479 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,216,291 |
net_rshares | 0 |
If you link his post or the comment in question I will take a look otherwise I think I'm missing to much info to provide an answer. In general with stocks, rebalancing is best if its not done to much. I don't know the best timeline for crypto but I would speculate that its weekly or bi-monthly given the volatility.
author | thorthur22 |
---|---|
permlink | re-proce55or-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t192817929z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"busy/1.0.0"} |
created | 2017-07-30 19:28:15 |
last_update | 2017-07-30 19:28:15 |
depth | 2 |
children | 0 |
last_payout | 2017-08-06 19:28:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 318 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,248,049 |
net_rshares | 0 |
This post received a 3.0% upvote from @randowhale thanks to @thorthur22! For more information, [click here](https://steemit.com/steemit/@randowhale/introducing-randowhale-will-you-get-the-100-vote-give-it-a-shot)!
author | randowhale |
---|---|
permlink | re-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170801t034629 |
category | cryptocurrency |
json_metadata | "{"app": "randowhale/0.1", "format": "markdown"}" |
created | 2017-08-01 03:46:30 |
last_update | 2017-08-01 03:46:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-08 03:46:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
author_reputation | 47,657,457,485,459 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,381,192 |
net_rshares | 0 |
thank you; one thing though: to add more coins, you didnt explain how; what im doin is copying the previous line and modifying it, currently figuring out if its working
author | rastiazul |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170930t215205245z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-09-30 21:53:15 |
last_update | 2017-09-30 21:53:15 |
depth | 1 |
children | 0 |
last_payout | 2017-10-07 21:53:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 168 |
author_reputation | 32,944,453 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 16,414,876 |
net_rshares | 0 |
Hi friend, very good !!!!! You would help me with a vote in my Blog., Thanks !!! ;)
author | raziell |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t105407881z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 10:54:06 |
last_update | 2017-07-30 10:54:06 |
depth | 1 |
children | 0 |
last_payout | 2017-08-06 10:54:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 83 |
author_reputation | 24,572,369,694 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,207,870 |
net_rshares | 0 |
Try to rebalance your portfolio via [coinwizard.me](https://coinwizard.me)
author | reilag |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20180209t190313791z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1","links":["https://coinwizard.me"]} |
created | 2018-02-09 19:03:15 |
last_update | 2018-02-09 19:03:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-16 19:03:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 74 |
author_reputation | 261,380,480,111 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 36,234,523 |
net_rshares | 0 |
Tip!
author | rexhafiz |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170826t131026964z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-26 13:10:33 |
last_update | 2017-08-26 13:10:33 |
depth | 1 |
children | 2 |
last_payout | 2017-09-02 13:10:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.154 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 537,784,172,915 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,932,882 |
net_rshares | 47,495,409,940 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 45,743,875,761 | 45% | ||
tipu | 0 | 1,751,534,179 | 0.5% |
Appreciate the tip! I haven't used it yet but it would be a good way to support authors who's post passed their payout window.
author | thorthur22 |
---|---|
permlink | re-rexhafiz-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170827t055253653z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-27 05:52:54 |
last_update | 2017-08-27 05:52:54 |
depth | 2 |
children | 1 |
last_payout | 2017-09-03 05:52:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,997,280 |
net_rshares | 0 |
<p>Beep beep. Hi @thorthur22!<br> You have used <strong>tip!</strong> in your comment - that`s my magic word for sending tips ;)<br><a href="https://steemit.com/steemit/@tipu/tipu-quick-guide">Click here if you wish to learn more!</a></p>
author | tipu |
---|---|
permlink | re-re-rexhafiz-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170827t055253653z-20170827t055303 |
category | cryptocurrency |
json_metadata | "" |
created | 2017-08-27 05:53:06 |
last_update | 2017-08-27 05:53:06 |
depth | 3 |
children | 0 |
last_payout | 2017-09-03 05:53:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 238 |
author_reputation | 55,960,219,931,854 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,997,287 |
net_rshares | 0 |
<table><tr><td>http://i.imgur.com/sAg9ypb.png</td><td><p><strong>Hi @thorthur22! @rexhafiz is sending you 0.1 SBD tip and @tipU upvote http://i.imgur.com/UwA0sjo.png :)</strong></p><p><a href="https://steemit.com/steemit/@tipu/tipu-quick-guide" rel="noopener">@tipU quick guide</a> <strong>|</strong> <a href="https://steemit.com/steemit/@tipu/tipu-guide-4-sharing-the-profit-explained" rel="noopener">earn interest in @tipU profit</a></p></td></tr></table>
author | tipu |
---|---|
permlink | re-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170826t131100 |
category | cryptocurrency |
json_metadata | "" |
created | 2017-08-26 13:11:03 |
last_update | 2017-08-26 13:11:03 |
depth | 1 |
children | 0 |
last_payout | 2017-09-02 13:11:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.140 HBD |
curator_payout_value | 0.045 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 457 |
author_reputation | 55,960,219,931,854 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,932,928 |
net_rshares | 46,406,830,482 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 46,406,830,482 | 45% |
Thanks, very helpful! :)
author | tobakudan |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20171223t125121767z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-12-23 12:51:24 |
last_update | 2017-12-23 12:51:24 |
depth | 1 |
children | 1 |
last_payout | 2017-12-30 12:51:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 24 |
author_reputation | 10,495,523,860 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 24,855,393 |
net_rshares | 0 |
No Problem!
author | thorthur22 |
---|---|
permlink | re-tobakudan-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20180101t102516170z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2018-01-01 10:25:15 |
last_update | 2018-01-01 10:25:15 |
depth | 2 |
children | 0 |
last_payout | 2018-01-08 10:25:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 26,346,188 |
net_rshares | 0 |
This is Great ! Thank you for sharing!!! 👍🙌
author | tonnykeef |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170815t084529341z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-15 08:45:30 |
last_update | 2017-08-15 08:45:30 |
depth | 1 |
children | 1 |
last_payout | 2017-08-22 08:45:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.026 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 1,590,115,594 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,857,626 |
net_rshares | 11,244,804,440 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 11,244,804,440 | 10% |
No worries, enjoy!
author | thorthur22 |
---|---|
permlink | re-tonnykeef-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170815t175156683z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-15 17:52:03 |
last_update | 2017-08-15 17:52:03 |
depth | 2 |
children | 0 |
last_payout | 2017-08-22 17:52:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,902,646 |
net_rshares | 0 |
Question for ya, how do would you determine the target allocations in a portfolio? Is it just arbitrary?
author | tranman324 |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170811t213544557z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-11 21:35:39 |
last_update | 2017-08-11 21:35:39 |
depth | 1 |
children | 1 |
last_payout | 2017-08-18 21:35:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 350,840,591 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,543,203 |
net_rshares | 22,453,797,837 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 22,453,797,837 | 20% |
Yes, its arbitrary. You decide based on your risk appetite.
author | thorthur22 |
---|---|
permlink | re-tranman324-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t060112541z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 06:01:09 |
last_update | 2017-08-12 06:01:09 |
depth | 2 |
children | 0 |
last_payout | 2017-08-19 06:01:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,571,279 |
net_rshares | 0 |
Nice! I'm going to try it out. Thanks man
author | travelmagician |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t010758624z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 01:07:57 |
last_update | 2017-08-12 01:07:57 |
depth | 1 |
children | 1 |
last_payout | 2017-08-19 01:07:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.018 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 41 |
author_reputation | 31,286,998,204 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,555,523 |
net_rshares | 22,453,797,837 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 22,453,797,837 | 20% |
Awesome! Let me know how you like it - I may release a version 2 down the road with updates from the community.
author | thorthur22 |
---|---|
permlink | re-travelmagician-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170812t060649798z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-12 06:06:48 |
last_update | 2017-08-12 06:06:48 |
depth | 2 |
children | 0 |
last_payout | 2017-08-19 06:06:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 111 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,571,579 |
net_rshares | 0 |
Do you have any idea why Golem or LBRY Credits will not work?
author | trichome |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t141134630z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-30 14:11:33 |
last_update | 2017-07-30 14:11:33 |
depth | 1 |
children | 6 |
last_payout | 2017-08-06 14:11:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 17,773,199 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,222,670 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
thorthur22 | 0 | 0 | 16% |
Don't forget to mention rebalancing periods please <img src="http://howtodox.com/partner.jpg">
author | jameslogan |
---|---|
permlink | re-trichome-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170817t002752171z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"image":["http://howtodox.com/partner.jpg"],"app":"steemit/0.1"} |
created | 2017-08-17 00:27:51 |
last_update | 2017-08-17 00:27:51 |
depth | 2 |
children | 0 |
last_payout | 2017-08-24 00:27:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 94 |
author_reputation | 53,418,109,366 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,035,692 |
net_rshares | 0 |
You have to use the name as coinmarketcap has it: library-credit golem-network-tokens
author | thorthur22 |
---|---|
permlink | re-trichome-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170730t191617435z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"busy/1.0.0"} |
created | 2017-07-30 19:16:15 |
last_update | 2017-07-30 19:16:15 |
depth | 2 |
children | 4 |
last_payout | 2017-08-06 19:16:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,247,169 |
net_rshares | 0 |
Seems not all coin names can be found in my version of the rebalancing tool. Any idea why for example Stellar Lumens is not recognized?
author | arv2 |
---|---|
permlink | re-thorthur22-re-trichome-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170817t191011042z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-17 19:10:12 |
last_update | 2017-08-17 19:10:12 |
depth | 3 |
children | 3 |
last_payout | 2017-08-24 19:10:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 135 |
author_reputation | 0 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,112,191 |
net_rshares | 0 |
Misspelled "Rebalancing" in the title. A quick fix for SEO.
author | winstonmi |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170731t071244584z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-31 07:12:45 |
last_update | 2017-07-31 07:12:45 |
depth | 1 |
children | 1 |
last_payout | 2017-08-07 07:12:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.318 HBD |
curator_payout_value | 0.039 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 59 |
author_reputation | 1,389,168,865 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,293,222 |
net_rshares | 88,906,807,384 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
doroda | 0 | 0 | 100% | ||
thorthur22 | 0 | 88,906,807,384 | 100% | ||
brapascal | 0 | 0 | 100% | ||
iggythet | 0 | 0 | 100% |
Nice catch, here's a full upvote for that one!
author | thorthur22 |
---|---|
permlink | re-winstonmi-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170731t072629139z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-07-31 07:26:27 |
last_update | 2017-07-31 07:26:27 |
depth | 2 |
children | 0 |
last_payout | 2017-08-07 07:26:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 10,294,045 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
doroda | 0 | 0 | 0% |
i did everything followed instructions ..still not showing the columns and calcs...what am i doing wrong!?
author | yacine |
---|---|
permlink | re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170814t173202540z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-14 17:32:00 |
last_update | 2017-08-14 17:32:00 |
depth | 1 |
children | 1 |
last_payout | 2017-08-21 17:32:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 0 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,799,505 |
net_rshares | 0 |
You can always start from scratch if you think something isn't correct. Now keep in mind the coinmarketcap api has gone down or been unable to update price a few times so give it day and try to refresh again.
author | thorthur22 |
---|---|
permlink | re-yacine-re-thorthur22-portfolio-reblancing-tool-using-google-sheets-quadruple-your-earnings-20170814t192814237z |
category | cryptocurrency |
json_metadata | {"tags":["cryptocurrency"],"app":"steemit/0.1"} |
created | 2017-08-14 19:28:21 |
last_update | 2017-08-14 19:28:42 |
depth | 2 |
children | 0 |
last_payout | 2017-08-21 19:28:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 158,396,072,010 |
root_title | "Portfolio Rebalancing Tool Using Google Sheets - Quadruple Your Earnings!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 11,808,399 |
net_rshares | 0 |