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. […]
Stock Market news
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 […]
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 […]
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 […]
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 […]
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 […]