Referencing Tools within Script

Hello all,

I am trying to reference Alan Hulls Range + Indicator tool from within a search script. Does anyone know if this can be done. Specifically I am searching for bars between his central cord and the low plot.

cheers Evan

 

Hi Evan,

If you type ‘range’ in the script editor you will see the suggestion for Range Indicator is RNGI:

Capture

So your script would be:

CORD1 = RNGI(TYPE=Plus, DEFAULT=Cord);
LOW1 = RNGI(TYPE=Plus, DEFAULT=Low);
CLOSE()>LOW1 and CLOSE()<CORD1

The above in a true/false Watchlist column and Show View shaded areas:

Capture

Hi Darren, Thanks for that. Works well. Cheers Evan.