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
Plotting returns for day of week #467603
08/16/17 06:51
08/16/17 06:51
Joined: Feb 2017
Posts: 369
D
Dalla Offline OP
Senior Member
Dalla  Offline OP
Senior Member
D

Joined: Feb 2017
Posts: 369
Was wondering if there is some way to plot returns for day of week, similar to how plotDay can plot returns for hours of the day?

I looked into the code in profile.c and came up with something like this:

Code:
function plotDow(var value,int type)
{
	int periods = 5;
	checkLookBack(periods);
	int n = dow()-1;
	if(n > periods) return;
	plotSeason(n,n,n,value,type);
}


This produces a plot similar to what I want, but I'm not sure the code is correct, especially not the parameters to plotSeason

Last edited by Dalla; 08/16/17 06:51.
Re: Plotting returns for day of week [Re: Dalla] #467647
08/18/17 16:47
08/18/17 16:47
Joined: Jul 2000
Posts: 27,977
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,977
Frankfurt
From how I understand the plotSeason function, this looks ok to me.


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