Spread data collector – EA MetaTrader 5

Spread data collector - expert for MetaTrader 5
This EA collects information about the spreads and Shows the number of spreads in the specified range based on the ticks that occur each year. When the EA ends its working, it prints all statistics to the Journal, which can be useful for the Strategy Tester. When each year in the strategy tester ends. Spreads … Read more

SymbolInfo example script Enhancement with margin and leverage data – script MetaTrader 5

SymbolInfo example script Enhancement with margin and leverage data - script for MetaTrader 5
The original SymbolInfo example script is made of one source file and two header file. In this version each file has ben changed to include two functions, calls to fhese functions and a new design of the ouput screen. 9 ouput fields has been added, 7 standard symbol attributes, margin required (as named in MT4) … Read more

Simple bar spread indicator as reported by the OnCalculate data – indicator MetaTrader 5

Bar Spread
This is a very simple MQL5 code for an indicator to plot the values of the spread[] data (in points) as reported by the OnCalculate event handler. These are the same spread data values that would be returned when collecting MqlRates data via the CopyRates function. Simple bar spread indicator as reported by the OnCalculate … Read more

Economic Calendar Data Aggregator – script MetaTrader 5

Economic Calendar Data Aggregator - script for MetaTrader 5
This is meant to be an aggregating service script that collects data from the EconomicCalendar functions & outputs the values to a text file as a list of dictionaries for each event collected over a period of time. This is meant to be a prototype test to approaching the solution, temporary for users of the … Read more

COLLECT ALL INDICATORS DATA – script MetaTrader 5

COLLECT ALL INDICATORS DATA - script for MetaTrader 5
Collect All Indicators Script This Script collects all MQL5 built-in indicators buffers and stores them in a CSV file for analysis purposes. Bollinger Bands (BB): BB_BASE_LINE: The base (central) line of the Bollinger Bands. BB_UPPER_BAND: The upper band of the Bollinger Bands. BB_LOWER_BAND: The lower band of the Bollinger Bands. Other Indicators: ADX-MAIN_LINE: The main … Read more