StockFetcher Forums · General Discussion · Swing Trading Ideas and methods<< 1 ... 7 8 9 10 11 ... 99 >>Post Follow-up
Eman93
4,750 posts
msg #77126
Ignore Eman93
8/1/2009 12:34:17 PM

The pattern I want to find is exactly like WYNN and MSO..... sit back and let the trade run....


If any one can think of a way...... I will fool with it.

Eman93
4,750 posts
msg #77127
Ignore Eman93
8/1/2009 1:17:25 PM

This is better

Fetcher[ /*EMANS ABC Pattern Display*/

close is above 1
volume > 500000
set{1h, high 100 day high}
set{ch, C / 1H}
set{dch, 1 - ch}
set{R%, dch * 100}
set{1L, low 100 day low}
set {AB, 1h - 1L}
set{C, low 20 day low}
set{AB038, AB * 0.38}
set{AB05, AB * 0.5}
set{T1, C + AB038}
set{T2, C + AB05}
set{T_3, C + AB}
set{up, C / close}
set{upd, 1 - up}
set{%up, upd * 100}

ch < .62
ch > .30

add column 1L {A}
add column 1h {B}

add column C
add column AB
add column T1
add column T2
add column T_3

add column R% {retrace%}
add column %up {% from C}
add column ind
sort column 12 descending

close < T1
]



chetron
2,817 posts
msg #77128
Ignore chetron
8/1/2009 1:38:23 PM

DID YOU MEAN ON FRIDAY OR WEDNESDAY????????????



Fetcher[

/* IF WED. THEN */

HIGH 2 DAY AGO ABOVE HIGH 13 DAY HIGH 3 DAY AGO
LOW LESS THAN 1% ABOVE LOW 3 DAY LOW 1 DAY AGO

SYMLIST(WYNN,MSO)
OFFSET 7/29/09
]



Eman93
4,750 posts
msg #77129
Ignore Eman93
modified
8/1/2009 1:38:24 PM

Fetcher[ /*EMANS ABC Pattern Display*/

close is above 1
volume > 500000
set{1h, high 100 day high}
set{ch, C / 1H}
set{dch, 1 - ch}
set{R%, dch * 100}
set{1L, low 150 day low}
set {AB, 1h - 1L}
set{C, low 20 day low}
set{AB038, AB * 0.38}
set{AB05, AB * 0.5}
set{T1, C + AB038}
set{T2, C + AB05}
set{T_3, C + AB}
set{up, C / close}
set{upd, 1 - up}
set{%up, upd * 100}

ch < .62
ch > .30

add column 1L {A}
add column 1h {B}

add column C
add column AB
add column T1
add column T2
add column T_3

add column R% {retrace%}
add column %up {% from C}
add column ind
sort column 12 descending

close < T1
]



just parking this here



fetcher[/*JP 40*/
Fetcher[close is between 1 and 100
slope ema(3) > 0
high > Upper Bollinger Band(40,0.4)
low < Lower Bollinger Band(40,0.4)
and average volume(30) is above 1000000
set{diff,close minus close 65 days ago}
set{diff%,diff / close 65 days ago}
set{change%,diff% * 100}

add column diff%
add column ind
sort column 5 descending
]




Eman93
4,750 posts
msg #77130
Ignore Eman93
8/1/2009 1:42:59 PM

WYNN on July 9th

check out this web site...

http://www.surinotes.com/index.cfm?CSEL=1002

Eman93
4,750 posts
msg #77131
Ignore Eman93
8/1/2009 1:51:43 PM

Like ATI this one looks like a Gartley ABC bullish pattern : - )

Eman93
4,750 posts
msg #77148
Ignore Eman93
modified
8/2/2009 1:44:03 PM

added days since making the pivot at C....

I need to figure out how remove stocks making a new 100 day low in the last 20 days... any ideas?

Fetcher[ /*EMANS ABC Pattern Display*/

close is above 1
volume > 500000
set{1h, high 100 day high}
set{ch, C / 1H}
set{dch, 1 - ch}
set{R%, dch * 100}
set{1L, low 150 day low}
set {AB, 1h - 1L}
set{C, low 20 day low}
set{AB038, AB * 0.38}
set{AB05, AB * 0.5}
set{T1, C + AB038}
set{T2, C + AB05}
set{T_3, C + AB}
set{up, C / close}
set{upd, 1 - up}
set{%up, upd * 100}
set{Cdays, count(low > C, 20)}

ch < .62
ch > .30

add column 1L {A}
add column 1h {B}

add column C
add column Cdays
add column AB
add column T1
add column T2
add column T_3

add column R% {retrace%}
add column %up {% from C}
add column ind
sort column 8 ascending

close < T1
]



Eman93
4,750 posts
msg #77155
Ignore Eman93
modified
8/2/2009 5:27:14 PM

revised... on some of the screen shots it looks as if T1 is an entry point
revised again
Fetcher[ /*EMANS ABC Pattern Display 2.0*/

close is above 1
volume > 500000
set{1h, high 100 day high}
set{1L, low 150 day low}
set {AB, 1h - 1L}
set{C, low 30 day low}
set{ch, C / 1H}
set{dch, 1 - ch}
set{R%, dch * 100}
set{AB038, AB * 0.38}
set{AB05, AB * 0.5}
set{T1, C + AB038}
set{T2, C + AB05}
set{T_3, C + AB}
set{up, C / close}
set{upd, 1 - up}
set{%up, upd * 100}
set{Cdays, count(low > C, 20)}

R% < 90
R% > 20

add column 1L {A}
add column 1h {B}

add column C
add column Cdays
add column AB
add column T1 {entry}
add column T2
add column T_3

add column R% {retrace%}
add column %up {% from C}
add column ind
sort column 13 descending

close 1 day ago < T1 1 day ago
close > T1
]



Eman93
4,750 posts
msg #77252
Ignore Eman93
8/4/2009 8:51:06 PM

COIN pulling back.......the shorts may cover


Converted Organics Inc. $ 1.29
COIN -0.19

Short Interest (Shares Short) 1,376,800
Days To Cover (Short Interest Ratio) 3.2
Short Percent of Float 10.02 %
Short Interest - Prior 1,448,900
Short % Increase / Decrease -4.98 %
Short Squeeze Ranking™ -19

% From 52-Wk High ($ 7.83 ) -506.67 %
% From 52-Wk Low ($ 0.66 ) 48.84 %
% From 200-Day MA ($ 1.53 ) -18.60 %
% From 50-Day MA ($ 1.11 ) 13.95 %
Price % Change (52-Week) -59.30 %

Shares Float 13,740,000
Total Shares Outstanding 15,331,708
% Owned by Insiders 4.26 %
% Owned by Institutions 0.60 %
Market Cap. $ 19,777,903
Trading Volume - Today 3,045,768
Trading Volume - Average 432,200
Trading Volume - Today vs. Average 704.71 %
Earnings Per Share -2.72
PE Ratio
Record Date 2009-JulB

Sector Basic Materials
Industry Agricultural Chemicals
Exchange NAS



johnpaulca
12,036 posts
msg #77255
Ignore johnpaulca
8/4/2009 10:42:37 PM

COIN is reloading....today was just a typical encounter with Mr. ema100, support is BB40

StockFetcher Forums · General Discussion · Swing Trading Ideas and methods<< 1 ... 7 8 9 10 11 ... 99 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.