StockFetcher Forums · Filter Exchange · Ichimoku - The chikou/lagging span<< 1 2 >>Post Follow-up
chetron
2,817 posts
msg #77592
Ignore chetron
modified
8/16/2009 8:36:52 AM

clickable....



Fetcher[

/* For longs: */
Show stocks where volume is above 500000
close 1 days ago is below close 27 days ago
close is above high 26 days ago
set{CS, DMA(1,-26)}
draw CS on plot price
]



Fetcher[

/* For shorts: */
Show stocks where volume is above 500000
close 1 days ago is above close 27 days ago
close is below low 26 days ago
set{CS, DMA(1,-26)}
draw CS on plot price
]





cdance
17 posts
msg #77874
Ignore cdance
8/23/2009 10:08:27 PM

Jay-towns --- I have several good Ichimoku filters....but lack the trading knowledge...

Let's talk.

CD

jay_towns
11 posts
msg #82682
Ignore jay_towns
11/9/2009 11:21:19 AM

Okay...what's up!?

cdance
17 posts
msg #88544
Ignore cdance
2/22/2010 10:27:58 PM

jay_towns - Here is what I have:



/* Ichimuko layout - Parms( 9 - 26 - 52 )*/
/* TS / KS Crossover --- above a bullish cloud */
/* On the DAILY chart*/
/* The crossover occured within the last 10 days */
/* CSp is bullish*/
/* TS is still > KS */
/*and they are above a bullish cloud*/
/* and weekly cloud is bullish*/

/* D A I L Y */
/*Tenkan-Sen*/
set{diff9TS, high 9 day high + low 9 day low}
set{TSd, diff9tS / 2}
draw TSd on plot price
/*Kijun-Sen*/
set{diff26KS, high 26 day high + low 26 day low}
set{KSd, diff26KS / 2}
draw KSd on plot price
/*Senkou Span A*/
set{SSA1, TSd + KSd}
set{SSA2, SSA1 / 2}
set{SSAD, SSA2 26 days ago}
draw SSAD on plot price
/*Senkou Span B*/
set{SSBh, high 52 day high}
set{SSBl, low 52 day low}
set{SSB3, SSBl + SSBh}
set {SSB4, SSB3 / 2}
set{SSBD, SSB4 26 days ago}
draw SSBD on plot price


/* W E E K L Y */
/*Tenkan-SenW*/
set{diff9TSW, high 9 week high + low 9 week low}
set{TSW, diff9TSW / 2}
/*Kijun-SenW*/
set{diff26KSW, high 26 week high + low 26 week low}
set{KSW, diff26KSW / 2}
/*Senkou Span A*/
set{SSA1w, TSW + KSW}
set{SSA2W, SSA1W / 2}
set{SSAw, SSA2W 26 weeks ago}
/*Senkou Span B*/
set{SSBhw, high 52 week high}
set{SSBlw, low 52 week low}
set{SSB3w, SSBlw + SSBhw}
set {SSB4w, SSB3w / 2}
set{SSBw, SSB4w 26 weeks ago}

/* CRITERIA CRITERIA CRITERIA CRITERIA CRITERIA*/
/* CRITERIA CRITERIA CRITERIA CRITERIA CRITERIA*/
/* CRITERIA CRITERIA CRITERIA CRITERIA CRITERIA*/

/* General Filters */
and close > 3
and avgvol(90) > 100000
/*and avgvol(90) < 1000000*/

/* CSp is bullish - close above close 26 days go */
and low 26 days ago < low today

/* Crossover Criteria */
/*and tsd 10 days ago < ksd in the 10 days ago*/

and TSd crossed KSd from below in the last 10 days
and tsd has been greater than ksd for last 3 days
and ksd > SSAd
and SSAD > SSbd


/* WEEKLY -- --- tsw > ksw > SSAw */
/* TSw > KSw --- and they are above the SSA and price is above SSA */
/* Weekly Cloud must be bullish*/
/*and TSW > KSW*/
/*and ksW > SSAW*/
and SSAw < SSbw
/*and low > SSAd*/






chetron
2,817 posts
msg #88545
Ignore chetron
2/22/2010 10:36:39 PM

CLICKABLE....


Fetcher[

/* Ichimuko layout - Parms( 9 - 26 - 52 )*/
/* TS / KS Crossover --- above a bullish cloud */
/* On the DAILY chart*/
/* The crossover occured within the last 10 days */
/* CSp is bullish*/
/* TS is still > KS */
/*and they are above a bullish cloud*/
/* and weekly cloud is bullish*/

/* D A I L Y */
/*Tenkan-Sen*/
set{diff9TS, high 9 day high + low 9 day low}
set{TSd, diff9tS / 2}
draw TSd on plot price
/*Kijun-Sen*/
set{diff26KS, high 26 day high + low 26 day low}
set{KSd, diff26KS / 2}
draw KSd on plot price
/*Senkou Span A*/
set{SSA1, TSd + KSd}
set{SSA2, SSA1 / 2}
set{SSAD, SSA2 26 days ago}
draw SSAD on plot price
/*Senkou Span B*/
set{SSBh, high 52 day high}
set{SSBl, low 52 day low}
set{SSB3, SSBl + SSBh}
set {SSB4, SSB3 / 2}
set{SSBD, SSB4 26 days ago}
draw SSBD on plot price


/* W E E K L Y */
/*Tenkan-SenW*/
set{diff9TSW, high 9 week high + low 9 week low}
set{TSW, diff9TSW / 2}
/*Kijun-SenW*/
set{diff26KSW, high 26 week high + low 26 week low}
set{KSW, diff26KSW / 2}
/*Senkou Span A*/
set{SSA1w, TSW + KSW}
set{SSA2W, SSA1W / 2}
set{SSAw, SSA2W 26 weeks ago}
/*Senkou Span B*/
set{SSBhw, high 52 week high}
set{SSBlw, low 52 week low}
set{SSB3w, SSBlw + SSBhw}
set {SSB4w, SSB3w / 2}
set{SSBw, SSB4w 26 weeks ago}

/* CRITERIA CRITERIA CRITERIA CRITERIA CRITERIA*/
/* CRITERIA CRITERIA CRITERIA CRITERIA CRITERIA*/
/* CRITERIA CRITERIA CRITERIA CRITERIA CRITERIA*/

/* General Filters */
and close > 3
and avgvol(90) > 100000
/*and avgvol(90) < 1000000*/

/* CSp is bullish - close above close 26 days go */
and low 26 days ago < low today

/* Crossover Criteria */
/*and tsd 10 days ago < ksd in the 10 days ago*/

and TSd crossed KSd from below in the last 10 days
and tsd has been greater than ksd for last 3 days
and ksd > SSAd
and SSAD > SSbd


/* WEEKLY -- --- tsw > ksw > SSAw */
/* TSw > KSw --- and they are above the SSA and price is above SSA */
/* Weekly Cloud must be bullish*/
/*and TSW > KSW*/
/*and ksW > SSAW*/
and SSAw < SSbw
/*and low > SSAd*/


]



duke56468
683 posts
msg #88584
Ignore duke56468
modified
2/23/2010 2:40:34 PM

This gives recent breakouts above the cloud, not sure who wrote it, think it was Chet.

Fetcher[/* For longs: */
Show stocks where volume is above 500000
close 1 days ago is below close 27 days ago
close is above high 26 days ago
set{CS, DMA(1,-26)}
draw CS on plot price
]




Sorry see it was already posted. The short version didn't seem to work for me.


chetron
2,817 posts
msg #88585
Ignore chetron
2/23/2010 2:56:33 PM

ACTUALLY, IT WAS zolchew WHO WROTE THE CODE.

StockFetcher Forums · Filter Exchange · Ichimoku - The chikou/lagging span<< 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.