We are patient.
Are we patient enough to monitor ICO pool to catch any relative good days to buy?
There are lots of good posts discussing about applicable strategies, mine is to try to make the life easier.
Money is second while comfort is the first.
In order to know which day is relatively luckier with less ETH delivery, I have done this:
Schedule to run catchBalance to grab ETH balance from etherscan.io/address/~ every '23 hours' into a file
Step1:
catchBlance() {
init();
new_balance = int(get_eth balance_from_etherscan_webpage());
previous_balance = worksheet.getLatestBalance();
changes = new_balance - previous_balance;
worksheet.append(datetime, changes, new_balance);
}
Step2:
Configure a scheduled repeatable task every certain minutes/hours in window task scheduler, then I got a worksheet like this:
It could go further, such as sending message to subscribers if the change on current day is less than recent average change, etc.
todo() {
//to do
average_change = worksheet.average(worksheet.getChanges());
worksheet.append(average_change);
if(average_change – changes > limit) sendMessage(subscribers);
}
I believe you have more smart ideas to share.
Thank you
EOS ICO distribution page says: Nobody should get something for nothing
This is a game ~ Catch lucky days belong to you
Enjoy the game and have fun ~~
Congratulations @iforever! You received a personal award!
You can view your badges on your Steem Board and compare to others on the Steem Ranking
Vote for @Steemitboard as a witness to get one more award and increased upvotes!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit