<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Forex Software — MT5 Strategy Tester Inputs Tab is Blank]]></title>
	<link rel="self" href="https://forexsb.com/forum/feed/atom/topic/10083/" />
	<updated>2026-06-16T02:46:59Z</updated>
	<generator>PunBB</generator>
	<id>https://forexsb.com/forum/topic/10083/mt5-strategy-tester-inputs-tab-is-blank/</id>
		<entry>
			<title type="html"><![CDATA[Re: MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83347/#p83347" />
			<content type="html"><![CDATA[<p>Sorry, I was thinking you meant the exported filename is too long.</p><p>Historically, the Windows file path was limited to 260 characters (including the drive letter and the directories).<br />This is probably a safe limit.</p><p>Very good observation!</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2026-06-16T02:46:59Z</updated>
			<id>https://forexsb.com/forum/post/83347/#p83347</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83346/#p83346" />
			<content type="html"><![CDATA[<p>It&#039;s most definitely the length of the filename, I just tested it three times to verify it. So it&#039;s not the code, but a Metatrader bug. You have to delete the \Tester folder or you might not notice, because it will stubbornly load the settings of the last tested ex5 instead, so you might not even notice if a previously tested EA had similar settings. But if you delete the \Tester folder first and then open MT5 you&#039;ll get a blank page instead of old cached settings from the previous test if the filename is too long. I&#039;m not sure exactly how many characters is the limit yet, but &quot;BOT_EA_Farming_GRID_BASE_AUDCAD_M15_ORIG1740201819_EAS1740201819.mq5&quot; is too long and renaming it to &quot;BOT_EA_Farming_GRID_BASE_AUDCAD_M15_ORIG.mq5&quot; and recompiling works. So, we&#039;ll just keep our filenames shorter in the future. ;-)</p><p>It was just a coincidence that I had renamed the file to something short like &quot;test&quot; when I had rearranged enums to be first before inputs in the code trying to figure out what was breaking MT5.</p><p>I&#039;d report it on MetaQuotes forum, but I have bugs going back more than 5 years now that they&#039;ve refused to acknowledge, respond to, or fix, hahaha!</p>]]></content>
			<author>
				<name><![CDATA[aaronpriest]]></name>
				<uri>https://forexsb.com/forum/user/12293/</uri>
			</author>
			<updated>2026-06-16T01:37:18Z</updated>
			<id>https://forexsb.com/forum/post/83346/#p83346</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83345/#p83345" />
			<content type="html"><![CDATA[<p>Enumeration declarations exist only in the source code.<br />Once the file is compiled, the enumerations disappear. The enumeration values are replaced with constant integer numbers in the compiled expert.</p><p>However, MetaTrader creates something (probably a HashMap) from the comments on the enum values because we see them in the options.</p><p>You can easily prove whether this is the real reason for the issue you are observing. Move the declarations back and forth, compile the expert, and see if the Tester is rendered correctly. If you find something, report it to MetaQuotes. (I have reported issues to them before, and neither received a response nor were the issues fixed.)</p><p>I also don&#039;t think the filename length can cause such issues.</p><p>The most probable reason for the problem is misbehavior of the C++ libs MetaTrader uses, the display driver, monitor sharing, or desktop scaling.</p><p>Check for error messages in the Expert or the Journal tabs. If there is an issue, I&#039;ll fix it.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2026-06-16T00:02:34Z</updated>
			<id>https://forexsb.com/forum/post/83345/#p83345</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83344/#p83344" />
			<content type="html"><![CDATA[<p>It definitely solved it when I changed order in the code and shortened the filename. I&#039;m not sure if it was one or both that fixed it both times yet.</p>]]></content>
			<author>
				<name><![CDATA[aaronpriest]]></name>
				<uri>https://forexsb.com/forum/user/12293/</uri>
			</author>
			<updated>2026-06-15T22:26:21Z</updated>
			<id>https://forexsb.com/forum/post/83344/#p83344</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83343/#p83343" />
			<content type="html"><![CDATA[<p>There are similar reports in the MT forums.<br />The issue is most likely related to the visual rendering of the MT Tester.<br />I doubt it has anything to do with the MQL code or the filename itself.</p>]]></content>
			<author>
				<name><![CDATA[Popov]]></name>
				<uri>https://forexsb.com/forum/user/2/</uri>
			</author>
			<updated>2026-06-15T19:22:07Z</updated>
			<id>https://forexsb.com/forum/post/83343/#p83343</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83340/#p83340" />
			<content type="html"><![CDATA[<p>You know, it might also be the length of the filename that was a problem too and not the order, because I just had another one with the same problem, and changing the order in the code didn&#039;t fix it, but shortening the filename did.</p>]]></content>
			<author>
				<name><![CDATA[aaronpriest]]></name>
				<uri>https://forexsb.com/forum/user/12293/</uri>
			</author>
			<updated>2026-06-15T15:25:36Z</updated>
			<id>https://forexsb.com/forum/post/83340/#p83340</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[MT5 Strategy Tester Inputs Tab is Blank]]></title>
			<link rel="alternate" href="https://forexsb.com/forum/post/83339/#p83339" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>Popov wrote:</cite><blockquote><p>Hello, Traders, </p><p>A new version of the <strong>Expert Advisor Plus.mq5 v6.8</strong> has been uploaded.</p></blockquote></div><p>Hi Popov!</p><p>I discovered a small bug regarding MT5 backtester. The grid-generated EA compiles successfully with no errors, but MT5 Strategy Tester Inputs tab is blank. The issue appears when custom enum declarations are placed between input declarations. Moving all enum declarations above the first input fixed the problem and then I could backtest in MT5. It compiled fine in MetaEditor either way though, the editor didn&#039;t catch or flag it, but the backtester is more strict about the order I guess.</p>]]></content>
			<author>
				<name><![CDATA[aaronpriest]]></name>
				<uri>https://forexsb.com/forum/user/12293/</uri>
			</author>
			<updated>2026-06-15T14:48:34Z</updated>
			<id>https://forexsb.com/forum/post/83339/#p83339</id>
		</entry>
</feed>
