The Arena – a next generation SocialFi app redefining how creators connect, engage, and monetize their content – is pleased to announce the close of a $2M pre-seed round. The round consisted predominantly of strategic angel investors and partners who the team believes will allow them to scale the app to the next level. Investors […]
Stock Market news
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. […]
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 […]
Meme Token ‘Normie’ Hit by Major Hack
Value Plummets A meme token called Normie, which runs on the BASE blockchain, recently experienced a huge drop in value due to a hack, or “exploit.” At the same time, a couple of other meme coins related to former President Donald Trump did well, helping the meme coin market. The hack caused Normie’s price to […]
Building A Crypto Portfolio – Modern Portfolio Theory and Standard Deviation
Understanding Your Investment Personality Every investor has a unique tolerance for market fluctuations and their impact on their portfolio. There are investors who lose sleep when their portfolio fluctuates, and there are investors who sleep through it all dreaming of long term gains. Taking lessons from Harry Markowitz’s modern portfolio theory, there are three things […]
Bitcoin’s Whiplash Effect
Crypto Chronicles: Unveiling the Latest in the World of Cryptocurrency In a whirlwind of developments, the cryptocurrency landscape has been buzzing with groundbreaking announcements and strategic moves. Here’s a roundup of the most noteworthy events shaping the crypto world: Coinbase Conquers Canada Global cryptocurrency exchange powerhouse Coinbase has expanded its horizons with a triumphant launch […]
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 […]