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
0 registered members (), 18,175 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
Error 060 Out of memory #483027
04/25/21 07:15
04/25/21 07:15
Joined: Oct 2017
Posts: 56
Munich
K
kalmar Offline OP
Junior Member
kalmar  Offline OP
Junior Member
K

Joined: Oct 2017
Posts: 56
Munich
Hi all,

I have 10 years of minute data for 600 tickers. I was trying to look for gaps in quotes with a script below. But as expected I get the "Error 060: Out of memory". I wonder if it is possible to clean memory in the script, e.g. after 10 symbols are done? I was of course reducing # of assets and/or reducing period (e.g. 100 symbols for 2 years works), but I would like to avoid this manual work. Thank you.

Code
function run()
{
    StartDate = 20100101;
    EndDate = 20201231;

	BarPeriod = 1;	
	LookBack = 0;

	string filename = "Stocks_gaps.csv"; 

	if(is(INITRUN)) // specifying the header in the first run
	{
		char header[500];
		sprintf(header, "Asset, UTCDate, DoW, Time, Gap_Minutes, \n");
		file_delete(filename);
		file_append(filename, header);
	}

    assetList("AssetsMyStonks100.csv");
    History = "*_us_stock.t6"; 	
    Detrend = NOPRICE; // prevents that asset and price data is checked and outliers are removed
    while(asset(loop(Assets)))
            {	
            var tdiff = (wdate() - wdate(1));	// time difference in days of the last consecutive bars
            if(tdiff > (BarPeriod/1440)*2 && dow() == dow(1)) 
                    {	
                        char line[500];
                        sprintf(line, "%s, %d-%02d-%02d, %i, %02d:%02d, %i, \n", 
                                    Asset, year(), month(), day(), dow(), hour(), minute(),minutesAgo(1));
                        file_append(filename, line);
                    }
            }	
}

Re: Error 060 Out of memory [Re: kalmar] #483060
04/29/21 06:23
04/29/21 06:23
Joined: Apr 2008
Posts: 594
Austria
Petra Offline
Support
Petra  Offline
Support

Joined: Apr 2008
Posts: 594
Austria
Use this command: set(CACHE). Its still undocumented but works for me so far.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1