Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
1 registered members (TipmyPip), 18,619 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Display more indicators #475653
12/31/18 16:39
12/31/18 16:39
Joined: Feb 2018
Posts: 236
Italy
tradingest Offline OP
Member
tradingest  Offline OP
Member

Joined: Feb 2018
Posts: 236
Italy
Hi guys,

how I can view more indicator in a single windows?
In the code below I can view only CCI but I want also display SMA.

Code:
function run()
{	
	set(PLOTNOW);
	StartDate = 20150101;
	EndDate = 2018;
	BarPeriod = 1440;
	PlotScale = 8;	
	asset("EUR/USD");
	plot("SMA",SMA(series(priceClose()),20),0,BLACK);
	plot("CCI",CCI(21),0,BLACK);
	
}



Thanks

Re: Display more indicators [Re: tradingest] #475657
01/01/19 04:14
01/01/19 04:14
Joined: Aug 2018
Posts: 101
O
OptimusPrime Offline
Member
OptimusPrime  Offline
Member
O

Joined: Aug 2018
Posts: 101
Hi Tradingest:

You need to use , NEW, instead of ,0, if you want another row of indicators. If you use ,0, they will all be in the same row.

Example:

plot("SMA",SMA(series(priceClose()),20),NEW,BLACK);

Last edited by OptimusPrime; 01/01/19 04:15.

Thanks so much,

OptimusPrime

Re: Display more indicators [Re: OptimusPrime] #475660
01/01/19 20:04
01/01/19 20:04
Joined: Feb 2018
Posts: 236
Italy
tradingest Offline OP
Member
tradingest  Offline OP
Member

Joined: Feb 2018
Posts: 236
Italy
Thanks Optimus

Very kind


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1