AIQ is a part of Track Data Corporation (NASD symbol TRAC) www.trackdata.com


ADX



EDS


 

 

Back to Basic Indicator Strategies

 


 

ADX increasing and above the 25 level

! ADX increasing and above the 25 level

ADXup if Slope([adx],5) > 0 and not bad5day.
badadx if [adx]<25. bad5day if ScanAny(badadx,5).

Return to Top of Page

ADX decreasing

! ADX decreasing

ADXdown if Slope([adx],5) < 0.

Return to Top of Page

ADX trend in place and DIRMOV down

! ADX trend in place and DIRMOV down

badadx if [adx] < 25.
bad5day if ScanAny(badadx,5).
ADXup if Slope([adx],5) > 0 and not bad5day.
DIRMOVDOWN if [DirMov]<0.

ADXupDirMovdn IF ADXup and DIRMOVDOWN.

Return to Top of Page

ADX trend in place and DIRMOV up

! ADX trend in place and DIRMOV up
badadx if [adx]<25.
bad5day if ScanAny(badadx,5).
ADXup if Slope([adx],5) > 0 and not bad5day.
DIRMOVup if [DirMov]>0.

ADXupDIRMOVup IF ADXUP AND DIRMOVUP.


Return to Top of Page

ADX trend in place and ADX rate up

! ADX trend in place. ADX rate up

ADXup if Slope([adx],5) > 0 and not bad5day.
badadx if [adx]<25. bad5day if ScanAny(badadx,5).

ADXRATEup if ADXUP and [ADX RATE]>0 and slope([ADX RATE],5)>0.


Return to Top of Page

ADX greater than 30 and DirMov greater than 0

! ADX greater than 30 and DirMov greater than 0.

GoodAdx if [ADX] >= 30 and [DirMov] > 0.


Return to Top of Page