Timesincesignal function on scanning manager

Hi Team,

I want to create a scan that occured in last 90 days or more.
But is seems not work. Please take a look and correct me.
Thank you very much.

A1 = Volume()[2] >3000000 and Volume()[2] >HIGHESTHIGH(Volume()[2], BARS=20) and
(Volume ()/ Volume()[2] ) < 0.5;

B1 = CLOSE() > HIGHESTHIGH(high(OFFSET=2),BARS=60, INSIDEBAR=True, INCBAR=True) *0.7 and
CLOSE(OFFSET=1) > HIGHESTHIGH(high(OFFSET=2),BARS=60, INSIDEBAR=True, INCBAR=True) *0.7 and
CLOSE() > CLOSE(2) *0.7 and LOW() > (CLOSE(2) + LOW(2)) /2 and CLOSE(2)> CLOSE(3) *1.1;

C1 = A1 and B1;

TIMESINCESIGNAL(C1) < 90

Hi Donald,

Remove the TIMESINCESIGNAL function and change the Date Range to Last Quarter in the scan set up for it to signal any true result for C1 over that time period.

1 Like