Listing all MT5 Signals’ properties to a CSV file – script MetaTrader 5

Listing all MT5 Signals' properties to a CSV file - script for MetaTrader 5
This simple, quick & dirty script code will output a CSV file of all the Signals’ properties as reported by the MQL5 Trade Signals functionality. With the resulting CSV file opened as a spreadsheet (e.g. Excel), you can sort them by your preferred metrics and choose that suite your requirements for copy trading.  Please note … Read more

Listing all MT4 Signals’ properties to a CSV file – script MetaTrader 4

Listing all MT4 Signals' properties to a CSV file - script for MetaTrader 4
This simple, quick & dirty script code will output a CSV file of all the Signals’ properties as reported by the MQL4 Trade Signals functionality. With the resulting CSV file opened as a spreadsheet (e.g. Excel), you can sort them by your preferred metrics and choose that suite your requirements for copy trading. Please note … Read more

Simplest CSV file reader – script MetaTrader 5

Simplest CSV file reader - script for MetaTrader 5
Use this simplest class to read CSV file with out any preparations and types casting declarations. Find the shortest usage example below. string Filename = “filename.csv”; CDKSimplestCSVReader CSVFile; // Create class object // Read file pass FILE_ANSI for ANSI files or another flag for another codepage. // Give values separator and flag of 1sr line … Read more