Gamestudio Links
Zorro Links
Newest Posts
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
Release 2.68 replacement of the .par format
by Martin_HH. 09/23/25 20:48
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 (dBc), 17,435 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
Erasing a datapoint in a plot array #480732
07/05/20 13:04
07/05/20 13:04
Joined: Dec 2019
Posts: 54
ozgur Offline OP
Junior Member
ozgur  Offline OP
Junior Member

Joined: Dec 2019
Posts: 54
I can manipulate past datapoints in a plot using plotData() in a function like below. Now I'd like to erase a past datapoint, what value I should assign to respective element in the plot array?

From log file, "empty" elements (hence not plotted) of a plot array seem to have ~1.7*10^308 (DBL_MAX?) value. Is there a defined macro for this value in lite-C? I tried defining myself but all I've got is an empty chart.

Thanks.

Code
void plotSet(string name, var val, int offset)
{
	if (offset >= 0) { // Only modify the past
		DATA* plotHistory = plotData(name);
		var* plotHistoryData = plotHistory->Data;
		
		if (plotHistoryData) { // If plot data has valid pointer
			int firstBar = plotHistory->start;
			int lastBar = plotHistory->end;
			int curBar = lastBar - offset;
			
			if (curBar > firstBar) { // If target bar is valid plot
				plotHistoryData[curBar] = val;
			}
		}
	}
}

Re: Erasing a datapoint in a plot array [Re: ozgur] #480739
07/06/20 09:51
07/06/20 09:51
Joined: Jul 2000
Posts: 28,022
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 28,022
Frankfurt
Yes, the charting package uses the number 1.7e308 as a "no value" element. But you cannot enter this number directly in a lite-C script. You could copy it from a known plot element with no value.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1