You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
How to collect detailed symbol information with Python and MetaTrader 5
COMO COLETAR INFORMAÇÕES DETALHADAS DE ATIVOS FINANCEIROS COM PYTHON E MT5
The video demonstrates how to collect detailed information on a specific financial asset using Python and the MT5 platform. The information collected includes various details about the asset's trading volume, pip values, and bid/ask prices, among other things. This section of the video also covers the conversion of the collected information into dictionary format for easier analysis. The video provides insights into how to collect and analyze financial data using Python programming.
HOW TO TRANSFORM ASSET INFORMATION INTO PYTHON AND MT5 DATAFRAMES
COMO TRANSFORMAR AS INFORMAÇÕES DE ATIVOS EM DATAFRAMES PYTHON E MT5
This YouTube video highlights the process of converting asset information from dictionaries into data frames in Python and MT5. The instructor explains how to use the select statement to collect information and then convert it to a list of tuples, which can later transform into a data frame using the pandas library. They provide step-by-step guidance on creating a list, naming the columns and transforming it into a data frame. The tutorial aims to encourage viewers to utilize Python and MQL5 for creating investment strategies and robots by connecting all these ideas.
HOW TO COLLECT THE CLOSE PRICES OF VARIOUS ASSETS IN DATAFRAME - Python and MetaTrader 5
COMO COLETAR OS CLOSES DE VÁRIOS ATIVOS EM DATAFRAME - PYTHON E MetaTrader 5
The video teaches how to automate the process of collecting and storing the closing prices of multiple assets into a Pandas DataFrame using Python and MetaTrader 5. The process involves creating a portfolio of assets, using a for loop to collect their closing prices based on a specific date range, and transforming the collected data into a DataFrame. The tutorial provides an excellent example for traders interested in automating their data collection process. The presenter also shows how to select only the desired values and address errors during data collection, demonstrating a useful troubleshooting process. The resulting DataFrame contains the date and closing price for each asset, which is useful for creating asset trading robots.
HOW TO GET REAL TIME ASSET PRICES WITH PYTHON AND METATRADER 5
COMO OBTER PREÇOS DE ATIVOS EM TEMPO REAL PYTHON E MT5
The YouTube video demonstrates how to use Python and MetaTrader 5 to obtain real-time asset prices by running a loop that continuously collects data on closing prices at two-second intervals. The speaker converts the collected data into a date and time format and shows how to extract the last five values of an asset's closing prices. While the asset's closing values do not fluctuate much in the example shown, the method can be used to collect data on any desired asset. Additionally, the video mentions the availability of a similar function that collects data on buy and sell prices for each execution moment in the market.
HOW TO CONTINUOUSLY SAVE IN FILE DATA OBTAINED WITH METATRADER 5 AND PYTHON
COMO SALVAR EM ARQUIVO CONTINUAMENTE DADOS OBTIDOS COM PYTHON DO METATRADER 5
This video tutorial demonstrates the process of collecting and saving real-time financial data obtained through Python from MetaTrader 5 by using the Pandas library's DataFrame method to create a CSV file. The video covers how to modify the file into a row-based data structure for better organization and shows how to delete headers and indexes. It also explains how to save the data as an Excel file with a few tweaks.
HOW TO ADD SYMBOLS IN METATRADER 5 MARKET WATCH WITH PYTHON
COMO ADICIONAR ATIVOS NA OBSERVAÇÃO DE MERCADO MT5 COM PYTHON
This YouTube tutorial teaches users how to add new assets to the MetaTrader 5 market watch using Python. The tutorial explains how to gather information about an asset using Meta Trader and add it to the observation market. By adding an asset, users gain access to more detailed information such as opening and closing prices and volume. The tutorial emphasizes the importance of this feature for those programming their own trading bots.
HOW TO PLOT CANDLES CHARTS WITH PYTHON AND METATRADER5
COMO PLOTAR GRÁFICOS DE CANDLES COM PYTHON E MetaTrader 5
This video tutorial covers the process of plotting candlestick charts using Python and MetaTrader 5. The instructor uses the cufflinks library to import and manipulate data from MetaTrader 5, shows how to use pandas to generate interactive and customized charts, and explains how to transform the data into a dataframe to utilize the Pandas library functions for charting. Additionally, they demonstrate how to customize charts, transform data index to date and time, and provide code and commands for users to create their own customized charts for financial analysis.
How to Host a Robot (Expert Advisor) on a MetaTrader 5 VPS
Como Hospedar um Robô (Expert Advisor) numa VPS do MetaTrader 5
The video provides guidance on how to host an Expert Advisor (robot) on a VPS machine using MetaTrader 5. Users must select and purchase a plan on the mql5.com website after logging into the platform, making sure that they have a configuration that is equal to or above version 3063 to use the service. This feature can help users avoid issues with power outages and internet connectivity when running the robot.
HOW TO FILTER DATES AND TIMES IN DATAFRAMES WITH PYTHON
COMO FILTRAR DATAS E HORAS EM DATAFRAMES COM PYTHON
In this YouTube video, the YouTuber demonstrates how to filter data and extract information based on time in a data frame using Python. They use MetaTrader 5 to import data and prices and then show how to use the pandas library to work with the data frame. The speaker explains how to transform the time columns into strings and how to filter the data frame based on specific hours using a lambda function applied row by row. This video is helpful for those who want to develop complex strategies and work with data analysis using Python and MetaTrader 5. It provides a good explanation of the apply function and filtering data frames based on conditions.
HOW TO DOWNLOAD METATRADER 5 DATA AND OPEN WITH PYTHON
COMO BAIXAR DADOS DO METATRADER 5 E ABRIR COM PYTHON
The video tutorial explains how to download data from MetaTrader 5 and open it with Python. The process involves identifying the necessary data and downloading it, opening and manipulating the data in Python using libraries like Pandas, and resolving common errors such as proper data separation using tab separators.