Gamestudio Links
Zorro Links
Newest Posts
Blobsculptor tools and objects download here
by NeoDumont. 03/28/24 03:01
Issue with Multi-Core WFO Training
by aliswee. 03/24/24 20:20
Why Zorro supports up to 72 cores?
by Edgar_Herrera. 03/23/24 21:41
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 945 guests, and 8 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 3 of 4 1 2 3 4
Re: New Zorro version 2.15 [Re: jcl] #477608
07/15/19 08:10
07/15/19 08:10
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Does it happen with a special script, or with all scripts? If with a special script, can you post it?

Re: New Zorro version 2.15 [Re: jcl] #477609
07/15/19 16:10
07/15/19 16:10
Joined: Jul 2019
Posts: 2
B
bjomu Offline
Guest
bjomu  Offline
Guest
B

Joined: Jul 2019
Posts: 2
It happens with any script, which plots an indicator or other data below the price curve. At least for me it does. An example script, as already said is Workshop 4.

Re: New Zorro version 2.15 [Re: bjomu] #477610
07/15/19 21:16
07/15/19 21:16
Joined: Sep 2017
Posts: 5
Peeyotch Offline
Newbie
Peeyotch  Offline
Newbie

Joined: Sep 2017
Posts: 5
I see the same behavior. Selecting Workshop4 and hitting "Test" results in a chart window with the MMI plot mostly cut off.

Re: New Zorro version 2.15 [Re: jcl] #477612
07/16/19 08:42
07/16/19 08:42
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Thanks, we'll look into that. It seems to happen only on some PCs.

Update: We found the problem. It should not happen with the latest version, 2.15.3. The download link:

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

This is now the official release.

Last edited by jcl; 07/16/19 14:44.
Re: New Zorro version 2.15 [Re: jcl] #477619
07/16/19 18:44
07/16/19 18:44
Joined: Sep 2017
Posts: 5
Peeyotch Offline
Newbie
Peeyotch  Offline
Newbie

Joined: Sep 2017
Posts: 5
Looks like it's fixed for me. Thanks!

Re: New Zorro version 2.15 [Re: jcl] #477620
07/16/19 21:05
07/16/19 21:05
Joined: May 2015
Posts: 390
Czech Republic
G
Grat Offline
Senior Member
Grat  Offline
Senior Member
G

Joined: May 2015
Posts: 390
Czech Republic
So,

I dont know, if is a problem with 2.15 but:

Code
function run(){
  LookBack = 1;
  BarPeriod = 15;
  string cOutput=strf("\nUnix: %d TimeDate: %s  StrDate: %s",utm(wdate(0)),datetime(),strdate("%Y-%m-%d %H:%M", wdate(0)) );
  set(STEPWISE);
  printf(cOutput);
}


have output:
Code
Unix: 1563310862 TimeDate: 0000-00-00 00:00  StrDate: 2019-07-16 21:01
Test: test1 EUR/USD 2014..2019

[1: Thu 14-01-02 05:30] (1.37495)
Unix: 1388640599 TimeDate: 2014-01-02 05:30  StrDate: 2014-01-02 05:30
Error 047: No bars to plot
[2: Thu 14-01-02 05:45] (1.37528)
Unix: 1388641499 TimeDate: 2014-01-02 05:45  StrDate: 2014-01-02 05:45
[3: Thu 14-01-02 06:00] (1.37576)
Unix: 1388642399 TimeDate: 2014-01-02 06:00  StrDate: 2014-01-02 06:00
[4: Thu 14-01-02 06:15] (1.37547)
Unix: 1388643299 TimeDate: 2014-01-02 06:15  StrDate: 2014-01-02 06:15


unixtime is less by -1

workaround:
string cOutput=strf("\nUnix: %d TimeDate: %s StrDate: %s",utm(wdate(0))+1,datetime(),strdate("%Y-%m-%d %H:%M", wdate(0)) );


Last edited by Grat; 07/16/19 21:06.
Re: New Zorro version 2.15 [Re: jcl] #477621
07/17/19 12:21
07/17/19 12:21
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
This is caused by data type conversion: DATE is a double float and the unix time is an integer. The correct fix would be rounding to the next full second:

utm(wdate(0)+0.5/(1440.*60.))

I've put a notice to the developers for doing that on the next occasion. It is not related to 2.15.

Re: New Zorro version 2.15 [Re: jcl] #477686
07/21/19 18:10
07/21/19 18:10
Joined: Jul 2019
Posts: 2
B
bjomu Offline
Guest
bjomu  Offline
Guest
B

Joined: Jul 2019
Posts: 2
What I do miss a little bit with 2.15 is the Zoom Out function in the Chart viewer of previous versions. Now I can always only click on "Total" to see the entire chart again. Makes navigating large charts more cumbersome.
I have attached two pictures to show the difference.
Are there any plans of allowing to gradually zoom out again in the future?

Attached Files chartviewer.pngchartviewer215.png
Re: New Zorro version 2.15 [Re: jcl] #477694
07/22/19 05:38
07/22/19 05:38
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Nothing has changed with zooming. Only the text on the button.

Re: New Zorro version 2.15 [Re: jcl] #477761
07/26/19 19:16
07/26/19 19: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
edit: is OK, bug is not in Zorro but in my script frown

I have new problem with Zorro 2.15.0 S. If running on the WIN server 2012 I see this ( picture ). First instance is OK, but If start second and more is a very slow.

[Linked Image]



Attached Files Screenshot_170.png
Last edited by Grat; 08/02/19 14:55.
Page 3 of 4 1 2 3 4

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