Hello all steemian today I am going to share a steemit bid bot profit tool with you. I make this tool with simple coding. I used python programming language to make this. If you know python language I will provide all code.
You need to install python in your computer to run my tool. Download python from here : https://www.python.org/downloads/
After install python you need to download my tools. Click here to download my tools.
Tools like this. Note: If you install python then you will see this
Now double click and open it. It will open like cmd. First, its ask you What amount you invested. That means which amount you sent to bid bot. Just type what amount you sent. Then hit enter.
In my last post, I invested 9.85 to @minnowbooster , So I put it there . Now it will ask you What amount you got in the post? It means after vote what aomunt you got your post. I mean vote value from bid bot or any promotion service. Type that amount and hit enter.
Now it will ask median price of steem. You will find this from the link given there or http://steemnow.com/
Example:
from steemnow
Its from the link I provide in tool. Then type the median price of steem and hit enter.
Now it will show you everything. What amount of sbd you will get. And what amount of steem you will get. And also your profit or loss. If you see the profit amount is positive that means you will get profit. If the amount is negative that means you will get loss. After that type end and hit enter. The tool will close.
See all use of tool
What amount you invested????:9.85 What amount you got in the post????:17.85 To see the madian price of steem visit: https://evildido.github.io/ShowMeMySteemReward/index.html What is the madian price of steem????:1.42 You will get amount of sbd: 6.6937500000000005 You will get amount of steem: 4.713908450704226 Your profit or loss is: 1.557658450704226 Note: If (-) then you will get loss & if (+) you will get profit Type end
I you wanna make your own. I am providing the code for you below :
a=float(input("What amount you invested????:"))
b=float(input("What amount you got in the post????:"))
print("To see the madian price of steem visit: https://evildido.github.io/ShowMeMySteemReward/index.html")
c=float(input("What is the madian price of steem????:"))
d= (25/100)*b
e= (b-d)/2
f= e/c
profit= (e+f)-a
print("You will get amount of sbd:",e)
print("You will get amount of steem:",f)
print("Your profit or loss is:",profit)
print(" Note: If (-) then you will get loss & if (+) you will get profit")
g=input("Type end")
print("End:",g)
Note: Its approximate calculation
If you have any question about this just comment below. Thanks.