Gamestudio Links
Zorro Links
Newest Posts
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
Data from CSV not parsed correctly
by EternallyCurious. 04/20/24 21:39
M1 Oversampling
by 11honza11. 04/20/24 20:57
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
folder management functions
by VoroneTZ. 04/17/24 06:52
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, VoroneTZ), 396 guests, and 0 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
What does g->_somevar mean? #486763
10/02/22 12:34
10/02/22 12:34
Joined: Aug 2022
Posts: 12
N
nerdkorea Offline OP
Newbie
nerdkorea  Offline OP
Newbie
N

Joined: Aug 2022
Posts: 12
I see this in the indicators.c file and I'm trying to understand the code. there is for example
Code
f(Color) sprintf(PlotName,"ZigZag%x",Color);

	if(IS(FIRSTRUN)) {
		_HighPrice = Price;
		_LowPrice = Price;
		_LastPrice = Price;
		_LastBar = _HighBar = _LowBar = g->nBar;
		_Dir = 0;
		if(Color) {
			plotGraph(PlotName,0,_LastPrice,LINE,Color);
			plotGraph(PlotName,0,_LastPrice,LINE+END,Color);
		}
		g->vLength = 1;
		return g->vSign = g->vPeak = g->vSlope = 0;
	}


What does this mean? I'm trying to convert the zorro indicator to python code.

Edit: google helped me out. I kind of understand it now except I'm not sure what g->nbar stands for.

Last edited by nerdkorea; 10/02/22 13:44.
Re: What does g->_somevar mean? [Re: nerdkorea] #486765
10/03/22 07:22
10/03/22 07:22
Joined: Jul 2000
Posts: 27,982
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,982
Frankfurt
Most g-> variables are documented, but under slightly different names. Look in the file variables.h. It translates g-> variables to user friendly names that you can look up in the manual.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1