StockFetcher Forums · Filter Exchange · Interesting pattern on AAPL<< 1 2 >>Post Follow-up
four
5,087 posts
msg #97652
Ignore four
11/28/2010 10:12:33 AM

Too bad I discovered it after the fact (... 20/20 ..)

Fetcher[

set{BUY, min(open,close) reached a 10 day low}
symlist(aapl)

draw BUY on plot close
chart-time is 1 year
]



TheRumpledOne
6,407 posts
msg #97658
Ignore TheRumpledOne
modified
11/28/2010 12:04:56 PM

Fetcher[
set{BUY, min(open,close) reached a 10 day low}

BUY ABOVE 0

/* TRO MTC CHECKER */

set{ hiop, high - open }
set{ up10, count( hiop > 0.09, 100 ) }
set{ up50, count( hiop > 0.49, 100 ) }
set{ pct1, up50 / up10 }

up50 above 79

]




Let's check out how the COWS do!



TheRumpledOne
6,407 posts
msg #97659
Ignore TheRumpledOne
modified
11/28/2010 12:35:48 PM

Just playing...

Fetcher[
set{TOP, max(open,close)}
set{BOTTOM, min(open,close)}

set{TOP10, TOP 10 day high}
set{BOTTOM10, BOTTOM 10 day low}

set{TOP20, TOP 20 day high}
set{BOTTOM20, BOTTOM 20 day low}

set{TOP30, TOP 30 day high}
set{BOTTOM30, BOTTOM 30 day low}


set{BUY10, min(open,close) reached a 10 day low}
set{SELL10, max(open,close) reached a 10 day high}

set{BUY20, min(open,close) reached a 20 day low}
set{SELL20, max(open,close) reached a 20 day high}

set{BUY30, min(open,close) reached a 30 day low}
set{SELL30, max(open,close) reached a 30 day high}

add column TOP10
add column TOP20
add column TOP30

add column BOTTOM10
add column BOTTOM20
add column BOTTOM30

add column BUY10
add column BUY20
add column BUY30

add column SELL10
add column SELL20
add column SELL30

DRAW BUY10
DRAW BUY20 ON PLOT BUY10
DRAW BUY30 ON PLOT BUY10

DRAW SELL10
DRAW SELL20 ON PLOT SELL10
DRAW SELL30 ON PLOT SELL10

DRAW TOP10 ON PLOT close
DRAW TOP20 ON PLOT close
DRAW TOP30 ON PLOT close

DRAW BOTTOM10 ON PLOT close
DRAW BOTTOM20 ON PLOT close
DRAW BOTTOM30 ON PLOT close

symlist(rimm,aapl)

]




TheRumpledOne
6,407 posts
msg #97664
Ignore TheRumpledOne
11/28/2010 5:01:39 PM

More fun - changed the buy/sell signal to 1 or 0

Fetcher[

set{TOP, max(open,close)}
set{BOTTOM, min(open,close)}

set{TOP10, TOP 10 day high}
set{BOTTOM10, BOTTOM 10 day low}

set{TOP20, TOP 20 day high}
set{BOTTOM20, BOTTOM 20 day low}

set{TOP30, TOP 30 day high}
set{BOTTOM30, BOTTOM 30 day low}


set{BUY10, count( min(open,close) reached a 10 day low,1)}
set{SELL10,count( max(open,close) reached a 10 day high,1)}

set{BUY20, count( min(open,close) reached a 20 day low,1)}
set{SELL20, count( max(open,close) reached a 20 day high,1)}

set{BUY30, count( min(open,close) reached a 30 day low,1)}
set{SELL30, count( max(open,close) reached a 30 day high,1)}

add column TOP10
add column TOP20
add column TOP30

add column BOTTOM10
add column BOTTOM20
add column BOTTOM30

add column BUY10
add column BUY20
add column BUY30

add column SELL10
add column SELL20
add column SELL30

DRAW BUY10
DRAW BUY20 ON PLOT BUY10
DRAW BUY30 ON PLOT BUY10

DRAW SELL10
DRAW SELL20 ON PLOT SELL10
DRAW SELL30 ON PLOT SELL10

DRAW TOP10 ON PLOT close
DRAW TOP20 ON PLOT close
DRAW TOP30 ON PLOT close

DRAW BOTTOM10 ON PLOT close
DRAW BOTTOM20 ON PLOT close
DRAW BOTTOM30 ON PLOT close

symlist(aapl,rimm)

]



four
5,087 posts
msg #97666
Ignore four
modified
11/28/2010 8:59:35 PM

Fetcher[
set{z, max(open,close)}
set{zz, z + high}
set{zzz, zz / 2}
draw cema(zzz,5) on plot close
symlist(aapl)
chart-time is 1 year
]



dwiggains
441 posts
msg #97669
Ignore dwiggains
11/29/2010 8:34:59 AM

Hi

This lows pretty good.

Fetcher[

set{BUY, min(open,close) reached a 10 day low}
close > 5 and volume > 200,000

draw BUY
buy > 90
]



I also would add the next three rules.

1. Buy if close is greater than Ma (30)
2. Buy when price exceeds the 2 day high
3. Stop would then be a following 2 day low stop

See ya
David

TheRumpledOne
6,407 posts
msg #97671
Ignore TheRumpledOne
modified
11/29/2010 9:12:44 AM

One for the trading junkies... 2, 3 and 5 day tests

Fetcher[

set{TOP, max(open,close)}
set{BOTTOM, min(open,close)}

set{TOP2, TOP 2 day high}
set{BOTTOM2, BOTTOM 2 day low}

set{TOP3, TOP 3 day high}
set{BOTTOM3, BOTTOM 3 day low}

set{TOP5, TOP 5 day high}
set{BOTTOM5, BOTTOM 5 day low}


set{BUY2, count( min(open,close) reached a 2 day low,1)}
set{SELL2,count( max(open,close) reached a 2 day high,1)}

set{BUY3, count( min(open,close) reached a 3 day low,1)}
set{SELL3, count( max(open,close) reached a 3 day high,1)}

set{BUY5, count( min(open,close) reached a 5 day low,1)}
set{SELL5, count( max(open,close) reached a 5 day high,1)}

add column TOP2
add column TOP3
add column TOP5

add column BOTTOM2
add column BOTTOM3
add column BOTTOM5

add column BUY2
add column BUY3
add column BUY5

add column SELL2
add column SELL3
add column SELL5

DRAW BUY2
DRAW BUY3 ON PLOT BUY2
DRAW BUY5 ON PLOT BUY2

DRAW SELL2
DRAW SELL3 ON PLOT SELL2
DRAW SELL5 ON PLOT SELL2

DRAW TOP2 ON PLOT close
DRAW TOP3 ON PLOT close
DRAW TOP5 ON PLOT close

DRAW BOTTOM2 ON PLOT close
DRAW BOTTOM3 ON PLOT close
DRAW BOTTOM5 ON PLOT close

symlist(aapl,rimm)

]



TheRumpledOne
6,407 posts
msg #97737
Ignore TheRumpledOne
12/2/2010 8:12:23 PM

Added some days since info


Fetcher[

set{TOP, max(open,close)}
set{BOTTOM, min(open,close)}

set{TOP10, TOP 10 day high}
set{BOTTOM10, BOTTOM 10 day low}

set{TOP20, TOP 20 day high}
set{BOTTOM20, BOTTOM 20 day low}

set{TOP30, TOP 30 day high}
set{BOTTOM30, BOTTOM 30 day low}


set{BUY10, count( min(open,close) reached a 10 day low,1)}
set{SELL10,count( max(open,close) reached a 10 day high,1)}

set{BUY20, count( min(open,close) reached a 20 day low,1)}
set{SELL20, count( max(open,close) reached a 20 day high,1)}

set{BUY30, count( min(open,close) reached a 30 day low,1)}
set{SELL30, count( max(open,close) reached a 30 day high,1)}



set{DAYSMIN10,days(min(open,close) equal 10 day low,100)}
set{DAYSMIN20,days(min(open,close) equal 20 day low,100)}
set{DAYSMIN30,days(min(open,close) equal 30 day low,100)}

set{DAYSMAX10,days(max(open,close) equal 10 day high,100)}
set{DAYSMAX20,days(max(open,close) equal 20 day high,100)}
set{DAYSMAX30,days(max(open,close) equal 30 day high,100)}


add column TOP10
add column TOP20
add column TOP30

add column BOTTOM10
add column BOTTOM20
add column BOTTOM30

add column BUY10
add column BUY20
add column BUY30

add column SELL10
add column SELL20
add column SELL30

add column DAYSMAX10
add column DAYSMAX20
add column DAYSMAX30

add column DAYSMIN10
add column DAYSMIN20
add column DAYSMIN30


DRAW BUY10
DRAW BUY20 ON PLOT BUY10
DRAW BUY30 ON PLOT BUY10

DRAW SELL10
DRAW SELL20 ON PLOT SELL10
DRAW SELL30 ON PLOT SELL10

DRAW TOP10 ON PLOT close
DRAW TOP20 ON PLOT close
DRAW TOP30 ON PLOT close

DRAW BOTTOM10 ON PLOT close
DRAW BOTTOM20 ON PLOT close
DRAW BOTTOM30 ON PLOT close



symlist(aapl,rimm)

]







mikes2010
16 posts
msg #97738
Ignore mikes2010
12/2/2010 10:24:21 PM



Can you please explain how to use this chart?

Thanks
Mike

TheRumpledOne
6,407 posts
msg #97757
Ignore TheRumpledOne
12/3/2010 8:56:10 AM

Mike:

You don't really need to "use" the chart.

Run the filter.

When you get a "1" in BUY10, BUY20, BUY30 column... you buy.

When you get a "1" in SELL10, SELL20, SELL30column... you sell.

The chart has a SPIKE when the value is "1". You can then look at the chart so see what happened after the trade signal was generated.

Remember, THIS IS TRADING - ANYTHING CAN HAPPEN!

I would STRONGLY suggest that you use my MTC CHECKER filter to select stocks for this filter idea of four's.





StockFetcher Forums · Filter Exchange · Interesting pattern on AAPL<< 1 2 >>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.