From 9537efe261159ba952e219cb72b25e06355b3338 Mon Sep 17 00:00:00 2001 From: FxPouya <59786270+FxPouya@users.noreply.github.com> Date: Fri, 26 Dec 2025 18:24:56 +0330 Subject: [PATCH] Add files via upload --- USER_MANUAL.md | 2 +- ea-guide.html | 397 +++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 2 +- manual.html | 3 + 4 files changed, 402 insertions(+), 2 deletions(-) create mode 100644 ea-guide.html diff --git a/USER_MANUAL.md b/USER_MANUAL.md index 721ca6e..a6225f7 100644 --- a/USER_MANUAL.md +++ b/USER_MANUAL.md @@ -528,7 +528,7 @@ Please provide: ### Documentation -- **DataProvider EA Guide**: See `downloads/README.md` +- **DataProvider EA Guide**: [Open EA Guide](ea-guide.html) - **API Documentation**: For developers - **License System**: Setup and management diff --git a/ea-guide.html b/ea-guide.html new file mode 100644 index 0000000..9ecc823 --- /dev/null +++ b/ea-guide.html @@ -0,0 +1,397 @@ + + + +
+ + +Step-by-step guide to exporting historical data from MT4/MT5
+The FxMathQuant Data Exporter is an Expert Advisor (EA) designed specifically to bridge the gap between + MetaTrader and the FxMathQuant Strategy Generator. It ensures your historical data is formatted + perfectly for high-accuracy backtesting and optimization.
+ +Generates CSV files with Time, Open, High, Low, Close, Volume, and Spread.
+Features automatic suffix removal (e.g., XAUUSDpro → XAUUSD) for cleaner data.
+Exports 10,000+ bars in seconds with minimal overhead.
+FxMathQuant_DataExporter_MT4.ex4.MQL4/Experts and paste the file.FxMathQuant_DataExporter_MT5.ex5.MQL5/Experts and paste the file.Note: Make sure "Allow DLL imports" and "Allow automated trading" are enabled in the + EA settings.
+BarsToExport (default: 10,000).Your files are saved in the Terminal's common folder:
+MQL4/Files/FxMathQuant/ or MQL5/Files/FxMathQuant/
+ | Parameter | +Default | +Description | +
|---|---|---|
BarsToExport |
+ 10000 | +The number of historical bars to include in the CSV. | +
RemoveSuffix |
+ true | +Automatically strips broker prefixes/suffixes from the symbol name. | +
ExportFolder |
+ "FxMathQuant" | +The subfolder where files will be saved within the Files directory. | +
AutoExportOnStart |
+ false | +If true, exports data immediately upon attaching the EA. | +
Check "Allow Automated Trading" in the MT4/5 toolbar and in the EA's common tab.
+Ensure you have downloaded enough history (Press F2 to open History Center and click Download). +
+FxMathQuant_DataExporter_MT5.ex5For detailed step-by-step instructions, see the EA Setup Guide. +
+