
Learn how to name and store values in Python variables, assign strings, numbers, and booleans, convert between data types, and assign multiple values in one statement.
Explore Python operators across arithmetic, comparison, boolean, and assignment categories, with examples of addition, subtraction, multiplication, division, modulus, exponentiation, and integer division.
Explore the types of currency pairs in forex—the major pairs with the base currency and code currency, cross currency pairs, and exotic pairs—plus how to add custom currency pairs.
Master forex terminology, including pips (fourth decimal for most pairs and ten pips for yen), lots, margin, and leverage, with practical examples.
Calculate euro dollar profit by comparing current and previous values after a one-pip move for a one-lot trade, using 100,000 as the lot value, deriving profits like 10 USD, 0.1, and 0.01.
Explore forex order types in MetaTrader, including market orders executed instantly at the current price and pending orders, including stop and limit orders placed for future price levels.
Install the MetaTrader Python library, import it, and connect Python to MetaTrader 5 by initializing and logging in with the server, account number, and password.
Separate buy and sell orders via the type column, with 0 for buy and 1 for sell; filter using lock and create functions to calculate buy and sell profits.
Explain candle structure with open, high, low, and close and use a 14-period moving average to signal buys when price closes above moving average and sells when it closes below.
Assemble the first trading bot by creating a Python project, installing pandas and Metatrader libraries, importing them, and copying the initialize and close function templates from the resources.
Assemble the first bot part 2 by extracting ten candles, building a pandas dataframe of open, high, low, and close, and computing direction from the last close against the mean.
We are going to build 5 Trading Bots in this Course. This is the course content.
Basics of Python
Data Analysis with Pandas Library in Python
Basics of Forex
Building the Strategy Plan
Forex Algorithmic Trading with mt5 Library
Bot 01: Building a Simple Forex Trading Bot to Understand Fundamentals
Bot 02: Building a SMA Crossover Trading Bot
Bot 03: Building a Bollinger Bands Trading Bot
Bot 04: Building a Grid Trading Bot
Bot 05: Building a DCA Trading Bot
Multiprocessing ( Trading Multiple Currency Pairs Simultaneously )
Live Forex Trading
Basics of Python -
This section is for absolute beginners in python. We are discussing about following topics.
Installing Python and Setting up IDE
Print Function and F Strings
Variables and Basic Data Types in Python
Operators in Python
Python Functions
Global and Local Variables in Python
Working with Lists
Working with Dictionaries
If Else Statements in Python
While Loops, Break and Continue Statements
For Loops
Classes and Objects in Python
Data Analysis with Pandas Library in Python
Pandas is a Python library created for data analysis. We are using this library to do essential forex calculations.
We are discussing about,
Pandas Series
Pandas Data Frames
Selecting Specific Rows and Columns in a Dataframe
Selecting Rows in a Data Frame by Conditions
Iterating Colums in a Dataframe
Basics of Forex
We will discuss terminology in forex and do essential calculations.
Installing MetaTrader and Setting Up a Correct Broker Account
Types of Currency Pairs in Forex
Bid, Ask and Spread
Lots, Pips , Leverage and Margin
Essential Calculations
Types of Orders in Forex
Building the Strategy Plan
In this section, we will be designing blue print of our trading bot
Forex Algorithmic Trading with mt5 Library
We are creating functions of our trading bot(Functions for Opening and Closing Different Types of Orders with Python
Getting Current Position Details,
Basic Calculations in Forex ( Profit/Loss , Margin , Total Volume ))
Building Trading Bots
We are putting all the functions together and assembling the 5 forex trading bots.
Multiprocessing
We are putting all the functions together and assembling the forex bot
Live Trading
We are waiting for suitable market conditions and correct forex pairs.
Then we do live trading