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
5 registered members (Nymphodora, AndrewAMD, TipmyPip, Quad, Imhotep), 847 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 4 1 2 3 4
Re: Blame the manual [Re: jcl] #458561
03/20/16 23:02
03/20/16 23:02
Joined: Dec 2013
Posts: 568
Fuerth, DE
Sphin Offline
User
Sphin  Offline
User

Joined: Dec 2013
Posts: 568
Fuerth, DE
http://www.zorro-trader.com/manual/en/rbridge.htm:

Rd("rout",vecOut,5); // read it back

Wouldn't it mean Rv instead of Rd?

Re: Blame the manual [Re: Sphin] #458603
03/22/16 04:09
03/22/16 04:09
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
The manual's Data Export / Import page says Assets.csv "is updated on every connection to the broker with the current parameters of all assets contained in the script". However, it appears Assets.csv is in fact not updated on connection to the broker, but rather when the script ends. For example, if you Trade a script, Assets.csv appears to be updated only when you Stop.

Re: Blame the manual [Re: DdlV] #458637
03/22/16 16:19
03/22/16 16:19
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Thanks, the Rd was indeed wrong and I'll also make the updating more clear.

Re: Blame the manual [Re: jcl] #459381
05/12/16 21:24
05/12/16 21:24
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Hi jcl. This is not the manual per se, but the Download page: The 2002-2008 History is needed for Z7, at least as of 1.44.

Re: Blame the manual [Re: DdlV] #459431
05/18/16 12:30
05/18/16 12:30
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Hi jcl. The COMMA flag is missing from the Mode flags page.

Re: Blame the manual [Re: DdlV] #459437
05/19/16 11:13
05/19/16 11:13
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
Not missing, but removed since it's a Zorro.ini parameter.

Re: Blame the manual [Re: jcl] #459438
05/19/16 13:29
05/19/16 13:29
Joined: Jun 2013
Posts: 1,609
D
DdlV Offline
Serious User
DdlV  Offline
Serious User
D

Joined: Jun 2013
Posts: 1,609
Then The Z Systems page should be updated to include it & the link on the Data Export / Import page should be updated. laugh

Re: Blame the manual [Re: DdlV] #462175
09/12/16 22:07
09/12/16 22:07
Joined: Aug 2016
Posts: 61
D
dr_panther Offline
Junior Member
dr_panther  Offline
Junior Member
D

Joined: Aug 2016
Posts: 61
The function dow states the days of the week are like that
Day of week of the given bar, MONDAY (1), TUESDAY (2) ... SUNDAY (7).

But actually the weeks starts with
SUNDAY(1), MONDAY(2)....

Code:
#include <profile.c>
 
function run()
{
	 
	set(LOGFILE);
	BarPeriod =5;
 
	static int cur_day = 0  ;
 	 
 	if ( ldow(ET,0) != cur_day){ 
	    cur_day = ldow(ET,0);
	 
 		print (TO_LOG,"ldow() %d", ldow(ET,0));
  	} 
}


Last edited by dr_panther; 09/12/16 22:15.
Re: Blame the manual [Re: dr_panther] #462194
09/13/16 14:24
09/13/16 14:24
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
This was in fact not a wrong manual, but a wrong time zone - the same bug that you already had in the dayHigh calculation. It is supposedly fixed in the latest Zorro 1.50.4.

Re: Blame the manual [Re: jcl] #462199
09/13/16 15:27
09/13/16 15:27
Joined: Aug 2016
Posts: 61
D
dr_panther Offline
Junior Member
dr_panther  Offline
Junior Member
D

Joined: Aug 2016
Posts: 61
that is correct now, thank you.

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