[MT4]Indicator to change currency pairs with one click

Those who want to stop displaying multiple charts on MT4, but occasionally want to display other currencies.This time, we will introduce an indicator that changes currency pairs with one click. Indicator specification Currency pair change function Up to 10 currency pairs can be specified The arrangement of the currency pair change button can be changed … Read more

[MT4]Indicator to display volatility

Have you ever used MT4 and wanted to intuitively display the volatility of the chart you are monitoring as a numerical value?For such people, I would like to introduce an Indicator that displays volatility. When used in combination with an Indicator that changes the timeframes of multiple charts at once, it becomes possible to easily … Read more

[MT4][mql4][programming] Sample code to detect golden cross

Many people would like to create a program that detects golden cross or dead cross with mql4 and performs automatic trading.Here is a sample code that can check if there is a golden / dead cross using Moving Average or MACD. There is also a sample code post if you want to predict the golden … Read more

[MT4] Introducing Script to export account history information

Have you ever wondered what kind of trading MT4 users are doing to study trading? For such people, we would like to introduce a Script that exports account history information.It is also possible to have a person who is good at trading export the trade history, import the information into your MT4 and display it … Read more

How to execute Script in MT4

This section describes how to execute Script in MT4. Prepare the Script (.ex4) you want to execute in MT4. Start MT4 and click “File”-> “Open Data Folder”. The MT4 folder will be opened, so move the folder to “MQL4”-> “Scripts”. Copy the Script prepared in 1.) to the Scripts folder. Click “View”-> “Navigator” in MT4 … Read more

[MT4][mql4][programming] What is the function of property strict?

If you are implementing EA or Indicator in mql4, you may have seen “#property strict” in the program properties. This time, I would like to briefly introduce the function of “#property strict”. #Function of property strict 1. specification I have already introduced a little on the introduction page of the sample code created by EA, but … Read more