StockFetcher Forums · Filter Exchange · Ichimoku charting<< 1 2 3 4 5 >>Post Follow-up
ludowillems
111 posts
msg #61302
Ignore ludowillems
4/10/2008 3:57:35 PM

I gave this one a run: I tired to filter stocks where the bullis crossover occured within the last 3 days, and occured above the "cloud". Please comment /adjust

Fetcher [/ Ichimuko Bullish 3 days/

find stocks where close is between 15 and 75
and average volume (90) is over 500000
/*Tenkan-Sen*/
set{diff7TS, high 7 day high + low 7 day low}
set{TS, diff7tS / 2}
draw TS on plot price

/*Kijun-Sen*/
set{diff22KS, high 22 day high + low 22 day low}
set{KS, diff22KS / 2}
draw KS on plot price

/*Chikou Span*/
set{CS, DMA(1,-22)}
draw CS 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 44 day high + low 44 day low}
set{SSB2, SSB1 / 2}
set{SSB, SSB2 22 days ago}
draw SSB on plot price
and TS crosses KS from below in the last 3 days

And TS is above SSA during the last 3 days
AND TS is above SSB during the last 3 days
and TK is above SSA during the last 3 days
and TK is above SSB during the last 3 days
and slope of TS is above 0 during the last 3 days
Fetcher]

nikoschopen
2,824 posts
msg #61304
Ignore nikoschopen
4/10/2008 4:11:32 PM

Thanks for the info. Boy, that's a mouthful. lol

If you don't mind, however, this needs to wait until next week when I kick Uncle Sam out of my life for another year.

chetron
2,817 posts
msg #61312
Ignore chetron
modified
4/10/2008 5:12:22 PM

getting closer, lud....

oops, a couple of errors. i assume TK is TS? or repetitive? or KS?

Fetcher[

/* Ichimuko Bullish 3 days */

find stocks where close is between 15 and 75
and average volume (90) > 500000
/*Tenkan-Sen*/
set{diff7TS, high 7 day high + low 7 day low}
set{TS, diff7tS / 2}
draw TS on plot price

/*Kijun-Sen*/
set{diff22KS, high 22 day high + low 22 day low}
set{KS, diff22KS / 2}
draw KS on plot price

/*Chikou Span*/
set{CS, DMA(1,-22)}
draw CS 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 44 day high + low 44 day low}
set{SSB2, SSB1 / 2}
set{SSB, SSB2 22 days ago}
draw SSB on plot price
and TS crosses KS from below in the last 3 days

And TS is above SSA during the last 3 days
AND TS is above SSB during the last 3 days
And kS is above SSA during the last 3 days
AND kS is above SSB during the last 3 days

and slope of TS is above 0 during the last 3 days
]





stan22
11 posts
msg #61404
Ignore stan22
4/12/2008 3:02:34 AM

http://www.kumotrader.com/ichimoku_wiki/index.php?title=Main_Page

ludowillems
111 posts
msg #61431
Ignore ludowillems
4/13/2008 12:56:05 PM

Hi chetron,
Indeed, I mixed up some parameters in my previous post: here it is (hope it's clickable...)

Fetcher[
/* Ichimuko Bullish 3 days*/

find stocks where close is between 15 and 75
and average volume (90) is above 500000
/*Tenkan-Sen*/
set{diff7TS, high 7 day high + low 7 day low}
set{TS, diff7tS / 2}
draw TS on plot price

/*Kijun-Sen*/
set{diff22KS, high 22 day high + low 22 day low}
set{KS, diff22KS / 2}
draw KS on plot price

/*Chikou Span*/
set{CS, DMA(1,-22)}
draw CS 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 44 day high + low 44 day low}
set{SSB2, SSB1 / 2}
set{SSB, SSB2 22 days ago}
draw SSB on plot price
and TS crosses KS from below in the last 3 days

And TS is above SSA during the last 3 days
AND TS is above SSB during the last 3 days
and KS is above SSA during the last 3 days
and KS is above SSB during the last 3 days
and slope of TS is above 0 during the last 3 days
]



But i am still puzzled by the lines that define Senkou Span A and B: these lines should be plotted in the FUTURE, but if I run this filter in SF and display the resulting charts, the Span A and B coincide with the price of today, which is not correct. Can Nikoschopen help on this? Best regards, Ludo Willems


nikoschopen
2,824 posts
msg #61433
Ignore nikoschopen
4/13/2008 2:59:21 PM

ludo,

How the displaced moving average works is that it takes the today's moving average and shifts it forward (or backward) in time by the specified parameter. For example, DMA(28,-14) is a 28-period moving average shifted back by 14 days. When the moving average is shifted forward by 14, as in DMA(28,14), you will see the 28-period moving average that occured 14 days ago aligned with today's price. However, this doesn't mean that you'll be able to see the displaced moving average ahead in time, which sounds quite silly to me because the price is simply absent. That is, we haven't gotten there yet.

When you run and open the charts for the following filter, you will notice only two lines, one being the Senkou Span A plotted with the displaced parameter and the other without.

Fetcher[
/*Tenkan-Sen*/
set{diff7TS, high 7 day high + low 7 day low}
set{TS, diff7tS / 2}

/*Kijun-Sen*/
set{diff22KS, high 22 day high + low 22 day low}
set{KS, diff22KS / 2}

/*Senkou Span A*/
set{SSA1, TS + KS}
set{SSA2, SSA1 / 2}
set{SSA, SSA2 26 days ago}
draw SSA2 on plot price
draw SSA on plot price
]



ludowillems
111 posts
msg #61436
Ignore ludowillems
4/13/2008 3:53:24 PM

Niko,
Thanks for the prompt reply. I'd like to show a chart from my broker's platform but a "prtscreen" en "paste doesn't work in the textwindow in the forum. How did you get your AAPL-chart inserted? Ludo

ludowillems
111 posts
msg #61437
Ignore ludowillems
4/13/2008 3:57:02 PM

Niko, maybe easiest that you give me your email adress, so i mail it as an attachment. Ludo

nikoschopen
2,824 posts
msg #61438
Ignore nikoschopen
4/13/2008 5:21:41 PM

You can shoot me an email with my "username" at gmail dot com.

ludowillems
111 posts
msg #61448
Ignore ludowillems
4/14/2008 5:12:14 AM

Done

StockFetcher Forums · Filter Exchange · Ichimoku charting<< 1 2 3 4 5 >>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.