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
1 registered members (AndrewAMD), 600 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 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,978
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

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