- Search Metals Mine
-
asasa replied Feb 24, 2012The trendline indicator repainted right now and is displaying a full red line where a blue line segment was displayed some minutes ago.
Symphonie Trader System EA
-
asasa replied Feb 24, 2012The latest entry shows another possible problem of the indicators... Even though all the indicators are telling SELL at bar #1 (most recently completed bar), the trendline indicator on bar #0 (not yet completed) is telling buy. This means the pair ...
Symphonie Trader System EA
-
asasa replied Feb 24, 2012I'm seeing an additional problem with these indicators, past bars do repaint even in the middle of a new bar and not only at the end of bar. The EA looks for entry conditions only at the end of bar, therefore sometimes it seems the EA sends the ...
Symphonie Trader System EA
-
asasa replied Feb 24, 2012I fixed the problem signaled by ceechange and uploaded the new version of the EA on the first post.
Symphonie Trader System EA
-
asasa replied Feb 23, 2012Well, an EA can give bad results even if it is written correctly according to the original rules... Anyway, based on what ceechange pointed out I found an additional strange behavior of the extreme indicator that leads to an additional misalignment ...
Symphonie Trader System EA
-
asasa replied Feb 22, 2012I have the same behavior on my system, never noticed before. Let me investigate a little.
Symphonie Trader System EA
-
asasa replied Feb 22, 2012Install the indicators to your MT4 installation path. Then apply the template to a chart of your interest. Then apply the EA to the same chart. As long as you don't modify the parameters of indicators and EA, now the chart is working with the same ...
Symphonie Trader System EA
-
asasa replied Feb 22, 2012I checked the indicators I downloaded from post #1 of Evaluator's thread with the current available versions. The only difference is with the Extreme Indicator. I will continue to use the v2, since it plots the extremes history on chart. Not only, ...
Symphonie Trader System EA
-
asasa replied Feb 21, 2012When I first visited post #1 of that thread, those were the indicators available and linked on the first page. I don't know if they have only been renamed or the new ones represent a real update. I will investigate this matter. Because indicators ...
Symphonie Trader System EA
-
asasa replied Feb 21, 2012It is better not to discuss about the EA here, this thread is for the trading system. To answer your question, in principle, even with repainting indicators, the EA operating in real time should see what the trader sees, therefore if the trader is ...
Symphonie Trader System
-
asasa replied Feb 21, 2012For anyone willing to play around with a basic EA based on this system, I have posted it in the platform tech section at this link: url
Symphonie Trader System
-
Symphonie Trader System EA
Started Feb 20, 2012|Platform Tech|73 replies
In this thread I want to release an EA I have written for the Symphonie Trader System from ...
-
asasa replied Nov 3, 2011In any case, multi-threading can be applied only if your routines can be parallelized. Otherwise the only way to go is a faster cpu (as long as your routines cannot be simplified even at code level, difficult to understand from a non-programmer).
quad core multiple CPU's, multiple MT4 sessions, Virtual Machine
-
asasa replied Nov 3, 2011Just an additional hint, if you need fast real-time data processing, tell your IT boy to plug a C/C++ dll directly in your MT4 EA (a simple example is provided by MetaQuotes) and perform all your multi-thread cpu-intensive data processing there. I ...
quad core multiple CPU's, multiple MT4 sessions, Virtual Machine
-
asasa replied Nov 3, 2011MQL4 syntax is a reduced version of C syntax. You should be able to directly use most of your MQL4 routines in your C sources.
quad core multiple CPU's, multiple MT4 sessions, Virtual Machine
-
asasa replied Nov 3, 2011For serious data processing on multi-core cpus, use C/C++ with a well designed multi-thread approach. During simulations my i7 is always at 100% load... Data read from disk (SSD) is the bottleneck in my case.
quad core multiple CPU's, multiple MT4 sessions, Virtual Machine
-
asasa replied Nov 3, 2011I am running 4 virtual machines with different MT4 clients. What are you trying to do? Do you mean you want to perform several independent backtests with the different virtual machines and finally merge the results?
quad core multiple CPU's, multiple MT4 sessions, Virtual Machine