Legal Disclaimer

All opinions expressed on this site are those of the author and may contain errors (I make mistakes) or omissions (I am not telling the whole truth).

!Thank You!

Friday, December 25, 2009

results

Some people will show you results, but not how to achieve them.

Not I.

Here are the StockFetcher Screens I have been redefining.

All stock screens have inverse.

/* C gt O 4-8-21 */ and /* C lt O 4-8-21 */ are inverses.

I did not list all the inverse because I think you get the idea.

/* Common */
show stocks where close is above 1
average volume(30) > 1000000
volume > 500000


/* C gt O 4-8-21 */
open < ema(4) open < ema(8) open < ema(21)
close > ema(4) close > ema(8) close > ema(21)
close > open
close 3 days ago < ema(21)
close 5 days ago < close 3 days ago
close 5 days ago < ema(90)
OBV has been increasing over the last 3 days

/* C lt O 4-8-21 */
open > ema(4) open > ema(8) open > ema(21)
close < ema(4) close < ema(8) close < ema(21)
close < open
close 3 days ago > ema(21)
close 5 days ago > close 3 days ago
close 5 days ago > ema(90)
OBV has been decreasing over the last 3 days

/* C gt O 4-8-21 simple */
open < ema(4) open < ema(8) open < ema(21)
close > ema(4) close > ema(8) close > ema(21)
close > open
OBV has been increasing over the last 3 days

/* 4ema cross above 21ema */
ema(4) crossed above ema(21)
OBV has been increasing over the last 3 days

/* Above Wave e21 */
open 2 day ago is below ema(21)
open 3 day ago is below ema(21)
open 4 day ago is below ema(21)
open 5 day ago is below ema(21)
open 6 day ago is below ema(21)
close 1 day ago is above ema(21)
close is above ema(21)
close > open
OBV has been increasing over the last 3 days


/* Magic3 Up 3pct on 3x Volume */
volume is more than 300% above volume 1 day ago
average volume(30) > 500000
close is above 3 day change is above 3 percent

/* fib786 */
The fibonacci retracement is based on 135 day.
Notice the location of the retracement

traceu=1

traced=1


Updated:

The above screen is incorrect. I have also modified OBV as well.

/* Above Wave e21 */
close 2 day ago is below ema(21)
close 3 day ago is below ema(21)
close 4 day ago is below ema(21)
close 5 day ago is below ema(21)
close 6 day ago is below ema(21)
close 1 day ago is above ema(21)
close is above ema(21)
close > open
OBV has been increasing over the last 1 days