Sniffer System

kenneth

Well-Known Member
Code:
Ticker	Date/Time	FMA	BUY	Target1	Target2	Target3	Volume	
ARVINDMILL11/27/2007	70.95	71.80	82.70	90.02	99.79	2832246	
BATAINDIA11/27/2007	230.88	233.60	270.30	293.77	325.06	163535	
BONGAIREFN11/27/2007	92.57	98.65	120.30	136.86	158.94	10403245	
BSELINFRA11/27/2007	69.56	71.85	83.11	91.16	101.90	304044	
CHENNPETRO11/27/2007	399.15	408.30	493.39	556.38	640.37	1826878	
DALMIACEM11/27/2007	495.65	496.00	554.87	592.43	642.52	2846	
DCB	11/27/2007	123.59	124.30	146.58	161.94	182.42	653375	
GEOJIT	11/27/2007	46.63	48.25	58.50	65.59	75.04	574344	
IDBI	11/27/2007	165.09	169.20	193.20	210.80	234.27	9974245	
IFCI	11/27/2007	89.86	90.65	108.86	120.46	135.93	33882652	
J&KBANK	11/27/2007	752.99	756.20	811.12	850.45	902.90	4155	
PETRONET11/27/2007	103.54	105.25	124.66	138.75	157.53	13380547	
SKUMARSYNF11/27/2007	150.69	151.15	181.30	200.29	225.63	1556509	
STROPTICAL11/27/2007	308.03	310.10	364.32	400.46	448.64	367789	
TRIVENI	11/27/2007	138.32	138.40	172.80	195.56	225.91	1651958
 

kenneth

Well-Known Member
Code:
Ticker	Date/Time	FMA	BUY	Target1	Target2	Target3	Volume	
ADLABSFILM11/28/2007	931.54	941.75	1071.98	1166.72	1293.04	576038	
ASIANPAINT11/28/2007	1001.27	1006.45	1081.44	1129.51	1193.60	276384	
BHEL	11/28/2007	2668.62	2725.30	2964.58	3151.27	3400.19	890548	
CENTURYTEX11/28/2007	1099.75	1105.70	1248.61	1340.82	1463.77	320850	
CUMMINSIND11/28/2007	394.48	412.40	459.48	496.55	545.98	548703	
EKC	11/28/2007	320.21	329.10	385.64	423.65	474.31	445804	
HCC	11/28/2007	199.78	200.15	233.66	255.49	284.60	1769752	
ISPATIN11/28/2007	43.34	43.95	52.55	59.01	67.64	20109480	
JINDALSAW11/28/2007	821.16	857.90	1006.95	1123.35	1278.55	323468	
KPIT	11/28/2007	103.05	120.20	127.06	139.18	155.35	772010	
MONNETISPA11/28/2007	401.01	403.65	443.81	469.48	503.71	250260	
NAGARCONST11/28/2007	311.31	314.15	366.27	398.79	442.14	620327	
REDINGTON11/28/2007	339.58	364.90	406.21	445.16	497.08	456916	
TATACHEM11/28/2007	313.56	319.50	347.29	367.84	395.24	1367953
 

kenneth

Well-Known Member
Code:
Ticker	Date/Time	FMA	BUY	Target1	Target2	Target3	Volume	
EDUCOMP11/29/2007	3234.39	3404.50	3790.45	4087.41	4483.35	106658	
HDFCBANK11/29/2007	1627.99	1674.40	1861.38	1997.28	2178.47	1043514	
ORBITCORP11/29/2007	725.65	750.65	879.41	966.54	1082.72	309149	
RAJESHEXPO11/29/2007	850.25	858.30	920.71	963.67	1020.94	278344	
RELIANCE11/29/2007	2804.53	2812.55	3043.52	3181.76	3366.07	4045517	
RPL	11/29/2007	207.55	215.60	250.22	277.12	312.99	176590960	
SADBHAV	11/29/2007	1075.57	1100.10	1335.34	1492.80	1702.75	11356	
SBIN	11/29/2007	2261.81	2267.90	2495.69	2637.60	2826.81	1214774	
UNITECH	11/29/2007	366.08	372.05	416.35	448.02	490.25	3753860	
UTVSOF	11/29/2007	713.48	800.25	890.34	989.00	1120.55	691634	
VSNL	11/29/2007	539.58	557.25	626.47	677.71	746.02	1857069
 
Kenneth,

Few clarifications:

1. You daily list only few scrips for trading as per the snifter system. Do you get ONLY these scrips, which get selected as per snifter system for the day ? or do you further filter from a set of scripts and provide only the filtered list?

2. I get almost 100's of scripts (for NSE list) satisfying the three conditions as per the code I have posted here. what additional criteria do you use to provide this filtered list?

John
 

kenneth

Well-Known Member
Hi John,

I have a list of 200 Scrips filtered using Murthy's "My 200 Stocks"

SECTION_BEGIN("MY 200 Stocks");
/* My200Stocks.afl compiled by MurthyMSR */

//Parameters
MyCL = Param( "CL", 10, 10, 100, 10 );
MyVK = Param( "VK", 30, 10, 100, 10 );
MyTL = Param( "TL", 300, 100, 1000, 100 );

TLM = EMA(C*V/100000,100) ;
include = C> MyCL AND V/1000> MyVK AND C*V/100000 > MyTL AND TLM > 0.333 * MyTL ;

Buy = include ;
Sell= O ;

/* Exploration */
Filter= Buy ;
{
SetOption("NoDefaultColumns", True );
AddTextColumn( Name(), "Symbol ", 77 , colorDefault);

AddColumn(C, "CL", format=4.1 );
AddColumn(V/1000, "VK", format=6.0);
AddColumn(C*V/100000, "TL", format=6.0);
AddColumn(TLM, "TLM", format=6.0);

AddColumn(DateTime(), "Date", formatDateTime );
}
_SECTION_END();

Regards
ken
 

mayavi99

Well-Known Member
Dear Kenneth,

This post is to say a Big Thank you.

I am a newbie to the market as well as this forum. Last night I was going through this thread, though I could not make much out of the technical analysis you have all provided. However from your post, I selected the scrip Orbit and bought 20 in the opening @ 758. After 30 minutes, I sold it @ 775 gaining a cool 340 bucks.

Let me thank you again. Please continue the good work for novices like me.

Regards,
mayavi
 

kenneth

Well-Known Member
Hi Amit

Default of the formula are

Select all the stocks Close > 10 and Volume > 30000 and Total Value > 3 cr and 100 Ema Value > .333 of the total value

Regards
ken
 

kenneth

Well-Known Member
Code:
Ticker	Date/Time	FMA	BUY	Target1	Target2	Target3	Volume	
ALOKTEXT11/30/2007	72.86	76.35	86.53	94.48	105.09	4550881	
BANKBARODA11/30/2007	367.69	382.20	427.09	463.30	511.57	683017	
BANKINDIA11/30/2007	348.35	350.75	395.17	427.27	470.08	1244959	
BONGAIREFN11/30/2007	92.71	95.65	117.72	132.12	151.32	5510667	
BRFL	11/30/2007	313.75	319.35	371.53	407.23	454.85	359884	
DCW	11/30/2007	22.14	23.55	27.05	29.88	33.65	2740212	
HCL-INSYS11/30/2007	226.01	229.35	256.46	275.00	299.70	87796	
IFCI	11/30/2007	89.99	94.55	108.60	119.34	133.67	48155080	
IGL	11/30/2007	154.78	156.60	187.25	206.93	233.18	199152	
IOC	11/30/2007	539.98	543.20	627.57	683.82	758.81	798273	
LICHSGFIN11/30/2007	339.99	344.90	397.77	434.49	483.44	1037488	
MCDOWELL-N11/30/2007	1872.32	2067.70	2247.40	2439.01	2694.47	729863	
MRPL	11/30/2007	116.36	121.00	147.80	165.60	189.34	10927527	
MTNL	11/30/2007	169.68	171.85	195.65	212.96	236.04	6238288	
PUNJLLOYD11/30/2007	481.61	509.35	556.44	600.50	659.24	3318565	
RCF	11/30/2007	70.25	74.80	86.53	96.61	110.06	2553935	
RNRL	11/30/2007	157.94	168.65	194.36	215.26	243.12	65143324	
SCI	11/30/2007	248.49	266.95	303.67	334.95	376.65	1521526	
STER	11/30/2007	918.57	1032.05	1130.42	1239.93	1385.95	6965221	
WELGUJ	11/30/2007	394.50	418.10	478.28	526.71	591.28	1525298
 
Last edited:

Similar threads