Gamestudio Links
Zorro Links
Newest Posts
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
Data from CSV not parsed correctly
by EternallyCurious. 04/25/24 10:20
Trading Journey
by howardR. 04/24/24 20:04
M1 Oversampling
by Petra. 04/24/24 10:34
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Scripts not found
by juergen_wue. 04/20/24 18:51
zorro 64bit command line support
by 7th_zorro. 04/20/24 10:06
StartWeek not working as it should
by jcl. 04/20/24 08:38
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 827 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Mega_Rod, EternallyCurious, howardR, 11honza11, ccorrea
19048 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 5 1 2 3 4 5
New Zorro version 2.35 #482306
01/27/21 09:17
01/27/21 09:17
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Zorro 2.35 is now available:

http://opserver.de/down/Zorro_235.exe

This version will become the official release when no bugs are found in the next time. New features: external optimization libraries, faster backtest, multi-account status script, new broker and data feed plugins. and a lot other new features. The full list can be found on http://manual.zorro-project.com/new.htm.

Please test everything and report any issues here! If you're the first one to find a serious bug of this release candidate, you can get a free Zorro S subscription or support extension. Details on https://manual.zorro-project.com/restrictions.htm.


Re: New Zorro version 2.35 [Re: jcl] #482314
01/27/21 13:07
01/27/21 13:07
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Code
string GetDT240(){
    int h=hour()-hour()%4;
	 printf("\n hour: %d  now: %d",hour(),h);
    return strf("%04d-%02d-%02d %02d:00", year(),month(),day(),h);
}


// --------------------------- Main-----------------------------
function main() {
    
	printf("\n %s",GetDT240()); 
}


returns this output:


test compiling................ ok

hour: 0 now: 0
0000-00-00 00:00

this is the same:
Code
function run() {
        BarPeriod=1;    
	LookBack=0;
	printf("\n %s",GetDT240()); 
	quit("");
}


for correct fce must be:
Code
string GetDT240(){
    int h=hour(NOW)-hour(NOW)%4;
	 printf("\n hour: %d  now: %d",hour(NOW),h);
    return strf("%04d-%02d-%02d %02d:00", year(NOW),month(NOW),day(NOW),h);
}


...manual..

Last edited by Grat; 01/27/21 13:16.
Re: New Zorro version 2.35 [Re: jcl] #482315
01/27/21 13:40
01/27/21 13:40
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Yes: manual.

Re: New Zorro version 2.35 [Re: jcl] #482327
01/28/21 13:16
01/28/21 13:16
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
but I found the seriously bug - not work the CLI command. With "-a USD/CAD" every time run last symbol which I trying.

see the attch. This is screenshot which I start, but run every time the same symbol.

[Linked Image]


Attached Files Snímek obrazovky 2021-01-28 v 14.14.20.pngSnímek obrazovky 2021-01-28 v 14.23.45.png
Last edited by Grat; 01/28/21 13:26.
Re: New Zorro version 2.35 [Re: jcl] #482328
01/28/21 13:37
01/28/21 13:37
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Can you post the begin of the script? Does it use an asset or assetlist function?

Re: New Zorro version 2.35 [Re: jcl] #482329
01/28/21 14:04
01/28/21 14:04
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
with older version is work.
I dont use asset only assetlist:

assetList("Assets4");

How to reproduce:

a) start Zorro client - and start trade with any symbol
b) close / is not neccessary /
c) start client from command line - with other symbol. Client start with last symbol from point a)

Attached Files
Assets4.csv (169 downloads)
Last edited by Grat; 01/28/21 14:09.
Re: New Zorro version 2.35 [Re: jcl] #482354
01/29/21 12:57
01/29/21 12:57
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Thanks. We'll check that and if there's a bug with the -a option, it will be fixed.

Update: We cannot confirm that. All fine so far with -a. So if you can't find the reason of the problem, please contact Support with your script. It could be some other setting. They'll look into it.

Last edited by jcl; 01/29/21 14:27.
Re: New Zorro version 2.35 [Re: jcl] #482359
01/29/21 14:11
01/29/21 14:11
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
I see only some printed dates - what exactly is wrong?

Re: New Zorro version 2.35 [Re: jcl] #482361
01/29/21 14:20
01/29/21 14:20
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Sorry, it's Friday - my fault, I delete this

Re: New Zorro version 2.35 [Re: jcl] #482383
01/31/21 19:55
01/31/21 19:55
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Maybe next bug?

I have Test from 2020/04/01 to today ( last data friday ) and in the report:

Code
Test period         2020-04-01..2021-01-29 (19500 bars), detrended <-- OK
Year Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Total
2020               9   9   7  -1   8  18  -1   8  12   +93


where is year 2021? In the LOG file exist:
Code
[24003: Thu 21-01-28 15:30] 2306 0 274/135  (1.21367)
[24004: Thu 21-01-28 15:45] 2306 0 274/135  (1.21331)
[24005: Thu 21-01-28 16:00] 2306 0 274/135  (1.21223)
[24006: Thu 21-01-28 16:15] 2306 0 274/135  (1.21239)
[24007: Thu 21-01-28 16:30] 2306 0 274/135  (1.21267)
(EUR/USD:total:s) Short 5@1.21227 Entry stop
(EUR/USD:total:s) Entry stop 1.21227 hit by 1.21202 at 16:30:00
(EUR/USD:total:S) Short 5@1.21227 Entry stop
(EUR/USD:total:s) Entry 1.2118 removed (exit)

[24008: Thu 21-01-28 16:45] 2306 0 274/135  (1.21204)
(EUR/USD:total:S) Entry stop 1.21227 hit by 1.21192 at 16:45:00
[EUR/USD:total:S00941] Short 5@1.21214 Risk 42 px at 16:45:00

Re: New Zorro version 2.35 [Re: jcl] #482388
02/01/21 08:51
02/01/21 08:51
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
I think January 2021 was not yet complete by last Friday.

- New version 2.35.1: http://opserver.de/down/Zorro_235.exe

Changes: the "up to date" period of assetHistory() was reduced from 12 hours to half the download resolution. Also some typos in the manual were fixed and the missing SET_VOLTYPE command for IB added.

Re: New Zorro version 2.35 [Re: jcl] #482393
02/01/21 13:57
02/01/21 13:57
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Sorry,

param -a in command line stil not work frown
[Linked Image]

Attached Files command_Line.jpg
Last edited by Grat; 02/01/21 13:58.
Re: New Zorro version 2.35 [Re: jcl] #482394
02/01/21 14:33
02/01/21 14:33
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
And subjective - version 2. 35.1 is a slower like 2.350

Last edited by Grat; 02/01/21 14:33.
Re: New Zorro version 2.35 [Re: jcl] #482396
02/01/21 17:39
02/01/21 17:39
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Nothing changed with speed or with -a. If you think it's a bug, we still need that script.

- New version 2.35.2: http://opserver.de/down/Zorro_235.exe

All reported bugs so far are fixed in this version: The IB plugin did sometimes not return the account balance and a part of the EUR/USD history was missing.

Re: New Zorro version 2.35 [Re: jcl] #482397
02/01/21 18:21
02/01/21 18:21
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
try this:

is a simple:

Code
 zorro -train Workshop5  -a gbp/jpy -c Real54AU
 zorro -train Workshop5  -a aud/jpy -c Real54AU
 zorro -train Workshop5  -a eur/cad -c Real54AU


in Workshop5.c rem line 13
//asset("EUR/USD");

script always run with last opened symbol. Don't use symbol from command line.

[Linked Image]

I use script from wokshop5
Code
// Workshop 5: Counter trend trading, optimized ////////////////

function run()
{
	set(PARAMETERS);  // generate and use optimized parameters
	BarPeriod = 240;	// 4 hour bars
	LookBack = 500;
	StartDate = 2005;
	EndDate = 2017; 	// fixed simulation period
	NumWFOCycles = 10; // activate WFO
	NumCores = -2;	// multicore training
	
	//asset("EUR/USD");
	
	if(ReTrain) {
		printf("\nRetraining....");
		UpdateDays = -1;	// update price data from the server 
		SelectWFO = -1;	// select the last cycle for re-optimization
	}
		
// calculate the buy/sell signal
	vars Price = series(price());
	vars Filtered = series(BandPass(Price,optimize(30,20,40),0.5));
	vars Signal = series(FisherN(Filtered,500));
	var Threshold = optimize(1,0.5,1.5,0.1);

// buy and sell
	Stop = optimize(4,2,10) * ATR(100);
	Trail = 4*ATR(100);

	if(crossUnder(Signal,-Threshold))
		enterLong(); 
	else if(crossOver(Signal,Threshold))
		enterShort();

// plot signals and thresholds
	plot("Filtered",Filtered,NEW,BLUE);
	plot("Signal",Signal,NEW,RED);
	plot("Threshold1",1,0,BLACK);
	plot("Threshold2",-1,0,BLACK);
	set(LOGFILE,PLOTNOW); 
} 

Attached Files Snímek obrazovky 2021-02-01 v 19.19.49.png
Last edited by Grat; 02/01/21 18:24.
Re: New Zorro version 2.35 [Re: jcl] #482398
02/01/21 19:15
02/01/21 19:15
Joined: Feb 2017
Posts: 1,725
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,725
Chicago
What happens if you change gbp/jpy to GBP/JPY?

Re: New Zorro version 2.35 [Re: jcl] #482399
02/01/21 19:41
02/01/21 19:41
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
every time is symbol from last opened panel. I trying many time. From version 2.35 Zorro don't read symbol from command line. Older version ( also beta - may by I mis any beta version, not try all ) without problem.

Re: New Zorro version 2.35 [Re: jcl] #482401
02/01/21 20:06
02/01/21 20:06
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
Ok, i found, where is BUG - I waste one day frown

Code
Zorro -train Workshop5.c -a eur/usd


working without problem

but
Code
Zorro -train Workshop5.c -a eur/usd -c accountname


make problem

Re: New Zorro version 2.35 [Re: jcl] #482408
02/02/21 10:20
02/02/21 10:20
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Ah, this explains it then. Selecting a new account will also select its asset list and thus probably purge the asset selection of the previous list.

I understand that this is unwanted behavior. We'll fix that.

Re: New Zorro version 2.35 [Re: jcl] #482427
02/04/21 11:27
02/04/21 11:27
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
still is no new version?

Re: New Zorro version 2.35 [Re: jcl] #482429
02/04/21 12:44
02/04/21 12:44
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Yes, there will be a new version soon.

Re: New Zorro version 2.35 [Re: jcl] #482431
02/04/21 15:13
02/04/21 15:13
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
- New version 2.35.4: http://opserver.de/down/Zorro_235.exe

Changes: the -a option now also works in combination with -c, and BR_SLEEP has no effect anymore on historical prices.

Re: New Zorro version 2.35 [Re: jcl] #482455
02/08/21 19:08
02/08/21 19:08
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
May be I found other bug.

1. I have Zorro S
2. I run script in TRADEMODE - with symbol GBPJPY
3. I try other script in TRAIN mode the same symbol. Time to time is problem with assethistory ( see picture )

Attached Files gbp.jpg
Last edited by Grat; 02/08/21 19:08.
Re: New Zorro version 2.35 [Re: jcl] #482461
02/09/21 12:49
02/09/21 12:49
Joined: Feb 2015
Posts: 652
Milano, Italy
M
MatPed Offline
User
MatPed  Offline
User
M

Joined: Feb 2015
Posts: 652
Milano, Italy
Hi,
I Have set a different HistoryFolder, StreategyFolder. Zorro use the z.ini file in the original History folder. not the one stored in the new strategy folder. I do not know if it is "by-design" or a bug.

I guess that having a fully customizable folders structure (include, AssetsDir, log, strategy,..) and possible separate directories for Assets file and z systems would be a nice add on.

Ciao

Last edited by MatPed; 02/09/21 12:50.
Re: New Zorro version 2.35 [Re: jcl] #482466
02/10/21 05:59
02/10/21 05:59
Joined: Oct 2018
Posts: 93
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 93
I agree It would better separate folder for account and asset csv file.

Re: New Zorro version 2.35 [Re: jcl] #482468
02/10/21 11:17
02/10/21 11:17
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
How to fix the crash in the run function is described here: https://manual.zorro-project.com/trouble.htm

HistoryFolder sets the history folder, not the z.ini folder.

You can have the asset.csv files for your scripts in any folder. For this just add the path to the file name in assetHistory(). You can store script assigned paths in some global file.

Re: New Zorro version 2.35 [Re: jcl] #482470
02/10/21 12:05
02/10/21 12:05
Joined: Feb 2015
Posts: 652
Milano, Italy
M
MatPed Offline
User
MatPed  Offline
User
M

Joined: Feb 2015
Posts: 652
Milano, Italy
Originally Posted by jcl


HistoryFolder sets the history folder, not the z.ini folder.



Naturally. I have reported that the changes have been done only on the settings of HistoryFolder and StreategyFolder.
Z systems ( I have tested the z9) should read the z.ini in the folder set with the StrategyFolder, not the standard one.

Originally Posted by jcl


You can have the asset.csv files for your scripts in any folder. For this just add the path to the file name in assetHistory(). You can store script assigned paths in some global file.



Correct, but if you have multiple PC and a cloud reposition this may lead to maintain several version of the same script because the shared directory may not correspond at the same path in different PC.
Having a Zorro's directory structure fully customizable allow to store all the settings in the ZorroFix.ini and forget it. Not a must have, but a nice to have

Re: New Zorro version 2.35 [Re: jcl] #482497
02/15/21 11:25
02/15/21 11:25
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
It makes sense for the Z systems to read their .ini files from the same folder they are located in - I'll put this on the list of future Z system features.

- New version 2.35.6: http://opserver.de/down/Zorro_235.exe

Changes: HTTP requests now support redirection, which will overcome the issue of the recently changed account command of the Oanda API.

Re: New Zorro version 2.35 [Re: jcl] #482508
02/16/21 06:37
02/16/21 06:37
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
I don't understand. Now is possible use someone like this:

script: myBest.c with myBest.ini, where I can use my individual settings for this script?

Re: New Zorro version 2.35 [Re: jcl] #482511
02/16/21 18:15
02/16/21 18:15
Joined: Oct 2018
Posts: 93
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 93
TickTime and tick() does not work in trade mode.

Re: New Zorro version 2.35 [Re: 7th_zorro] #482512
02/16/21 19:05
02/16/21 19:05
Joined: Feb 2017
Posts: 1,725
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,725
Chicago
Originally Posted by 7th_zorro
TickTime and tick() does not work in trade mode.

Works for me.

Re: New Zorro version 2.35 [Re: jcl] #482513
02/16/21 20:06
02/16/21 20:06
Joined: Oct 2018
Posts: 93
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 93
Can you run tick() function in 10ms frequency?

BarPeriod = 1;
TickTime = -10;

It doesn't work (even for a one asset).

Code
function tick()
{
	if(!is(LOOKBACK))
		printf(".");
}
function run() 
{
	set(TICKS);
	BarPeriod = 1;
	TickTime = -10;
	StartDate = NOW;
	
}

Last edited by 7th_zorro; 02/16/21 20:34.
Re: New Zorro version 2.35 [Re: jcl] #482514
02/16/21 21:10
02/16/21 21:10
Joined: Feb 2017
Posts: 1,725
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,725
Chicago
Yes. The attached script works just fine in the release candidate. Also attached is the log.

Attached Files
TradeTest_DEBUG1.c (167 downloads)
TradeTest_DEBUG1_real.log (163 downloads)
Re: New Zorro version 2.35 [Re: AndrewAMD] #482515
02/17/21 04:47
02/17/21 04:47
Joined: Oct 2018
Posts: 93
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 93
I found brokerCommand GET_MAXREQUESTS limits tick() function call.

Is this a bug?


Last edited by 7th_zorro; 02/17/21 05:07.
Re: New Zorro version 2.35 [Re: jcl] #482518
02/17/21 13:09
02/17/21 13:09
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
No. Obviously the time between ticks cannot be shorter than a broker API request.

Re: New Zorro version 2.35 [Re: jcl] #482543
02/21/21 20:47
02/21/21 20:47
Joined: Feb 2018
Posts: 25
1
1ND1G0 Offline
Newbie
1ND1G0  Offline
Newbie
1

Joined: Feb 2018
Posts: 25
Just noticed that Zorro was flagged as malware on a system scan - I don't believe I ever saw this notification with 2.30 however I now have 2.35 installed so wonder if something in this area has changed - seems there are also some other anti-virus programs that flag this too?

Attached Files 2021-02-21 20_42_43-Malwarebytes Free  4.3.0.png2021-02-21 20_44_01-VirusTotal - Microsoft​ Edge.png
Re: New Zorro version 2.35 [Re: jcl] #482557
02/23/21 17:56
02/23/21 17:56
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
In this area nothing has changed. It happens all the time that a program gets flagged.

If in doubt, check with Microsoft defender - it's relatively reliable and has relatively few false alarms. For being on the safe side, run a malware scan. Not that your PC was really infected and has then infected your Zorro copy.

Re: New Zorro version 2.35 [Re: jcl] #482559
02/24/21 14:40
02/24/21 14:40
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
- New version 2.35.7: http://opserver.de/down/Zorro_235.exe

Fixed: The options multiplier was negative when set from the asset list.

Re: New Zorro version 2.35 [Re: jcl] #482578
03/01/21 16:12
03/01/21 16:12
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Since no new problems were reported so far, 2.35 now became the official release and is available on the download page.

Re: New Zorro version 2.35 [Re: jcl] #482579
03/01/21 17:57
03/01/21 17:57
Joined: Feb 2015
Posts: 652
Milano, Italy
M
MatPed Offline
User
MatPed  Offline
User
M

Joined: Feb 2015
Posts: 652
Milano, Italy
It seems that oversampling does not work in 2.35.7
Added NumSampleCycles=3; to workshop 6 and nothing happen in training (same training time) and test run are equal.
Same behavior with different script

Downgraded to previous stable version and it works as expected.
Ciao

Last edited by MatPed; 03/01/21 18:03.
Re: New Zorro version 2.35 [Re: jcl] #482582
03/02/21 09:38
03/02/21 09:38
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Confirmed - will be fixed.

Update: Sample cycles should work with the latest version 2.35.8.

Re: New Zorro version 2.35 [Re: jcl] #482614
03/06/21 21:46
03/06/21 21:46
Joined: Oct 2018
Posts: 93
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 93
Result button reset the chart time line to the end.

When I change asset int the combo box and push result button, the chart time line moved to the end.

Can chart time line remains the same even if the asset combo box changed?

Re: New Zorro version 2.35 [Re: jcl] #482624
03/08/21 17:17
03/08/21 17:17
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
It probably can, but not anymore for this version.

Page 1 of 5 1 2 3 4 5

Moderated by  Petra 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1