Today we're going to build the GUI for this bot. Here’s how the Tkinter GUI is made and what it looks like, plus a quick recap of how the bot works. The idea is to have the first window ask for the Binance API keys and Telegram tokens. Once we hit "Save," the GUI will verify the Binance credentials. If they're valid, it will create and save a config file for the bot to read in the future. <div class="pull-left"> https://images.hive.blog/DQme5F88bJaZsM7fkKo8WmBjQZww9ChfjuGWywDKbVzDZKe/Captsure.PNG </div> <div class="pull-right"> https://images.hive.blog/DQmaeoV9UaaPyeny161czAZQRMWbjWesysSXpwfpwZSV8Hd/Capture.PNG </div> --- Once that’s done, we can select the coin we want to track, the target amount to maintain, the min notional (meaning the minimum amount allowed to buy/sell), and the % of profit we want to make on each buy. So for example: If we have a target of $100 in BTC and the price drops, we still own the same amount of BTC, but the dollar value we hold is now less—say $99. The bot should then buy $1 worth of BTC to bring us back up to target. Now, if we set our profit % to 20%, it will only sell once that $1 buy reaches $1.20—ensuring a profit. There are two main scenarios: If the price consistently drops If the price consistently rises # 1: If the price drops consistently Example: We own $100 in BTC and set a budget of $50. If the price of BTC drops and our holding is now worth $99, we use $1 from our budget to buy more. We now hold slightly more BTC (still worth around $100), and our budget is $49. This continues until the budget is spent. The idea is that every time the price drops, we track the buys. The bot can run as often as you want—say, every 10 seconds. If the balance drops by $1 in that window, it buys. If it's checking every 10 minutes instead, the price might have dropped more, and we’d buy a bigger chunk. # 2: If the price rises consistently In this case, I decided the bot should sell as much as it wants above the target. So if we have $100 in BTC and it grows to $110, the bot just sells the extra $10. However, if we have a pending profit-sell (a buy we made earlier that hasn't reached its profit target yet), we don’t want to include that amount in the sell. So really, we’re tracking two things: The difference between the current value and the target, and Any open buy positions still waiting to hit their profit % Here's a quick look at the files it creates and how they’re structured: <div class="pull-left"> https://images.hive.blog/DQmYjr4qihrxzYsnFYuzewHb5bQYuVVf88WUGQMJJkKq2RF/Casdapture.PNG </div> <div class="pull-right"> https://images.hive.blog/DQmX84rV33Zdy949KhVNQeoyo3Ks8wuRdr1Tvu5u7L2D1Zv/Captasdure.PNG </div> In these images, you can see how the credentials.json file creates a format that’s readable for the bot, and what a coin parameter file looks like so the bot knows what to do. Honestly, I don’t know if this is going to turn into a good trading bot. I know Binance already has something similar on their site, but I started this project before I knew that—and I want to finish it just to have something of my own that (hopefully) makes a profit. Side note: it’s kind of nice to understand how it all works and have it running locally. Even though it’s still using Binance’s APIs, it just feels safer. heres the code of the bot incase someone wants to copy and paste it : import tkinter as tk from tkinter import messagebox, ttk import json, os from binance.client import Client CREDENTIALS_PATH = "credentials.json" COINS_PATH = "coins.json" class RebalancerGUI: def __init__(self, root): self.root = root self.root.title("Simple Rebalancing Bot Setup") self.api_key = tk.StringVar() self.api_secret = tk.StringVar() self.telegram_token = tk.StringVar() self.telegram_chat_id = tk.StringVar() self.symbol_var = tk.StringVar() self.target_var = tk.StringVar() self.budget_var = tk.StringVar() self.min_notional_var = tk.StringVar() self.profit_var = tk.StringVar() self.client = None self.pairs = [] self.show_credentials_screen() def show_credentials_screen(self): self.clear_root() tk.Label(self.root, text="Binance API Key").pack() tk.Entry(self.root, textvariable=self.api_key).pack() tk.Label(self.root, text="Binance API Secret").pack() tk.Entry(self.root, textvariable=self.api_secret, show="*").pack() tk.Label(self.root, text="Telegram Bot Token (optional)").pack() tk.Entry(self.root, textvariable=self.telegram_token).pack() tk.Label(self.root, text="Telegram Chat ID (optional)").pack() tk.Entry(self.root, textvariable=self.telegram_chat_id).pack() tk.Button(self.root, text="Save and Continue", command=self.verify_credentials).pack(pady=10) def verify_credentials(self): try: self.client = Client(self.api_key.get(), self.api_secret.get()) self.client.get_account() # test credentials creds = { "binance_api": self.api_key.get(), "binance_secret": self.api_secret.get(), "telegram_token": self.telegram_token.get(), "telegram_chat_id": self.telegram_chat_id.get() } with open(CREDENTIALS_PATH, "w") as f: json.dump(creds, f, indent=2) self.fetch_usdt_pairs() self.show_config_screen() except Exception as e: messagebox.showerror("Error", f"Invalid Binance credentials:\n{e}") def fetch_usdt_pairs(self): info = self.client.get_exchange_info() self.pairs = sorted([s['symbol'] for s in info['symbols'] if s['symbol'].endswith("USDT") and s['status'] == 'TRADING']) def show_config_screen(self): self.clear_root() tk.Label(self.root, text="Select USDT Pair").pack() dropdown = ttk.Combobox(self.root, textvariable=self.symbol_var, values=self.pairs) dropdown.pack() tk.Label(self.root, text="Target Value (USDT)").pack() tk.Entry(self.root, textvariable=self.target_var).pack() tk.Label(self.root, text="Dip Budget (USDT)").pack() tk.Entry(self.root, textvariable=self.budget_var).pack() tk.Label(self.root, text="Min Notional (manual)").pack() tk.Entry(self.root, textvariable=self.min_notional_var).pack() tk.Label(self.root, text="Profit %").pack() tk.Entry(self.root, textvariable=self.profit_var).pack() tk.Button(self.root, text="Save Coin Config", command=self.save_coin_config).pack(pady=10) def save_coin_config(self): try: data = { "symbol": self.symbol_var.get(), "target": float(self.target_var.get()), "budget": float(self.budget_var.get()), "min_notional": float(self.min_notional_var.get()), "profit_pct": float(self.profit_var.get()) } with open(COINS_PATH, "w") as f: json.dump([data], f, indent=2) messagebox.showinfo("Saved", "Coin config saved to coins.json") except ValueError: messagebox.showerror("Error", "Please enter valid numbers") def clear_root(self): for widget in self.root.winfo_children(): widget.destroy()if __name__ == "__main__": root = tk.Tk() app = RebalancerGUI(root) root.mainloop()
author | vatman |
---|---|
permlink | programming-project-part-3 |
category | programming |
json_metadata | "{"tags":["programming","python","development","bitcoin","passiveincome","tutorial","tradingbot","binance"],"image":["https://images.hive.blog/DQme5F88bJaZsM7fkKo8WmBjQZww9ChfjuGWywDKbVzDZKe/Captsure.PNG","https://images.hive.blog/DQmaeoV9UaaPyeny161czAZQRMWbjWesysSXpwfpwZSV8Hd/Capture.PNG","https://images.hive.blog/DQmYjr4qihrxzYsnFYuzewHb5bQYuVVf88WUGQMJJkKq2RF/Casdapture.PNG","https://images.hive.blog/DQmX84rV33Zdy949KhVNQeoyo3Ks8wuRdr1Tvu5u7L2D1Zv/Captasdure.PNG"],"app":"hiveblog/0.1","format":"markdown","description":"Today we're going to build the GUI for this bot. Here’s how the Tkinter GUI is made and what it looks like, plus a quick recap of how......."}" |
created | 2025-05-14 23:09:57 |
last_update | 2025-05-14 23:09:57 |
depth | 0 |
children | 5 |
last_payout | 2025-05-21 23:09:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 5.992 HBD |
curator_payout_value | 5.956 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,586 |
author_reputation | 16,946,770,159,570 |
root_title | "Programming Project Part #3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,734,617 |
net_rshares | 34,307,696,199,747 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kevinwong | 0 | 1,388,488,982 | 0.6% | ||
eric-boucher | 0 | 3,299,281,956 | 0.6% | ||
roelandp | 0 | 72,577,241,090 | 5% | ||
cloh76 | 0 | 801,478,721 | 0.6% | ||
rmach | 0 | 1,039,655,264 | 5% | ||
lemouth | 0 | 309,477,685,121 | 10% | ||
someguy123 | 0 | 3,832,937,180 | 0.6% | ||
sponge-bob | 0 | 500,388,773,835 | 100% | ||
tfeldman | 0 | 1,107,504,771 | 0.6% | ||
metabs | 0 | 1,127,272,762 | 10% | ||
mcsvi | 0 | 104,292,043,426 | 50% | ||
boxcarblue | 0 | 3,461,925,809 | 0.6% | ||
justyy | 0 | 9,327,044,822 | 1.2% | ||
michelle.gent | 0 | 735,318,390 | 0.24% | ||
curie | 0 | 70,291,038,728 | 1.2% | ||
modernzorker | 0 | 506,922,707 | 0.84% | ||
bleujay | 0 | 653,178,025,220 | 21% | ||
techslut | 0 | 26,674,075,317 | 4% | ||
son-of-satire | 0 | 38,247,011,845 | 90% | ||
steemstem | 0 | 182,050,589,348 | 10% | ||
yadamaniart | 0 | 1,011,100,301 | 0.6% | ||
walterjay | 0 | 121,117,272,171 | 5% | ||
valth | 0 | 873,484,864 | 5% | ||
metroair | 0 | 6,128,153,850 | 1.2% | ||
qubes | 0 | 592,182,922,627 | 95% | ||
driptorchpress | 0 | 459,144,032 | 0.3% | ||
dna-replication | 0 | 339,368,878 | 10% | ||
hebrew | 0 | 1,216,981,406,963 | 95% | ||
htooms | 0 | 143,478,765,253 | 85.5% | ||
btu | 0 | 4,698,299,532,541 | 100% | ||
dhimmel | 0 | 5,704,288,504 | 2.5% | ||
oluwatobiloba | 0 | 427,144,670 | 10% | ||
elevator09 | 0 | 10,418,769,807 | 0.6% | ||
bcc | 0 | 4,374,209,565,582 | 100% | ||
detlev | 0 | 8,110,131,083 | 0.36% | ||
egonz | 0 | 19,106,670,954 | 70% | ||
dune69 | 0 | 996,641,523 | 1.2% | ||
jhelbich | 0 | 182,525,357,248 | 35% | ||
gamersclassified | 0 | 1,124,706,135 | 0.6% | ||
mobbs | 0 | 28,725,584,108 | 10% | ||
eliel | 0 | 887,148,167 | 1.2% | ||
jerrybanfield | 0 | 4,033,342,000 | 1.2% | ||
bitrocker2020 | 0 | 2,415,341,564 | 0.24% | ||
done | 0 | 7,360,966,114,810 | 100% | ||
ohamdache | 0 | 732,667,493 | 0.6% | ||
helo | 0 | 8,508,127,550 | 5% | ||
arunava | 0 | 3,343,279,487 | 0.48% | ||
juancar347 | 0 | 4,853,268,256 | 0.6% | ||
samminator | 0 | 5,547,573,612 | 5% | ||
enjar | 0 | 12,154,197,530 | 1.08% | ||
alexander.alexis | 0 | 6,844,349,415 | 10% | ||
jayna | 0 | 1,815,234,767 | 0.24% | ||
techken | 0 | 2,287,176,468 | 2.5% | ||
princessmewmew | 0 | 1,560,850,281 | 0.6% | ||
joeyarnoldvn | 0 | 452,739,325 | 1.47% | ||
gunthertopp | 0 | 12,101,091,486 | 0.24% | ||
pipiczech | 0 | 530,940,039 | 1.2% | ||
empath | 0 | 1,593,949,807 | 1.02% | ||
minnowbooster | 0 | 788,263,065,049 | 20% | ||
felt.buzz | 0 | 1,776,051,525 | 0.3% | ||
howo | 0 | 154,634,267,075 | 10% | ||
tsoldovieri | 0 | 1,025,037,276 | 5% | ||
neumannsalva | 0 | 1,072,061,110 | 0.6% | ||
stayoutoftherz | 0 | 40,232,475,759 | 0.3% | ||
abigail-dantes | 0 | 3,755,210,899 | 10% | ||
coindevil | 0 | 605,325,562 | 0.96% | ||
investingpennies | 0 | 3,590,700,624 | 1.2% | ||
rocky1 | 0 | 175,517,940,321 | 0.18% | ||
aidefr | 0 | 1,137,440,091 | 5% | ||
sorin.cristescu | 0 | 3,491,796,466 | 0.6% | ||
buttcoins | 0 | 8,924,081,394 | 0.24% | ||
enzor | 0 | 542,823,518 | 10% | ||
bartosz546 | 0 | 532,841,646 | 0.6% | ||
new-world-steem | 0 | 61,564,937,394 | 23% | ||
sunsea | 0 | 1,599,566,451 | 0.6% | ||
bluefinstudios | 0 | 992,287,793 | 0.36% | ||
steveconnor | 0 | 1,064,149,501 | 0.6% | ||
abrahan414 | 0 | 4,229,030,143 | 85% | ||
aboutcoolscience | 0 | 3,161,644,487 | 10% | ||
kenadis | 0 | 2,528,720,753 | 10% | ||
madridbg | 0 | 2,352,610,023 | 10% | ||
robotics101 | 0 | 3,167,633,929 | 10% | ||
adelepazani | 0 | 719,621,510 | 0.24% | ||
r00sj3 | 0 | 467,849,593 | 5% | ||
sco | 0 | 3,044,289,691 | 10% | ||
jim888 | 0 | 926,533,646,559 | 22% | ||
juecoree | 0 | 632,797,726 | 7% | ||
gabrielatravels | 0 | 766,932,754 | 0.42% | ||
intrepidphotos | 0 | 2,713,978,238 | 7.5% | ||
fineartnow | 0 | 872,050,326 | 0.6% | ||
hijosdelhombre | 0 | 39,769,827,533 | 27.5% | ||
josevillanueva | 0 | 13,709,609,040 | 100% | ||
oscarina | 0 | 752,322,104 | 10% | ||
aiziqi | 0 | 1,084,926,332 | 5% | ||
steemvault | 0 | 498,866,852 | 1.2% | ||
communitybank | 0 | 864,490,285 | 1.2% | ||
utube | 0 | 872,300,650 | 1.2% | ||
m1alsan | 0 | 1,103,406,298 | 1.2% | ||
dynamicrypto | 0 | 461,976,936 | 1% | ||
neneandy | 0 | 1,349,402,491 | 1.2% | ||
marc-allaria | 0 | 517,142,982 | 0.6% | ||
sportscontest | 0 | 1,301,995,991 | 1.2% | ||
gribouille | 0 | 453,957,355 | 10% | ||
pandasquad | 0 | 3,473,647,493 | 1.2% | ||
newmanjosue | 0 | 12,068,217,871 | 100% | ||
mproxima | 0 | 796,308,145 | 0.6% | ||
fantasycrypto | 0 | 878,966,324 | 1.2% | ||
wgonz | 0 | 23,304,390,733 | 75% | ||
comandoyeya | 0 | 306,229,991,508 | 70% | ||
emiliomoron | 0 | 881,525,073 | 5% | ||
zelenicic | 0 | 36,945,604,018 | 100% | ||
photohunt | 0 | 710,165,547 | 1.2% | ||
geopolis | 0 | 610,443,822 | 10% | ||
robertbira | 0 | 1,034,385,788 | 2.5% | ||
gracerolon | 0 | 4,110,435,870 | 65% | ||
alexdory | 0 | 1,803,666,926 | 10% | ||
takowi | 0 | 25,654,127,578 | 1.2% | ||
irgendwo | 0 | 3,557,133,631 | 1.2% | ||
cyprianj | 0 | 581,508,425 | 1.2% | ||
hosgug | 0 | 132,114,229,756 | 50% | ||
melvin7 | 0 | 17,824,841,729 | 5% | ||
francostem | 0 | 1,317,797,989 | 10% | ||
chrislybear | 0 | 1,285,313,586 | 0.6% | ||
jjerryhan | 0 | 1,528,695,394 | 0.6% | ||
putu300 | 0 | 973,114,916 | 5% | ||
zipporah | 0 | 582,314,419 | 0.24% | ||
superlotto | 0 | 1,242,727,495 | 1.2% | ||
bscrypto | 0 | 3,542,112,289 | 0.6% | ||
bil.prag | 0 | 552,360,281 | 0.06% | ||
sanderjansenart | 0 | 1,275,987,540 | 0.6% | ||
qberry | 0 | 912,715,421 | 0.6% | ||
greddyforce | 0 | 933,256,013 | 0.44% | ||
racibo | 0 | 5,407,117,838 | 4% | ||
gadrian | 0 | 86,527,224,515 | 6% | ||
jennyburgos | 0 | 8,399,043,309 | 70% | ||
therising | 0 | 23,337,571,078 | 1.2% | ||
de-stem | 0 | 5,352,566,019 | 9.9% | ||
imcore | 0 | 875,961,193 | 10% | ||
joseda94 | 0 | 2,282,185,901 | 50% | ||
deholt | 0 | 508,643,855 | 8.5% | ||
delirius | 0 | 1,054,842,289 | 86% | ||
robmolecule | 0 | 25,251,110,229 | 10% | ||
pladozero | 0 | 9,593,419,329 | 10% | ||
minerthreat | 0 | 894,339,593 | 0.6% | ||
nateaguila | 0 | 61,086,968,389 | 5% | ||
temitayo-pelumi | 0 | 929,626,709 | 10% | ||
pepitagold | 0 | 5,144,717,682 | 55% | ||
doctor-cog-diss | 0 | 9,392,606,675 | 10% | ||
musicvoter2 | 0 | 730,775,130 | 1% | ||
uche-nna | 0 | 1,592,078,252 | 0.96% | ||
m00m | 0 | 193,696,201,988 | 95% | ||
cheese4ead | 0 | 961,347,824 | 0.6% | ||
gaottantacinque | 0 | 0 | 100% | ||
nattybongo | 0 | 3,647,800,639 | 10% | ||
talentclub | 0 | 725,206,178 | 0.6% | ||
pastorencina | 0 | 66,547,546,233 | 45% | ||
armandosodano | 0 | 1,234,753,173 | 0.6% | ||
goblinknackers | 0 | 82,877,095,035 | 7% | ||
smartvote | 0 | 98,838,853,101 | 4.59% | ||
kylealex | 0 | 5,281,692,394 | 10% | ||
youdontsay | 0 | 146,050,282,324 | 70% | ||
gasaeightyfive | 0 | 638,190,817 | 100% | ||
pdq | 0 | 1,750,669,924,810 | 55% | ||
pboulet | 0 | 16,658,953,909 | 8% | ||
informatica | 0 | 5,811,060,624 | 100% | ||
marcocasario | 0 | 67,619,551,285 | 11.37% | ||
cribbio | 0 | 2,304,125,909 | 100% | ||
cliffagreen | 0 | 5,105,732,511 | 10% | ||
veronicabracho | 0 | 11,533,203,933 | 100% | ||
the.success.club | 0 | 740,049,618 | 0.6% | ||
meliq | 0 | 12,169,489,559 | 100% | ||
kristall97 | 0 | 689,613,980 | 100% | ||
danieli98 | 0 | 1,383,665,096 | 50% | ||
mati14 | 0 | 17,484,446,726 | 100% | ||
multifacetas | 0 | 751,450,413 | 0.6% | ||
cakemonster | 0 | 637,445,050 | 1.2% | ||
stem.witness | 0 | 555,609,112 | 10% | ||
chipdip | 0 | 848,764,547 | 10% | ||
steemstorage | 0 | 1,560,192,699 | 1.2% | ||
crowdwitness | 0 | 2,695,276,425 | 5% | ||
eternalsuccess | 0 | 702,514,349 | 0.6% | ||
hairgistix | 0 | 688,006,981 | 0.6% | ||
rem-steem | 0 | 610,459,067 | 0.6% | ||
steemean | 0 | 10,017,611,243 | 5% | ||
littlesorceress | 0 | 1,210,434,300 | 1.2% | ||
cryptofiloz | 0 | 1,938,164,540 | 1.2% | ||
dawnoner | 0 | 487,390,637 | 0.12% | ||
memehub | 0 | 670,543,241 | 0.6% | ||
edencourage | 0 | 6,317,164,976 | 50% | ||
qwerrie | 0 | 1,300,114,351 | 0.09% | ||
michelmake.util | 0 | 2,726,568,259 | 100% | ||
tiffin | 0 | 1,107,608,637 | 1.2% | ||
reggaesteem | 0 | 495,492,516 | 5% | ||
tokensink | 0 | 754,996,539 | 1.2% | ||
beta500 | 0 | 872,602,755 | 1.2% | ||
steemstem-trig | 0 | 161,015,736 | 10% | ||
baltai | 0 | 1,498,804,831 | 0.6% | ||
ibt-survival | 0 | 36,292,987,544 | 10% | ||
exchangethis | 0 | 2,336,485,654 | 80% | ||
terminado | 0 | 27,910,205,353 | 65% | ||
bsas | 0 | 44,203,307,774 | 80% | ||
rumors | 0 | 6,538,487,552 | 95% | ||
keys-defender | 0 | 2,672,627,698 | 100% | ||
hive-199963 | 0 | 1,024,123,115 | 1.2% | ||
stemsocial | 0 | 81,434,679,745 | 10% | ||
the100 | 0 | 1,095,037,935 | 0.6% | ||
kiemurainen | 0 | 563,400,500 | 0.5% | ||
hive.argentina | 0 | 297,960,230 | 100% | ||
noelyss | 0 | 2,310,684,152 | 5% | ||
ezgedo | 0 | 2,135,843,766 | 100% | ||
balvinder294 | 0 | 2,467,685,660 | 20% | ||
quinnertronics | 0 | 15,182,412,634 | 7% | ||
danieldrawing | 0 | 2,564,584,284 | 25% | ||
altleft | 0 | 5,444,124,885 | 0.01% | ||
ezrider | 0 | 7,149,278,766,931 | 95% | ||
borniet | 0 | 531,126,819 | 0.6% | ||
meritocracy | 0 | 15,763,509,589 | 0.12% | ||
dcrops | 0 | 4,710,797,897 | 0.6% | ||
whywhy | 0 | 544,224,863 | 0.33% | ||
yozen | 0 | 1,712,197,257 | 0.6% | ||
arrests | 0 | 790,157,564 | 100% | ||
tawadak24 | 0 | 952,696,089 | 0.6% | ||
kurkumita | 0 | 11,734,153,990 | 35% | ||
failingforwards | 0 | 725,886,814 | 0.6% | ||
drricksanchez | 0 | 3,521,824,324 | 0.6% | ||
nfttunz | 0 | 2,113,693,570 | 0.12% | ||
hive-defender | 0 | 361,538,002 | 100% | ||
key-defender.shh | 0 | 23,702,532 | 100% | ||
okluvmee | 0 | 807,705,966 | 0.6% | ||
merit.ahama | 0 | 939,699,407 | 0.36% | ||
holovision.cash | 0 | 3,723,084,041 | 100% | ||
lycanskiss | 0 | 2,221,438,524 | 100% | ||
seinkalar | 0 | 6,759,836,085 | 1.2% | ||
aries90 | 0 | 10,772,769,522 | 1.2% | ||
blingit | 0 | 842,424,979 | 0.6% | ||
rx7 | 0 | 5,052,349,160 | 100% | ||
crypto-shots | 0 | 340,631,339 | 100% | ||
newilluminati | 0 | 3,573,205,788 | 0.6% | ||
lichtkunstfoto | 0 | 1,914,431,542 | 1.2% | ||
rebound | 0 | 2,043,438,307 | 100% | ||
asado | 0 | 42,124,436,833 | 85.5% | ||
jdgu | 0 | 1,622,107,183 | 100% | ||
lukasbachofner | 0 | 1,066,322,053 | 0.6% | ||
surron | 0 | 2,843,317,848 | 91.2% | ||
cryptoshots.nft | 0 | 0 | 100% | ||
belug | 0 | 1,608,301,332 | 0.36% | ||
chichi18 | 0 | 59,672,772,264 | 100% | ||
dutchchemist | 0 | 468,813,292 | 100% | ||
cryptoshots.play | 0 | 0 | 10% | ||
inibless | 0 | 1,114,340,375 | 5% | ||
callmesmile | 0 | 720,709,655 | 0.6% | ||
justfavour | 0 | 1,023,284,231 | 0.6% | ||
jijisaurart | 0 | 533,221,989 | 0.6% | ||
cryptoshotsdoom | 0 | 0 | 10% | ||
changes | 0 | 3,558,529,547 | 93.1% | ||
wasined | 0 | 3,475,912,870 | 1.2% | ||
clpacksperiment | 0 | 572,921,679 | 0.6% | ||
s18 | 0 | 1,166,969,386 | 93.1% | ||
ambicrypto | 0 | 32,043,989,183 | 1.2% | ||
humbe | 0 | 7,316,503,157 | 2% | ||
onlyfly | 0 | 1,978,494,238 | 100% | ||
greenthings | 0 | 31,896,402,719 | 95% | ||
hosgug-buzz | 0 | 5,840,874,470 | 100% | ||
jhymi | 0 | 1,437,572,168 | 0.6% | ||
nurul-uli | 0 | 5,295,776,608 | 100% | ||
bolonqui | 0 | 6,516,883,673 | 95% | ||
alfty | 0 | 40,492,352,737 | 79.8% | ||
balcarce | 0 | 38,825,631,616 | 81.7% | ||
slitherin | 0 | 4,305,052,979 | 95% | ||
s22 | 0 | 4,605,374,224 | 95% | ||
theplan | 0 | 3,836,545,534 | 95% | ||
karina.gpt | 0 | 0 | 100% | ||
argo8 | 0 | 1,407,646,289 | 0.6% | ||
maniobras | 0 | 453,075,955 | 95% | ||
rhemagames | 0 | 1,128,055,561 | 0.6% | ||
soylegionario | 0 | 1,549,464,530 | 1.2% | ||
argentino | 0 | 3,880,018,143 | 95% | ||
hivepago | 0 | 2,955,096,100 | 77.89% | ||
blackextreme | 0 | 0 | 100% | ||
losmoros | 0 | 44,895,085,249 | 93.1% | ||
enviarg | 0 | 1,195,966,204 | 95% | ||
profwhitetower | 0 | 2,102,226,379 | 5% | ||
jm1990 | 0 | 17,274,432,015 | 100% | ||
magic.byte | 0 | 0 | 100% | ||
arka1 | 0 | 1,393,179,182 | 0.6% |
Congratulations @vatman! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s) <table><tr><td><img src="https://images.hive.blog/60x70/https://hivebuzz.me/@vatman/upvoted.png?202505141953"></td><td>You received more than 2000 upvotes.<br>Your next target is to reach 2250 upvotes.</td></tr> </table> <sub>_You can view your badges on [your board](https://hivebuzz.me/@vatman) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>
author | hivebuzz |
---|---|
permlink | notify-1747264364 |
category | programming |
json_metadata | {"image":["https://hivebuzz.me/notify.t6.png"]} |
created | 2025-05-14 23:12:45 |
last_update | 2025-05-14 23:12:45 |
depth | 1 |
children | 0 |
last_payout | 2025-05-21 23:12:45 |
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 | 622 |
author_reputation | 369,400,114,746,106 |
root_title | "Programming Project Part #3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,734,644 |
net_rshares | 4,599,179,083 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vatman | 0 | 4,599,179,083 | 100% |
So this thing trades for you and takes profits? I might try it. You didn't say where to paste the code or how to run it though. I don't think that is enough code to be the whole program either. Is it?
author | hivepago |
---|---|
permlink | swbhqj |
category | programming |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-05-15 19:20:42 |
last_update | 2025-05-15 19:20:42 |
depth | 1 |
children | 1 |
last_payout | 2025-05-22 19:20: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 | 203 |
author_reputation | 6,988,979,842,187 |
root_title | "Programming Project Part #3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,753,398 |
net_rshares | 4,296,624,458 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vatman | 0 | 4,296,624,458 | 100% |
Hey, thanks for the question. in my other posts about this project I talk about how its a python program. I'm using "visual code" to work on this but if you don't have that you should be able to paste this code block into a text file and then rename it from (*.txt) to (*.py) and it should run. PS: its not the whole trading bot, this is just the first and second window that creates the files for the bot to read & run in the future
author | vatman |
---|---|
permlink | swbjar |
category | programming |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-05-15 19:54:27 |
last_update | 2025-05-15 19:54:27 |
depth | 2 |
children | 0 |
last_payout | 2025-05-22 19:54: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 | 435 |
author_reputation | 16,946,770,159,570 |
root_title | "Programming Project Part #3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,753,981 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). Consider setting @stemsocial as a beneficiary of this post's rewards if you would like to support the community and contribute to its mission of promoting science and education on Hive. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-vatman-programming-project-part-3-20250515t045041578z |
category | programming |
json_metadata | {"app":"STEMsocial"} |
created | 2025-05-15 04:50:42 |
last_update | 2025-05-15 04:50:42 |
depth | 1 |
children | 1 |
last_payout | 2025-05-22 04:50: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 | 646 |
author_reputation | 22,918,491,691,707 |
root_title | "Programming Project Part #3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,738,038 |
net_rshares | 4,209,726,230 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
vatman | 0 | 4,209,726,230 | 100% |
Wow, STEMsocial seems like a vey cool community I'm looking forward to posting on it, thanks for the comment.
author | vatman |
---|---|
permlink | swbj2z |
category | programming |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2025-05-15 19:49:48 |
last_update | 2025-05-15 19:49:48 |
depth | 2 |
children | 0 |
last_payout | 2025-05-22 19:49: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 | 109 |
author_reputation | 16,946,770,159,570 |
root_title | "Programming Project Part #3" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 142,753,939 |
net_rshares | 0 |