|
|
|
4 registered members (Volkovstudio, Grant, Quad, 1 invisible),
11,248
guests, and 4
spiders. |
|
Key:
Admin,
Global Mod,
Mod
|
|
|
New Zorro version 1.88
#473863
08/23/18 09:40
08/23/18 09:40
|
Joined: Jul 2000
Posts: 28,110 Frankfurt
jcl
OP

Chief Engineer
|
OP

Chief Engineer
Joined: Jul 2000
Posts: 28,110
Frankfurt
|
A new Zorro version is available: http://opserver.de/down/Zorro_188.exeThis version will be uploaded to the Download page when no bugs are found in the next time. Zorro now supports order flow analysis, COT report analysis, more price sources and cryptocurrency exchanges, and many more new features and improvements. The full list of new features and bugfixes can be found on http://manual.zorro-project.com/new.htm. Please note that the trade format has changed, so you cannot continue old trades with the new software. Please test everything and report any problems here!
|
|
|
Re: New Zorro version 1.88
[Re: jcl]
#473888
08/24/18 19:07
08/24/18 19:07
|
Joined: Apr 2017
Posts: 106
3dgamelight
Member
|
Member
Joined: Apr 2017
Posts: 106
|
I tested Workshop5 and Workshop6 and looks they already started running slow for all cores. I was able to get smaller script that have the problem. It do not only happens with multi core. On the script below with 2 cores the walk 1 and walk 2 runned fast. The walk 3 and walk 4 runned slow. The same happened after disabling multi core. I increased the number of cores and the first walk for all cores runned fast and it did make the walk train fast even for 2 cores and for no multi core. The speed up was preserved after a Zorro restart. Commenting out "while(asset(loop("EUR/USD")))" while keeping "EUR/USD" selected did make this code runs slows. However with my script half cores started running fast and half slow.
function tradeTrend()
{
TimeFrame = 1;
optimize(500, 300, 700);
}
function run()
{
set(PARAMETERS+FACTORS);
NumCores = 0;
BarPeriod = 60;
LookBack = 0;
NumYears = 8;
NumWFOCycles = 16;
//while(asset(loop("EUR/USD")))
while(algo(loop("TR")))
{
tradeTrend();
}
}
|
|
|
|
|
|
|