Close crosses below st

Dear Sir,

I am trying to code following formula but its not working.

Day1 : Close crossesbelow super trend
day 2: close() crossesbelow low/close of day 1.

v1=CLOSE() CrossesBelow ST(MULTI=2.00); v2=CLOSE(); v3=v2 CrossesBelow v2[1];; v3 and v1[1]

 

Hi,

If the second criteria has to occur directly after the first criteria triggers the following script would work:

// Close crosses below Super Trend
V1 = CLOSE() CrossesBelow ST(MULTI=2.00) ;
//Close crosses below previous low
V2 = CLOSE() CrossesBelow LOW(1) ;
//V1 passed yesterday and V2 passed today
V1[1] == 1 and V2