|
Three White Soldiers
! Three White Soldiers
Soldier1 if Val([low],2) = Val([open],2) and Val([close],2) > Val([open],2).
Soldier2 if Val([low],1)= Val([open],1) and Val([Close],1) > Val([open],1).
Soldier3 if [low] = [open] and [close] > [open].
ThreeSoldiers if Soldier1 and Soldier2 and Soldier3.
!!!Example stock SABB on 06/01/2001
Return to Top of Page
3 Black Crows
! 3 Black Crows
Crow1 if Val([open],2) >= Val([close],3)and Val([close],2)< Val([close],3)
and
Val([open],2) > Val([close],2).
Crow2 if Val([open],1) >= Val([close],2) and Val([close],1)< Val([close],2)
and
Val([open],1) > Val([close],1).
Crow3 if [open] >=Val([close],1) and [close]< Val([close],1) and
[open] > [close].
Trend if [close]>[it esa].
ThreeCrows if Crow1 and Crow2 and Crow3 and trend.
!!! Example stock LTR 6/1/2001
Return to Top of Page
Black Closing Bozu
! Black Closing Bozu
ClosingBozu if [open] > [close] and [high] > [open] and [low] =
[close].
!!!Example stock BAT on 06/01/2001
Return to Top of Page
Black Marubozu
! Black Marubozu
Mar if [open] = [high] and [close] = [low].
!!!Example stock FARM on 06/01/2001
Return to Top of Page
Black Paper Umbrella
! Black Paper Umbrella
BlkPaper if [high] = [open].
!!!Example stock GAS on 06/01/2001
Return to Top of Page
PiercingPattern
DTrend if countof([close] < val([close],1),4,1)
> 3.
DCandle if val([close],1) < val([open],1).
WCandle if [open] < [close].
Bounce if [open] < val([low],1) and [close] > ([high] - [low])/2.
PiercingPattern if DTrend and DCandle and WCandle and Bounce.
Return to Top of Page
Candlesticks - Hammer Pattern
! Candlesticks - Hammer pattern.
Hammer if [open] - [low] > 2*([close] - [open]) and
[open] > ([high] + [low])/2 and [close] > [open] and
[high] - [close] < ([high] - [low])/5 and [close] < [LT MA] and
[close] < [IT MA] and
[volume] > [volume ESA].
!!!Example stock ABN on 06/01/2001
Return to Top of Page
Belthold Pattern
! Candlesticks - Belthold pattern
Belthold if [open] = [low] and [high] - [close] < ([high] - [open])/4
and
[close] > [open] and [high] - [low] > val([high],1) - val([low],1)
and
[close] > 10 and [close] < [lt ma] and [close] < [it ma].
!!!Example stock CCR on 06/01/2001
Return to Top of Page
Bearish Engulfing Pattern
! Candlesticks - Bearish Engulfing Pattern marks
the end
! of a discernible uptrend. A solid Real Body follows
! outlined Real Body and solid Real Body engulfs the prior day
Engulfbearish if val([open],1)< val([close],1) and [close] < [open]
and
val([open],1)> [close] and val([close],1) < [open].
!!!Example stock GAS on 06/01/2001
Return to Top of Page
Bullish Engulfing Pattern
! Candlesticks - Bullish Engulfing Pattern marks
the end
! of a discernible downtrend. The pattern consists of
! a solid Real Body followed by an outlined Real Body that
! engulfs the prior day's solid.
Engulfbullish if val([open],1) > val([close],1) and [close] > [open]
and
val([open],1) < [close] and val([close],1) > [open].
!!!Example stock FORTY on 06/01/2001
Return to Top of Page
Dark-Cloud Cover
! Dark-Cloud Cover
DarkCloud if Val([close],1) - Val([open],1) > 2.0 and
([open] - [close]) > 1.2 and [open] > Val([high],1).
!!!Example stock AMN on 06/05/2001
Return to Top of Page
Doji Star
! Doji Star
DojiStar if val([open], 1) = val([close], 1) and Val([open], 1)
< Val([low], 2).
!!!Example stock FUND on 06/01/2001
Return to Top of Page
Tonbo or Dragonfly Doji
! Tonbo or Dragonfly Doji. A turning period in the
market
TonValue is [High] - ([High] - [Low]) * 0.02.
BoValue is [High] - ([High] - [Low]) * 0.08.
Intop20 if [Open] >= TonValue and [open] <= [high].
Inlow20 if [Close] >= BoValue and [Close] <= [high].
DragonFly if Intop20 and Inlow20.
!!!Example stock DUCK on 06/01/2001
Return to Top of Page
Evening Doji Star
! Evening Doji Star
WhiteCandleStick if Val([close], 2) > Val([open], 2).
DojiStar if Val([open], 1) = Val([close], 1) and Val([open], 1)
> Val([close], 2).
RealBlackBody if [open] > [close] and [open] < Val([close], 1) and
[close] > Val([open], 2).
EveningDojiStar if WhiteCandleStick and DojiStar and RealBlackBody.
!!!Example stock CDCY on 06/01/2001
Return to Top of Page
Four Price Doji
!Four Price Doji
FourPrice if [open] = [high] and [high] = [low] and [low] = [open].
!!!Example stock FARM on 06/01/2001
Return to Top of Page
Gap Down
! Gap Down
Gapdown if [high] < Val([high],1) and [low] < Val([low],1).
!!!Example stock DELL on 06/01/2001
Return to Top of Page
Gap Up
! Gap Up
Gapup if [high] > Val([High],1) and [low] > Val([low],1).
!!! Example stock MER 6/1/2001
Return to Top of Page
Gravestone Doji
! Gravestone Doji
Gravestone if [close] = [open] and [close] = [low].
!!!Example stock FARM on 06/01/2001
Return to Top of Page
Hanging Man
! Hanging Man
! Stock 15 day trend is higher
Trend1 if slope([close],15) > 0.
! Stock 2 day trend is higher
Trend2 if slope([close],2) > 0.
! HangingMan pattern
Hammer if [open] - [low] > 2*([close] - [open]) and [open] > ([high]
+ [low])/2 and
[high] - [close] < ([high] - [low])/5.
HangingMan if Hammer and Trend1 and Trend2.
!!! Example Stock AM 6/1/2001
Return to Top of Page
Harami Cross
! Harami Cross
Hara if Val([close],1) - Val([open],1) > 2.0 and [open] = [close].
Hara1 if Val([open],1) - Val([close],1) > 1.0 and [open] = [close].
HaramiCross if Hara or Hara1.
!!!Example stock USM on 06/01/2001
Return to Top of Page
Harami
! Harami
! **PLEASE NOTE: Due to no real description of "Long Body" this
is
! created using greater than 2 for white long bodys and greater
! than 1 for black long bodys.
Hara if Val([close],1) - Val([open],1) > 2.0 and [close] < Val([close],1)
and
[open] > Val([open],1) and [high] < Val([high],1) and [low] > Val([low],1).
Hara1 if Val([open],1) - Val([close],1) > 1.0 and [open] < Val([open],1)
and
[close] > Val([close],1) and [high] < Val([high],1) and [low] >
Val([low],1).
Harami if Hara or Hara1.
!!!Example stock CATY on 06/01/2001
Return to Top of Page
Long Legged Doji
! Long Legged Doji
LongLegDoji if [Open] = [Close] and [high] *1.0 > [close] and [low]
= Val([low],1).
!!!Example stock ACAM on 06/01/2001
Return to Top of Page
Meeting Lines
! Meeting Lines
Line1 if Val([close],1) - Val([open],1) > 2.0 and ([open] - [close])
> 1 and
[close] = Val([close],1).
Line2 if Val([open],1) - Val([close],1) > 1.5 and ([close] - [open])
> 2 and
[close] = Val([close],1).
Meetinglines if Line1 or Line2.
!!!Example stock SANM on 04/26/2001
Return to Top of Page
Tri-Star Doji
! Tri-Star Doji
DojiStar1 if val([open], 2) = val([close], 2) and Val([open], 2)
< Val([low],3).
Doji2 if Val([open],1) = val([close],1) and val([open],1) < Val([low],2).
Doji3 if [open] = [close].
TriStarDoji if DojiStar1 and Doji2 and Doji3.
!!!Example stock ESP on 06/01/2001
Return to Top of Page
Tweezer Bottom
! Tweezer Bottom
TweezerBottom if [low] = Val([low],1) and [low] = Val([close],1).
!!!Example stock BOY on 06/01/2001
Return to Top of Page
Tweezer Top
! Tweezer Top
Tweezertop if [high] = Val([high],1) and [open] = Val([high],1).
!!!Example stock DUCK on 06/01/2001
Return to Top of Page
White Marubozu
! White Marubozu
WhiteMarubozu if [open] = [low] and [close] = [high].
!!!Example stock DUCK on 06/01/2001
Return to Top of Page
Shadow
Shadow1 is iff([open] < [close], ([high] - [close]),
([high] - [open])).
ShadowResistance is simpleavg(shadow1, 10).
Shadow2 is iff([open] < [close], ([open] - [low]), ([close] - [low])).
ShadowSupport is simpleavg(shadow2, 10).
Return to Top of Page
Shooting Star
GapUp if [low] > val([high],1).
Body if [low] = [close] and [open] > [low].
UShadow if [high] - [open] > ([open] - [low]) * 2.
ShootingStar if GapUp and Body and UShadow.
Return to Top of Page
Spinning Top
OpenandClose is abs([open] - [close]).
UpperShadow if ([high] > OpenandClose+[open] and [open] > [close])
or
([high] > OpenandClose+[close] and [close] > [open]).
LowerShadow if ([low] < [open] - OpenandClose and [open] < [close])
or
([low] < [close] - OpenandClose and [close] < [open]).
SpinningTop if UpperShadow and LowerShadow.
Return to Top of Page
|