StockFetcher Forums · Filter Exchange · Niko's MAX (Moving Average Crossover) Filter<< 1 ... 2 3 4 5 6 ... 7 >>Post Follow-up
chetron
2,817 posts
msg #60839
Ignore chetron
3/27/2008 10:54:37 PM

again folks, i am very sorry. the standard subscription restrictions will not allow any further refinements to niko's filter.

the last filter i posted in this thread actually gives all the information you need for both, the uptrend and the downtrend play. you only need to sort the columns per niko's 123 rules and manually read the data.

the lines of code that i noted out is what makes niko's filters unique to themselves. this is why you only need one chet filter to niko's two. lol. enjoy.




nikoschopen
2,824 posts
msg #60845
Ignore nikoschopen
3/28/2008 3:39:44 AM

this is why you only need one chet filter to niko's two. lol. enjoy.

Actually, I hope to release an improved version soon that will combine both elements. For simplicity sake, it will also spit out a value of "1" for BUY and "-1" for SELL among other things that I'm mulling over. In the meantime, you might want to take Chet's advice and upgrade to the advanced subscription.

chetron
2,817 posts
msg #60850
Ignore chetron
3/28/2008 8:35:39 AM

looking forward to it, niko.




bills10733
9 posts
msg #61007
Ignore bills10733
4/2/2008 7:14:08 PM

Vic,

Thanks much. I was able to duplicate your results with those settings. Impressive.

Bill


vic1
21 posts
msg #61029
Ignore vic1
4/3/2008 9:15:16 AM

Great, Happy to help

oldsmar52
104 posts
msg #61152
Ignore oldsmar52
4/6/2008 2:13:03 PM

Niko, I try to learn from all the stuff you guys put up here and I know I'm not knowledgeable enough on filters to have anything to add....I just read. Anyway, I've been watching your filter and got into VMW Friday and made a slick 8% in about 3 hours on it. Thanks for the filter and help..........Frank

nikoschopen
2,824 posts
msg #61154
Ignore nikoschopen
4/6/2008 3:02:14 PM

My pleasure. But I want to emphasize that this ain't no infallible filter so I urge you to use caution.

as214
184 posts
msg #61474
Ignore as214
4/14/2008 6:08:11 PM

This thred should be renamed "Niko's MAX $$$ losing filter! The results are atrocious. Note the source!

chetron
2,817 posts
msg #61475
Ignore chetron
4/14/2008 6:29:46 PM

one person makes 9 %, another loses and it is the filters fault.

or is it not what you trade, but how you trade?



bkagarwal
1 posts
msg #61714
Ignore bkagarwal
4/23/2008 3:55:07 AM

Hi,

Your Filter is great, I am using it in conjection with my own filters, please improve it. I have removed crossed and xcroseed over zero.

/////////////////////////////////////////////////////////////////////////////////////////////////
Show stocks where close is above 7

and average volume(60) is above 70000
and average volume(30) is above 70000
and average volume(17) is above 70000
and average volume(10) is above 70000
and average volume(5) is above 70000

and PPO(5,35) has been increasing for 1 days
and PPO(13,50) has been increasing for 1 days
and CCI has been increasing for 1 days
and Fast Stochastic(13,3) Fast %K has been increasing for 1 days
and MACD histogram(12,26) has been increasing for 1 days
and Momentum has been increasing for 1 days
and Ultimate Oscillator(7,14,28) has been increasing for 1 days
and Bollinger Oscillator(20) has been increasing for 1 days

add column separator
set{OVER, count(TSI(6,3,3) crossed above 0,1) *1}
set{UNDER, count(TSI(6,3,3) crossed below 0,1) * -1}
set{both2, OVER + UNDER}
set{CROSS, 1 - count(both2 equals 0,1)}
add column both2{TSI6}
set{var1, 2 * EMA(9)}
set{var2, cema(ema(9),9)}
set{DEMA, var1 - var2}
set{TEMA, T3(7,1)}
set{xUP, count(DEMA crossed above TEMA,1) *1}
set{xDOWN, count(DEMA crossed below TEMA,1) * -1}
set{both, xUP + xDOWN}
set{xOVER, 1 - count(both equals 0,1)}

add column both{D2/T3}
add column separator

/*close position within a 1-month price range*/
set{hi1mo,high 1 month high}
set{lo1mo,low 1 month low}
set{cllo1mo,close - lo1mo}
set{hilo1mo,hi1mo - lo1mo}
set{diff1,cllo1mo / hilo1mo}
set{%gain1mo,diff1 * 100}

/*close position within a 2-month price range*/
set{hi2mo,high 1 month high 1 month ago}
set{lo2mo,low 1 month low 1 month ago}
set{cllo2mo,close 1 month ago - lo2mo}
set{hilo2mo,hi2mo - lo2mo}
set{diff2,cllo2mo / hilo2mo}
set{%gain2mo,diff2 * 100}

/*close position within a 3-month price range*/
set{hi3mo,high 1 month high 2 month ago}
set{lo3mo,low 1 month low 2 month ago}
set{cllo3mo,close 2 months ago - lo3mo}
set{hilo3mo,hi3mo - lo3mo}
set{diff3,cllo3mo / hilo3mo}
set{%gain3mo,diff3 * 100}

/*EMA calc.*/
set{return1,%gain2mo + %gain3mo}
set{return2,return1 / 2}
set{return3,%gain1mo - return2}
set{return4,return3 * 0.6667}
set{return,return4 + return2}

add column return
draw T3(14,0.5)
draw TEMA on plot price
draw DEMA on plot price
draw TSI(6,3,3)
draw return line at 70
draw return line at 30

and DEMA >= TEMA
and CCI >= 0
and +DI(14) >= -DI(14)
and ADX(14,14) > 18
and ADX(14,14) >= -DI(14)
and Fast Stochastic(5,3) Fast %K > Fast Stochastic(5,3) Slow %D
and Fast Stochastic(13,3) Fast %K > 25
and Stochastic %K(15,5,3) > 25
and close >= T3(14,0.50)
and close > T3(5,0.7)
and close >= MA(40)
and close >= EMA(13)
and close > lower Bollinger Band(20,2.0)
and close > lower Keltner Band(10)

do not draw CROSS
do not draw xOVER
do not draw Momentum
do not draw stochastic(15,5,3) %K
do not draw Fast Stochastic(13,3) %K
do not draw Fast Stochastic(5,3) %K
do not draw ppo(5,35)
do not draw ppo(13,50)
do not draw CCI
do not draw MA(40)
do not draw EMA(13)
do not draw Bollinger Band(20,2.0)
do not draw keltner band(10)
do not draw ultimate oscillator(7,14,28)

//////////////////////////////////////////////////////////////////////////////////////////////







StockFetcher Forums · Filter Exchange · Niko's MAX (Moving Average Crossover) Filter<< 1 ... 2 3 4 5 6 ... 7 >>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.