Volume preceding advance

troyresearch

Active member
Messages
132
Likes
0
Had a nice run with CED last week, buying in on the back of successive days of increasing buy volume, accompanied by limited price movement - only to then be followed by a decent 10% upwards explosion.

Any AIQ users out there who think they might be able to help me apply some EDS code to this?

All the best,

Troy
 
Try this as a basis:

vol1 if val([volume],1)>val([volume esa],1)*2.0.
vol2 if [volume]>[volume esa]*2.0.
vol3 if [volume]>val([volume],1).
filter if [close]>50 and [volume]>100.
select if vol1 and vol2 and vol3 and filter.

This is NOT very good- it selects CED on 32/04, but the other selections need a further look.......
 
Top