StockFetcher Forums · Filter Exchange · does anybody know about this indicator?<< 1 2 >>Post Follow-up
dk58198
19 posts
msg #88481
Ignore dk58198
2/21/2010 9:37:09 AM

does any body know about noth system insync indicator and how to write it?

thoank you
david

four
5,087 posts
msg #88484
Ignore four
2/21/2010 12:32:41 PM

http://www.precisiontradingsystems.com/INSYNC.htm

This Indicator was conceptualised by Norm North in 1995, and is a consensus style oscillator indicator.

(Consensus indicators use many indicators to output a value)
A nice piece of code from Norm North of North Systems which uses a summation of 10 different components, ranging from commodity channel index, relative strength index (RSI) and money flow index to moving average convergence/divergence, Bollinger bands, among others.
The Insync Index ranges from -65 to +65 and signals when the extreme point is reached and then retreats back from it. From that point on, you're on your own.


---
Chetron?

'summation of 10 different components'

chetron
2,817 posts
msg #88527
Ignore chetron
2/22/2010 2:35:36 PM

MAYBE....

Fetcher[
/* TACHIKAWA */

SET{VAR1,COUNT(Bollinger %B(20,2) ABOVE 0.95,1)}
SET{VAR2,COUNT(Bollinger %B(20,2) BELOW 0.05,1)}
SET{VAR3,COUNT(CCI ABOVE 100,1)}
SET{VAR4,COUNT(CCI BELOW -100,1)}
SET{VAR5A,EMv(10,10) - AVG EMv(10,10)}
SET{VAR5B,AVG EMV(10,10) * 1000000}
SET{VAR5,VAR5A * 1000000}
SET{VAR6,COUNT(VAR5 BELOW 0,1)}
SET{VAR7,COUNT(VAR5 ABOVE 0,1)}
SET{VAR8,COUNT(VAR5B BELOW 0,1)}
SET{VAR9,COUNT(VAR5B ABOVE 0,1)}
SET{VAR10,VAR7 + VAR9}
SET{VAR11,VAR6 + VAR8}
SET{VAR12,COUNT(MACD FAST LINE ABOVE 0,1)}
SET{VAR13,COUNT(MACD HISTOGRAM ABOVE 0,1)}
SET{VAR14,VAR12 + VAR13}
SET{VAR15,COUNT(MACD FAST LINE BELOW 0,1)}
SET{VAR16,COUNT(MACD HISTOGRAM BELOW 0,1)}
SET{VAR17,VAR15 + VAR16}
SET{VAR18,COUNT(MFI(20) ABOVE 80,1)}
SET{VAR19,COUNT(MFI(20) BELOW 20,1)}

SET{VAR40A,DPO(18) 10 DAY AGO}
SET{VAR40,VAR40A - CMA(VAR40A,10)}
SET{VAR41,COUNT(VAR40A BELOW 0,1)}
SET{VAR42,COUNT(VAR40 BELOW 0,1)}
SET{VAR43A,VAR41 + VAR42}
SET{VAR43,VAR43A - 2}
SET{VAR44,COUNT(VAR40A ABOVE 0,1)}
SET{VAR45,COUNT(VAR40 ABOVE 0,1)}
SET{VAR46A,VAR44 + VAR45}
SET{VAR46,VAR46A - 2}

SET{VAR47,ROC(10)}
SET{VAR48,CMA(ROC(10),10)}
SET{VAR49,VAR47 - VAR48}
SET{VAR50,COUNT(VAR47 BELOW 0,1)}
SET{VAR51,COUNT(VAR49 BELOW 0,1)}
SET{VAR52,COUNT(VAR47 ABOVE 0,1)}
SET{VAR53,COUNT(VAR49 ABOVE 0,1)}
SET{VAR54,VAR50 + VAR51}
SET{VAR55,VAR52 + VAR53}
SET{VAR56,COUNT(RSI(14) ABOVE 70,1)}
SET{VAR57,COUNT(RSI(14) BELOW 30,1)}
SET{VAR58,COUNT(Stochastic %D(14,3,3) ABOVE 80,1)}
SET{VAR59,COUNT(Stochastic %K(14,1,3) ABOVE 80,1)}
SET{VAR60,VAR59 + VAR58}
SET{VAR61,COUNT(Stochastic %D(14,3,3) BELOW 20,1)}
SET{VAR62,COUNT(Stochastic %K(14,1,3) BELOW 20,1)}
SET{VAR63,VAR61 + VAR62}



SET{VAR21,VAR1 + VAR3}
SET{VAR22,VAR21 + VAR10}
SET{VAR23,VAR22 + VAR14}
SET{VAR24,VAR23 + VAR18}
SET{VAR25,VAR24 + VAR46}
SET{VAR26,VAR25 + VAR55}
SET{VAR27,VAR26 + VAR56}
SET{VAR28,VAR27 + VAR60}
SET{VBUY,VAR28 + VAR7}

SET{VAR31,VAR2 + VAR4}
SET{VAR32,VAR31 + VAR11}
SET{VAR33,VAR32 + VAR17}
SET{VAR34,VAR33 + VAR19}
SET{VAR35,VAR34 + VAR43}
SET{VAR36,VAR35 + VAR54}
SET{VAR37,VAR36 +VAR57}
SET{VAR38,VAR37 + VAR63}
SET{VSHORT,VAR38 + VAR6}

SET{VAR100,VBUY - VSHORT}
SET{VNSI,VAR100 * 5}

DRAW VSHORT
DRAW VBUY

VNSI BELOW -60.5
CLOSE ABOVE .1
VOLUME ABOVE 1000000








]



chetron
2,817 posts
msg #88534
Ignore chetron
2/22/2010 5:00:11 PM

ADVANCED...

Fetcher[
/* ADVANCED SUBS */
/* TACHIKAWA */

SET{VAR1,COUNT(Bollinger %B(20,2) ABOVE 0.95,1)}
SET{VAR2,COUNT(Bollinger %B(20,2) BELOW 0.05,1)}
SET{VAR3,COUNT(CCI ABOVE 100,1)}
SET{VAR4,COUNT(CCI BELOW -100,1)}
SET{VAR5A,EMv(10,10) - AVG EMv(10,10)}
SET{VAR5B,AVG EMV(10,10) * 1000000}
SET{VAR5,VAR5A * 1000000}
SET{VAR6,COUNT(VAR5 BELOW 0,1)}
SET{VAR7,COUNT(VAR5 ABOVE 0,1)}
SET{VAR8,COUNT(VAR5B BELOW 0,1)}
SET{VAR9,COUNT(VAR5B ABOVE 0,1)}
SET{VAR10,VAR7 + VAR9}
SET{VAR11,VAR6 + VAR8}
SET{VAR12,COUNT(MACD FAST LINE ABOVE 0,1)}
SET{VAR13,COUNT(MACD HISTOGRAM ABOVE 0,1)}
SET{VAR14,VAR12 + VAR13}
SET{VAR15,COUNT(MACD FAST LINE BELOW 0,1)}
SET{VAR16,COUNT(MACD HISTOGRAM BELOW 0,1)}
SET{VAR17,VAR15 + VAR16}
SET{VAR18,COUNT(MFI(20) ABOVE 80,1)}
SET{VAR19,COUNT(MFI(20) BELOW 20,1)}

SET{VAR40A,DPO(18) 10 DAY AGO}
SET{VAR40,VAR40A - CMA(VAR40A,10)}
SET{VAR41,COUNT(VAR40A BELOW 0,1)}
SET{VAR42,COUNT(VAR40 BELOW 0,1)}
SET{VAR43A,VAR41 + VAR42}
SET{VAR43,VAR43A - 2}
SET{VAR44,COUNT(VAR40A ABOVE 0,1)}
SET{VAR45,COUNT(VAR40 ABOVE 0,1)}
SET{VAR46A,VAR44 + VAR45}
SET{VAR46,VAR46A - 2}

SET{VAR47,ROC(10)}
SET{VAR48,CMA(ROC(10),10)}
SET{VAR49,VAR47 - VAR48}
SET{VAR50,COUNT(VAR47 BELOW 0,1)}
SET{VAR51,COUNT(VAR49 BELOW 0,1)}
SET{VAR52,COUNT(VAR47 ABOVE 0,1)}
SET{VAR53,COUNT(VAR49 ABOVE 0,1)}
SET{VAR54,VAR50 + VAR51}
SET{VAR55,VAR52 + VAR53}
SET{VAR56,COUNT(RSI(14) ABOVE 70,1)}
SET{VAR57,COUNT(RSI(14) BELOW 30,1)}
SET{VAR58,COUNT(Stochastic %D(14,3,3) ABOVE 80,1)}
SET{VAR59,COUNT(Stochastic %K(14,1,3) ABOVE 80,1)}
SET{VAR60,VAR59 + VAR58}
SET{VAR61,COUNT(Stochastic %D(14,3,3) BELOW 20,1)}
SET{VAR62,COUNT(Stochastic %K(14,1,3) BELOW 20,1)}
SET{VAR63,VAR61 + VAR62}



SET{VAR21,VAR1 + VAR3}
SET{VAR22,VAR21 + VAR10}
SET{VAR23,VAR22 + VAR14}
SET{VAR24,VAR23 + VAR18}
SET{VAR25,VAR24 + VAR46}
SET{VAR26,VAR25 + VAR55}
SET{VAR27,VAR26 + VAR56}
SET{VAR28,VAR27 + VAR60}
SET{VSHORT,VAR28 + VAR7}

SET{VAR31,VAR2 + VAR4}
SET{VAR32,VAR31 + VAR11}
SET{VAR33,VAR32 + VAR17}
SET{VAR34,VAR33 + VAR19}
SET{VAR35,VAR34 + VAR43}
SET{VAR36,VAR35 + VAR54}
SET{VAR37,VAR36 +VAR57}
SET{VAR38,VAR37 + VAR63}
SET{VBUY,VAR38 + VAR6}

SET{VAR100,VSHORT - VBUY}
SET{VNSI,VAR100 * 5}
set{vbi,count(vnsi below -64.5,1)}
set{vSS,count(vnsi ABOVE 64.5,1)}

DRAW VNSI LINE AT 65
DRAW VNSI LINE AT -65

DRAW VSHORT
DRAW VBUY
draw VSS
DRAW vbi

VNSI BELOW -60.5
CLOSE ABOVE .1
VOLUME ABOVE 100000

]







dk58198
19 posts
msg #88543
Ignore dk58198
2/22/2010 10:00:30 PM

thank you guys

tomm1111
202 posts
msg #88550
Ignore tomm1111
2/23/2010 2:04:07 AM

Chetron, Nice work!

chetron
2,817 posts
msg #88556
Ignore chetron
2/23/2010 6:58:21 AM

thanx tomm

thyname
16 posts
msg #88574
Ignore thyname
2/23/2010 11:00:59 AM

Wow, this is really advanced stuff here from Chetron!! I wonder if I would ever be able to do this. I just subscribed to StockFetcher, and trying to learn by reading the usage guide first. Looks very promising. Any suggestions you guys may have for me on how to learn building these filters? Thanks!

karennma
8,057 posts
msg #88576
Ignore karennma
2/23/2010 11:06:51 AM

Building a filter is only step 1.
The hard part is KNOWING HOW TO TRADE the results.


chetron
2,817 posts
msg #88578
Ignore chetron
2/23/2010 12:04:10 PM

build it one line at a time, validate the results and move on to the next line.




StockFetcher Forums · Filter Exchange · does anybody know about this indicator?<< 1 2 >>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.