Steemit voting and upvoting master plan, take a quick look here;

in #steemit6 years ago (edited)

 

Best Upvoting Strategy – SteemIt Voting Power Matters

Voting and upvoting Power is yet not understood by most of the people; mainly the new users are unware. I will try to describe all this in this content so that everyone may be able to understand it.


 We all know that each 100% vote costs your 2% voting power, and every 24 hours, your voting power restores 20%. This means that you can vote 10 times at 100% one day and the voting power will remain the same the next day.The question comes: Given a 30 days period, and approximately 60% voting power at the day 1, is there a much bigger gain to restore your voting power to 100% (wait 2 days) ?I always thought there is not much difference in terms of total curation earnings until today.. I wrote a VB script that reveals the truth.The first strategy, just vote 10 times 100% per day every day in the 30 days’ period. Assume 10K SP 100% gives 1 SBD. And suppose the 10 votes are done in a row (the VP restored during upvotes can be ignored)

Function Strategy1(ByVal sp, ByVal vp, ByVal days)

    income = 0

    While days > 0

        For i = 1 To 10

            income = income + sp * vp / 10000

            vp = vp - 0.02

        Next    

        vp = vp + 0.2

        days = days - 1

    Wend

    Strategy1 = income

End Function 

The second strategy, let’s wait a few days before the VP is restored, adding a parameter rest in the unit of days.

Function Strategy2(ByVal sp, ByVal vp, ByVal days, ByVal rest)

    days = days - rest

    vp = vp + 0.2 * rest  ' 1 day restores 20%

   If vp > 1 Then

        vp = 1  ' voting power can only be maximum 100%

   End If

    income = 0

   

    While days > 0

        For i = 1 To 10

            income = income + sp * vp / 10000

            vp = vp - 0.02

        Next    

        vp = vp + 0.2

        days = days - 1

    Wend

    Strategy2 = income

End Function

In my case, I have 10K SP so let’s assume these values:

steempower = 10000

votingpower = 0.6

daysofcuration = 30

restoredays = 2

So the simulation gives:

WScript.Echo ("Strategy 1 Max Income = " & Strategy1(steempower, votingpower, daysofcuration))

WScript.Echo ("Strategy 2 Max Income = " & Strategy2(steempower, votingpower, daysofcuration, restoredays)

Strategy 1 Max Income = 152.999999999999

Strategy 2 Max Income = 254.799999999999

This is a the bigest difference! The lower voting power, longer periods, the bigger difference! So…. you might consider letting your upvoting robot take a few days’ rest…Correction @tumutanzi told me my understanding was not exactly right. The 2% loss is to the current voting power, so instead of vp = vp – 0.02 the correct version is vp = vp * 0.98.So the correct version to emulate the Steemit curator is (you can vote 11 times per day)

Function Strategy1(ByVal sp, ByVal vp, ByVal days)

    income = 0

    While days > 0

        For i = 1 To 11

            income = income + sp * vp / 10000

            vp = vp * 0.98

        Next    

        vp = vp + 0.2

        If (vp > 1) Then

            vp = 1

        End If

        days = days - 1

    Wend

    Strategy1 = income

End Function

Function Strategy2(ByVal sp, ByVal vp, ByVal days, ByVal rest)

    days = days - rest

    vp = vp + 0.2 * rest

    If vp > 1 Then

        vp = 1

    End If

    income = 0

   

    While days > 0

        For i = 1 To 11

            income = income + sp * vp / 10000

            vp = vp * 0.98

        Next    

        vp = vp + 0.2

        If (vp > 1) Then

            vp = 1

        End If      

        days = days - 1

    Wend

    Strategy2 = income

End Function

And this gives totally different results,

steempower = 10000

votingpower = 0.6

daysofcuration = 30

restoredays = 2

 

WScript.Echo ("Strategy 1 Max Income = " & Strategy1(steempower, votingpower, daysofcuration))

WScript.Echo ("Strategy 2 Max Income = " & Strategy2(steempower, votingpower, daysofcuration, restoredays))

It indicates there is NOT much difference at all!

Strategy 1 Max Income = 279.67590316366

Strategy 2 Max Income = 278.976108950286

image and text source


Sort:  

You have received a @GrumpyCat flag because you or someone else sent money to buy votes from an irresponsible non-GrumpyCompliant service.

@sneaky-ninja and @aksdwi are acting irresponsibly by selling votes to people on their post very close to final payout. (~99% abuse rate)

Sending money to these bots is also financially supporting for-profit spammers.

To know what voting bot to use, refer to https://steembottracker.com/ and use those that have 3.5 day or less in the "Max Age" column.
Important, The above bots have made no effort to comply for months so the votes they sell might still be targeted even if they change their Max Age to 3.5 day.

Learn more ...

thanks for informative post.

I dont understand your calculation. Please tell me easily how often i vote a day? Can i vote 11 times at a time? Or just give a vote then waiting to filluo my power 100% again..then give 2nd vote. Which is the correct one? Or anything else?

I have mentioned that you can vote 10 times at 100% one day and the voting power will remain the same the next day.

Many time after you did post . I thought that you are thinking some special . Really this is special. Thanks for share.

Ahan thanks a lot dear

Thank you so much for your contribution sir. You did a great work sharing it with us easily, I might decide to turn a programmer some day.

Yes sure dear thanks for your feedback

Thanks for Sharing such a wonderful information regarding voting power.

Well was clear in few of the VP system but the elaboration really helped buddy !

Thanks for your appreciation..

Thanks dear @hamzayousaf this post is very informative for me and new users

very useful knowledge that you discussed in this blog. it's very useful for me new users who are just learning the right upvote basics.

Thanks I feel pleasure to share such informative knowledge so that more fellows can avail from it

Thanks for Sharing Excellent information @hamzayousaf!

Coin Marketplace

STEEM 0.19
TRX 0.14
JST 0.030
BTC 61240.20
ETH 3247.86
USDT 1.00
SBD 2.45