Date: Time:
Welcome, Log in by clicking  Here!

GetTokenInfo.py

How to get Dex data using web3 In order to get token information from a decentralized exchange (DEX) using Web3, you need to use a node because a node is your gateway to the blockchain. A blockchain node is like a computer that keeps a full copy of the blockchain and can interact with it. […]

Posted on September 24, 2024 in coding,crypto by henryoviedo93

Backtesting.py

Backtesting Backtesting is like testing a strategy in a video game, but instead of trying it out in a live game, you rewind time and see how well it would have worked in past games. In finance, it means you take a trading strategy (like when to buy or sell stocks) and check how it […]

Posted on August 30, 2024 in coding by henryoviedo93

TA-LIB

TA-LIB Ta-lib allows you to calculate technical indicators and it’s a requirement for lots of other libraries. If you try to install just using PIP, it’ll try to pull the packet from pypi but you’ll more than likely end up with errors because of missing dependencies. There’s 2 versions of the ta library that you […]

Posted on August 3, 2024 in coding by henryoviedo93
Tags:

LINUX

LINUX As IT systems and workloads get more complex, the underlying architecture and operating system must be reliable, scalable, and performance driven. Linux is the table foundation for all IT workloads and deployments-whether traditional or innovative-from bare metal to virtual, cloud, and containers. Linux is an open source OS.Created by Linus Torvalds in 1991, it […]

Posted on June 3, 2024 in coding by henryoviedo93
Tags:

Parsing with python cont….

This is a copy of my code. I don’t have my github set up. import imaplib import email import yaml with open(“credentials.yml”) as f:content = f.read() my_credentials = yaml.load(content, Loader=yaml.FullLoader) user, password = my_credentials[“user”], my_credentials[“password”] imap_url = ‘imap.gmail.com’ # Connection with GMAIL using SSLmy_mail = imaplib.IMAP4_SSL(imap_url) # Log in using your credentialsmy_mail.login(user, password) # Select […]

Posted on August 18, 2023 in coding by henryoviedo93
Tags: ,

Parsing with python

Downloading your data from google takes DAYS If you’re anything like me, your Gmail account tends to accumulate a lot of emails over time. While you can resort to exporting your data to free up some space, this process can be quite time-consuming, often stretching over hours or even days. However, with the advancements of […]

Posted on August 18, 2023 in coding by henryoviedo93
Tags: ,