the code used is:
Code:
function run()
{

set(LOGFILE);
assetList("AssetsFix");
StartDate = 2013;
EndDate = 2017;
BarPeriod = 1440;


var Trade = NumOpenLong + NumOpenShort;
vars C = series(priceClose()); 
vars O = series(priceOpen()); 

if((C > O))
	enterLong();

ProfitOpen = 100;

PlotWidth = 1000;
PlotHeight1 = 600;
	
}



Why the assetsList is not considered within backtest but is only considered the cross selected into scroll box?

Last edited by tradingest; 09/04/18 21:49.