Can you run tick() function in 10ms frequency?

BarPeriod = 1;
TickTime = -10;

It doesn't work (even for a one asset).

Code
function tick()
{
	if(!is(LOOKBACK))
		printf(".");
}
function run() 
{
	set(TICKS);
	BarPeriod = 1;
	TickTime = -10;
	StartDate = NOW;
	
}

Last edited by 7th_zorro; 02/16/21 20:34.