Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (EternallyCurious, howardR), 646 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 5 1 2 3 4 5
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 Offline
Serious User
AndrewAMD  Offline
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: 90
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 90
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 Offline
Serious User
AndrewAMD  Offline
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: 90
7
7th_zorro Offline
Junior Member
7th_zorro  Offline
Junior Member
7

Joined: Oct 2018
Posts: 90
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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,978
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,978
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.
Page 4 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