StockFetcher Forums · Filter Exchange · Interesting pattern on AAPL<< 1 2 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #98032
Ignore TheRumpledOne
12/16/2010 3:47:10 PM

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(axl,drys)

]



TheRumpledOne
6,407 posts
msg #98033
Ignore TheRumpledOne
modified
12/16/2010 3:55:19 PM

Fetcher[

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


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{buya, BUY10 + BUY20}
set{BUY, buya+ BUY30}

BUY Above 0
up50 above 79

add column BUY10
add column BUY20
add column BUY30

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

]



Should be fun to watch

mystiq
650 posts
msg #98036
Ignore mystiq
12/17/2010 2:31:17 AM

TheRumpledOne
msg #98032 12/16/2010 3:47:10 PM


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(axl,drys)

***>>>> masterpiece <<<<***

TheRumpledOne
6,407 posts
msg #98174
Ignore TheRumpledOne
modified
12/23/2010 11:39:33 AM

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 D10
add column D20
add column D30


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(nflx,bby)

]



Anyone using this to trade options?



TheRumpledOne
6,407 posts
msg #98739
Ignore TheRumpledOne
1/25/2011 2:46:45 PM

Check out DRYS!!

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.