! Volume Filters
! Eliminates stocks with problems with volume and makes sure there
is plenty of
! volume to trade. Looks for no zero volume today, no large volume
spike (1000 times
! greater than normal) and average volume is greater than 20000
(200 in the rule)
VolumeNot0 if [Volume] > 0.
VolumeNot1000x if [Volume] < [Volume ESA] * 1000.
EnoughVol if [Volume ESA] > 10000.
VolumeOk if VolumeNot0 and VolumeNot1000x and EnoughVol.
VolumeNot0 if [Volume] > 0.
VolumeNot1000x if [Volume] < [Volume ESA] * 1000.
EnoughVol if [Volume ESA] > 200.
VolumeOk if VolumeNot0 and VolumeNot1000x and EnoughVol.
!!Price Filters!!
OKTrade if [close] > 2.
NotTooVolital if [Volatility] < [Volatility MA] * 1.5 and [Volatility]
< 80.
PriceOk if OKTrade and NotTooVolital.