top of page


Exponential Moving Average in Python
Learn how to calculate one of the most popular technical analysis measurements in python! Similar to the Simple Moving Average (SMA), the Exponential Moving Average (EMA) is a rolling average value that adds some spice! The EMA has additional weight on values closer to the present day to increase the importance of most recent data. This blog post will show you how to perform Exponential Moving Averages in Python! Import Needed Libraries import yfinance as yf import pandas as

Intrendias
Jun 27, 20242 min read
Â
Â
Â


Get Yahoo Finance Data in Python
Hey everyone, welcome back to Intrendias! In order to perform stock market analysis, derive technical insights, or develop trading strategies, accessing reliable data is crucial. Today, let's explore how to retrieve data from Yahoo Finance for stock or cryptocurrency, including open, close, high, low, and volume data. There are many ways to extract data from Yahoo Finance in python. We can create a custom python function or take advantage of open-source libraries; both method

Intrendias
Feb 17, 20243 min read
Â
Â
Â


Algorithmic Trading in Python Code - Mean Reversion Strategy
On my YouTube channel I have a Algorithmic Trading Course series where we use python and create a mean reversion inspired trading algorithm. The algorithm provides buy and sell signals along with backtesting results. For your convenience, I have provided the complete jupyter notebook with all the required code here! Algorithmic Trading Python Code Here for Intrendias Essentials Members (Free Tier)!

Intrendias
Dec 11, 20237 min read
Â
Â
Â
bottom of page
