Author name: scriptsforwealth.com

These Companies Raised Their Dividends Today – How to Automate with Python?

If you follow dividend-paying stocks, you know how valuable it is to spot when companies increase their payouts. But checking for these updates manually every day can be time-consuming. That’s why I decided to automate it. In this post, I’ll show how I built a Python script that checks which companies increased their dividends today. […]

These Companies Raised Their Dividends Today – How to Automate with Python? Read More »

Fetching AAPL Dividends with Python: Scraping vs Using APIs

Introduction Developers and finance enthusiasts often need to retrieve stock data programmatically for analysis or trading. Rather than manually copying values, we can automate data retrieval with code. Two common approaches are web scraping and using an official API. Web scraping means fetching and parsing an HTML page, while APIs provide a structured data feed.

Fetching AAPL Dividends with Python: Scraping vs Using APIs Read More »

How to Calculate Beta from Scratch using Python

Beta is one of the most widely used metrics in the investment world, especially for those who follow the Capital Asset Pricing Model (CAPM). But what exactly is beta, and how can you calculate it yourself? Let’s break it down! In this post, we’ll explain what beta is, why it’s important, how to calculate it,

How to Calculate Beta from Scratch using Python Read More »

3 – Building a Portfolio Manager with Python: Refactoring and removing stocks

This post is part of a series of posts that we will go from complete scratch and build a portfolio management tool using Python. In the last post, we refactored the file organization and built a function for adding stocks to the “database”. Here are the previous posts in case you missed them: Plan for

3 – Building a Portfolio Manager with Python: Refactoring and removing stocks Read More »

Scroll to Top