| jay_towns 11 posts
 msg #76898
 - Ignore jay_towns
 | 7/27/2009 3:32:52 PM 
 Anyone know of the inputs to fetch stocks where the chikou/lagging span is
 right at the candlestick and about to crossover?
 
 If you need further explanation just let me know. Thank you!
 
 
 | 
| alf44 2,025 posts
 msg #76922
 - Ignore alf44
 modified
 | 7/28/2009 9:19:45 AM 
 ...the Chikou is just today's Close plotted backward 26 days (ie. a 26 day MA of the current Close displaced backward 26 days) !
 
 The idea behind it is to give you an "at a glance" read on sentiment.
 
 -----
 
 If the Chikou is hovering ABOVE the price plot...that tells you that TODAY'S price is ABOVE the price 26 days ago...so sentiment is positive !
 
 If the Chikou is hovering BELOW the price plot...that tells you that TODAY'S price is BELOW the price 26 days ago...so sentiment is negative !
 
 -----
 
 What exactly are you trying to find ?
 
 
 Regards,
 
 alf44
 
 
 
 | 
| alf44 2,025 posts
 msg #77102
 - Ignore alf44
 | 7/31/2009 10:07:58 PM 
 ...mic test...testing 123...testing 123...
 
 ---
 
 Is this thing on ???
 
 
 Regards,
 
 alf44
 
 
 | 
| chetron 2,817 posts
 msg #77135
 - Ignore chetron
 modified
 | 8/1/2009 3:33:43 PM 
 I AM SURE HE IS NOT IGNORING YOU, JUST DUMBFOUNDED BY YOUR BRILLIANT INSIGHT.       = )
 
 
 | 
| jay_towns 11 posts
 msg #77250
 - Ignore jay_towns
 | 8/4/2009 6:44:11 PM 
 Thanks Alf. Sorry for the delay. I've been away.
 
 I trade using the ichikoku and I fully understand it. I just do not know how to write scans that well on here...
 
 
 I would like to scan for stocks where the tenkan has crossed the kijun from underneath in the cloud, above, or below...
 
 does that make sense?
 
 
 | 
| jay_towns 11 posts
 msg #77276
 - Ignore jay_towns
 | 8/5/2009 12:31:42 PM 
 I want my screen to scan for stocks where the tenkan and kijun are in between the sen A and sen B lines (the cloud)...
 
 Any ideas?
 
 
 | 
| jay_towns 11 posts
 msg #77278
 - Ignore jay_towns
 | 8/5/2009 12:41:49 PM 
 Am I on the right track here??
 
 tenkan_sen < senkou_a
 tenkan_sen > senkou_b
 
 
 | 
| chetron 2,817 posts
 msg #77285
 - Ignore chetron
 | 8/5/2009 2:58:33 PM 
 the math looks like the right direction, but the variables don't exist in SFlandia.
 
 
 | 
| jay_towns 11 posts
 msg #77290
 - Ignore jay_towns
 | 8/5/2009 3:45:55 PM 
 This is working okay. It's not giving me tenkan and kijun in the cloud but at least tenkan is underneath kijun.
 
 
 /* Ichimuko layout*/
 
 price < .8
 average volume (20) > 500,000
 
 /*Tenkan-Sen*/
 set{diff9TS, high 9 day high + low 9 day low}
 set{TS, diff9tS / 2}
 draw TS on plot price
 
 /*Kijun-Sen*/
 set{diff26KS, high 26 day high + low 26 day low}
 set{KS, diff26KS / 2}
 draw KS on plot price
 
 /*Senkou Span A*/
 set{SSA1, TS + KS}
 set{SSA2, SSA1 / 2}
 set{SSA, SSA2 26 days ago}
 draw SSA on plot price
 
 /*Senkou Span B*/
 set{SSB1, high 52 day high + low 52 day low}
 set{SSB2, SSB1 / 2}
 set{SSB, SSB2 52 days ago}
 draw SSB on plot price
 
 and TS < KS
 
 TS > SSB
 
 KS > SSB
 
 
 | 
| zolchew 1 posts
 msg #77591
 - Ignore zolchew
 modified
 | 8/16/2009 1:46:05 AM 
 It is that simple:
 
 For longs:
 Show stocks where volume is above 500000 and close 1 days ago is below close 27 days ago and close is above high 26 days ago set{CS, DMA(1,-26)}draw CS on plot price
 
 For shorts:
 Show stocks where volume is above 500000 and close 1 days ago is above close 27 days ago and close is below low 26 days ago set{CS, DMA(1,-26)}draw CS on plot price
 
 
 |