GAPD
Gap Down
Description
An event is generated whenever the open price is
less than the previous close by a percentage P.
Category
Indicator Scans
Parameters
P ( Default: 5
Min: 1 Max: 100 )
Chart Script
LC := REF(C, 1);
Event: (100 * (O / LC) - 100) < -
P;