StockFetcher Forums · Filter Exchange · KST (know sure thing)<< 1 2 3 >>Post Follow-up
Quilln
116 posts
msg #110064
Ignore Quilln
1/11/2013 12:09:06 AM

re: KST (know sure thing) [10,10,10,15,9 ]

Looking for a way to write a code using the above numbers that will show results for Today, 1 day back, 2 days back.

In other words, looking for the xovers for today, 1 day back and 2 days back.

Eman93
4,750 posts
msg #110110
Ignore Eman93
1/12/2013 12:30:27 AM

http://forums.stockfetcher.com/sfforums/?q=view&fid=1006&tid=25008&qrid=

dosent look like you can set the time period.

tomm1111
202 posts
msg #110113
Ignore tomm1111
1/12/2013 10:25:52 PM

I wrote this a couple years ago. This might help with what you are looking for.

Fetcher[
/* Short Term - Day */
set {sd101,close / close 9 days ago}
set{sd102,sd101 * 100}
set{sd10,sd102 - 100}
set{sd_10ma,cma(sd10,10)}

set {sd151,close / close 14 days ago}
set{sd152,sd151 * 100}
set{sd15,sd152 - 100}
set{sd_15ma,cma(sd15,10)}

set {sd201,close / close 19 days ago}
set{sd202,sd201 * 100}
set{sd20,sd202 - 100}
set{sd_20ma,cma(sd20,10)}

set {sd301,close / close 29 days ago}
set{sd302,sd301 * 100}
set{sd30,sd302 - 100}
set{sd_30ma,cma(sd30,15)}

set{var,sd_30ma * 4}
set{var1,sd_20ma * 3}
set{var2,sd_15ma * 2}
set{var3,var2 + var1}
set{var4, var + sd_10ma}
set{sd_kst,var3 + var4}

/* Intermediate Term - Week */
set {sw31,close / close 49 days ago}
set{sw32,sw31 * 100}
set{sw3,sw32 - 100}
set{sw3_3ma,cma(sw3,10)}

set {sw41,close / close 64 days ago}
set{sw42,sw41 * 100}
set{sw4,sw42 - 100}
set{sw4_4ma,cma(sw4,13)}

set {sw61,close / close 74 days ago}
set{sw62,sw61 * 100}
set{sw6,sw62 - 100}
set{sw6_6ma,cma(sw6,15)}

set {sw81,close / close 99 days ago}
set{sw82,sw81 * 100}
set{sw8,sw82 - 100}
set{sw8_8ma,cma(sw8,20)}

set{var02,sw8_8ma * 4}
set{var12,sw6_6ma * 3}
set{var22,sw4_4ma * 2}
set{var32,var22 + var12}
set{var42, var02 + sw3_3ma}
set{sw_kst,var32 + var42}

set{sd_ma,cema(sd_kst,5)}
set{sw_ma,cema(sw_kst,5)}

draw sd_kst
draw sd_ma on plot sd_kst
draw sw_kst
draw sw_ma on plot sw_kst

show stocks where close is above 1
and volume is above 100000

add column sd_kst
add column sw_kst
]



Quilln
116 posts
msg #110181
Ignore Quilln
1/15/2013 10:13:24 AM

Tomm,

Tried to run the sample, however kept getting the following error message.

"Your StockFetcher filter exceeds filter performance restrictions.
To run this filter, please upgrade to the StockFetcher Advanced subscription level."

Tried using the inhouse version, however the data is way to late to make a buy right out of the gate. I would have missed the bus.

http://forums.stockfetcher.com/sfforums/?q=view&fid=1006&tid=25008&qrid=

best regards,
Quilln -



tomm1111
202 posts
msg #110219
Ignore tomm1111
1/15/2013 11:10:19 PM

Sorry, it will only work with the advance SF subscription. I've only ever had the advanced subscription, therefore, I usually don't know at what point a filter will require it.

Quilln
116 posts
msg #110220
Ignore Quilln
1/15/2013 11:18:38 PM

Tomm,

Thanks for trying.

KST is the easiest way to find stocks moving upwards. It is very close to the TSI's. However, the KST smooths them out a little better.

Best regards,
Quilln

Cheese
1,374 posts
msg #110223
Ignore Cheese
1/16/2013 2:24:30 AM

Fetcher[
/* Cheap seat version of tomm1111's kst */
/* Short Term - Day */
set {sd101,close / close 9 days ago}
set{sd102,sd101 * 100}
set{sd10,sd102 - 100}
set{sd_10ma,cma(sd10,10)}

set {sd151,close / close 14 days ago}
set{sd152,sd151 * 100}
set{sd15,sd152 - 100}
set{sd_15ma,cma(sd15,10)}

set {sd201,close / close 19 days ago}
set{sd202,sd201 * 100}
set{sd20,sd202 - 100}
set{sd_20ma,cma(sd20,10)}

set {sd301,close / close 29 days ago}
set{sd302,sd301 * 100}
set{sd30,sd302 - 100}
set{sd_30ma,cma(sd30,15)}

set{var,sd_30ma * 4}
set{var1,sd_20ma * 3}
set{var2,sd_15ma * 2}
set{var3,var2 + var1}
set{var4, var + sd_10ma}
set{sd_kst,var3 + var4}

/* Intermediate Term - Week */
set {sw31,close / close 49 days ago}
set{sw32,sw31 * 100}
set{sw3,sw32 - 100}
set{sw3_3ma,cma(sw3,10)}

set {sw41,close / close 64 days ago}
set{sw42,sw41 * 100}
set{sw4,sw42 - 100}
set{sw4_4ma,cma(sw4,13)}

set {sw61,close / close 74 days ago}
set{sw62,sw61 * 100}
set{sw6,sw62 - 100}
set{sw6_6ma,cma(sw6,15)}

set {sw81,close / close 99 days ago}
set{sw82,sw81 * 100}
set{sw8,sw82 - 100}
set{sw8_8ma,cma(sw8,20)}

set{var02,sw8_8ma * 4}
set{var12,sw6_6ma * 3}
set{var22,sw4_4ma * 2}
set{var32,var22 + var12}
set{var42, var02 + sw3_3ma}
set{sw_kst,var32 + var42}

set{sd_ma,cema(sd_kst,5)}
set{sw_ma,cema(sw_kst,5)}

draw sd_kst
/* draw sd_ma on plot sd_kst */
set{sd_diff,sd_kst - sd_ma}
draw sw_kst
/* draw sw_ma on plot sw_kst */
set{sw_diff,sw_kst - sw_ma}

show stocks where close is above 1
and volume is above 100000

add column separator
add column sd_kst
add column sd_ma /* added */
add column sd_diff /* added */
SORT COLUMN 8 DESCENDING /* added */

add column separator
add column sw_kst
add column sw_ma /* added */
add column sw_diff /* added */
]





dashover
224 posts
msg #110266
Ignore dashover
1/16/2013 5:06:01 PM

Can you interpret what you believe this filter accomplishes? Thanks!

Quilln
116 posts
msg #110322
Ignore Quilln
1/18/2013 10:39:49 AM

re: KST list for kwik profits


http://forums.stockfetcher.com/sfforums/?q=view&fid=1006&tid=25008&qrid= these are the standards, however I would have missed the bus on or about Jan 7th. But, with a list of stocks that would have been posted on that date plus or minus a day would have picked up the below stocks. These lists are of the past, not the current.

SPLS and SLB chart/s from the above standard
http://www.stockfetcher.com/cgi-bin/popquote.pl?sym=SPLS&id=15246462&period=default&did=9544 on Jan 7th at $11.71

http://www.stockfetcher.com/cgi-bin/popquote.pl?sym=SLB&id=15246462&period=default&did=9544 on Jan 7th at $71.49

http://stockcharts.com/h-sc/ui?s=SLB&p=D&yr=0&mn=4&dy=0&id=p28848683076 the KST popped at the xover on Jan 7th while the TSI popped on or about the 4th. I would buy at the xover and wait for the next sell signal xover. Or take the profits off of the table and compound the monies into the next stock on the KST list.

http://stockcharts.com/h-sc/ui?s=SPLS&p=D&yr=0&mn=4&dy=0&id=p55151997416 ditto for SPLS.

Instead of waiting around, there are hundreds of more stocks to find per the current (today or yesterdays) list of stocks to buy for a kwik profit.

Hope you guys understand my plight and thanks in advance.

Best regards,
Quilln - a poor church mouse scratching for a living.




Cheese
1,374 posts
msg #110349
Ignore Cheese
modified
1/18/2013 11:08:23 PM

Hope this helps.


Fetcher[
/* attempt to simulate KST(10,15,20,30,10,10,10,15,9) */
/* from Beautiful British Columbia */
/* January 18, 2013 */

set{myKST_roc10_smooth10,roc(10,10)}
set{myKST_roc15_smooth10,roc(15,10)}
set{myKST_roc20_smooth10,roc(20,10)}
set{myKST_roc30_smooth15,roc(30,15)}

set{myKST_temp1,myKST_roc10_smooth10}
set{myKST_temp2,myKST_temp1+myKST_roc15_smooth10}
set{myKST_temp3,myKST_temp2+myKST_roc20_smooth10}
set{myKST_temp4,myKST_temp3+myKST_roc30_smooth15}
set{myKST,myKST_temp4/4}
set{myKST_signal9,cma(myKST,9)}


draw myKST_signal9 on plot myKST
myKST crossed above myKST_signal9

set{TSI2513,TSI(25,13)}
TSI2513 above cema(TSI2513,7)


chart-length 4 months
not otcbb
volume above 1,000,000
/* symlist(SPLS,SLB) */
]




StockFetcher Forums · Filter Exchange · KST (know sure thing)<< 1 2 3 >>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.