Market
Thrust
!Market Thrust Indicator (The power
of the move)
Thrust is (([Dec issues] * [Dec volume]) - ([Adv issues] * [Adv
volume]))/1000000.00.
!!!Example stock DJIA on 09/07/2001
Return to Top of Page
MktDnDirMovDn
! Market Er Down 95 or greater, with
DirMov less than zero, make sure to choose markets
! under File and Properties.
ErDown if [er down] >=95.
DirMovdn if [DirMov] < 0.
MktdnMktDirMovdn if ErDown and DirMovdn.
!!!Example stock DJIA on 04/14/2000
Return to Top of Page
MktdnMACDdn
! Market Er Down 95 or greater, with
MACD crossover, make sure to choose markets
! under File and Properties.
ErDown if [er down] >=95.
MACDXover if Val([MACD],1) > Val([MACD Sig Line],1) and [MACD] <
[MACD Sig Line].
MktdnMACDdn if ErDown and MACDXover.
!!!Example stock DJIA on 06/16/2000
Return to Top of Page
MktDnPhaseDn
! Market Er down 95
or greater, with decreasing Phase, make sure to choose markets
! under File and Properties.
ErDown if [er down] >=95.
PhaseDown if Val([phase], 1) > [phase].
MktDnPhaseDn if ErDown and PhaseDown.
!!!Example stock DJIA on 04/14/2000
Return to Top of Page
MkthrustOsc
!Market Thrust Oscillator Indicator.
ThrustOsc is ([Dec Issues]*[Dec Volume])-([Adv Issues]*[Adv Volume]).
OSC is ThrustOsc/(([Dec Issues]*[Dec Volume])+([Adv Issues]*[Adv
Volume]))*100.00.
!!!Example stock DJIA on 09/07/2001
Return to Top of Page
MktUpDirMovUp
! Market Er up 95 or greater, with
DIrMov above zero, make sure to choose markets
! under File and Properties.
ErUp if [er up] >=95.
DirMovUp if [DirMov] > 0.
MktupDirMovup if ErUp and DirMovUp.
!!!Example stock DJIA on 04/20/2000
Return to Top of Page
MKtupERPhaseUp
! Market Er up 95 or greater, with
increasing Phase, make sure to choose markets
! under File and Properties.
ErUp if [er up] >=95.
PhaseUp if Val([phase], 1) < [phase].
MktupPhaseup if ErUp and PhaseUp.
!!!Example stock DJIA on 02/15/2000
Return to Top of Page
MktupMACDup
! Market Er up 95 or greater, with
MACD crossover, make sure to choose markets
! under File and Properties.
ErUp if [er up] >=95.
MACDXover if Val([MACD],1) < Val([MACD Sig Line],1) and [MACD]
> [MACD Sig Line].
MktupMACDup if ErUp and MACDXover.
!!!Example stock DJIA on 03/10/2000
Return to Top of Page
Return to Top of Page
|