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 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]
Hi chetron,
Indeed, I mixed up some parameters in my previous post: here it is (hope it's clickable...)
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
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.
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
*** 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.