StockFetcher Forums · Filter Exchange · Zero Lag MACD<< >>Post Follow-up
KSK8
561 posts
msg #146429
Ignore KSK8
2/4/2019 2:44:50 PM

Felt this needed to be added to SF

Fetcher[

market is NASDAQ

/* fast line */
set{ema1, ema(12)}
set{ema2, cema(ema1,12)}
set{differenceFast, ema1-ema2}
set{zerolagEMA, ema1+differenceFast}
set{demaFast1, 2*ema1}
set{demaFast, demaFast1-ema2}

/* slow line */
set{emas1, cema(close,26)}
set{emas2, cema(emas1,26)}
set{differenceSlow, emas1-emas2}
set{zerolagslowMA, emas1 + differenceSlow}
set{demaSlow1, 2*emas1}
set{demaSlow, demaSlow1-emas2}

/* macd line */
set{ZeroLagMACD, demaFast-demaSlow}

/* signal line */
set{emasig1, cema(ZeroLagMACD, 9)}
set{emasig2, cema(emasig1, 9)}
set{signal1, 2*emasig1}
set{signal, signal1-emasig2}

draw MACD Fast Line(12,26,9)

draw signal on plot ZeroLagMACD

]





chi-town
44 posts
msg #146442
Ignore chi-town
2/5/2019 8:40:05 AM

So is this the same?

Close above 5
Average volume above 200000
set{double_ema, cema(ema(12),12)}
set{2ema, ema(12) * 2}
set{fastlag, 2ema - double_ema}

set{double_emalong, cema(ema(26),26)}
set{2emalong, ema(26) * 2}
set{slowlag, 2emalong - double_emalong}

set{zerolag, fastlag - slowlag}

set{signal1, cema(zerolag, 9)}
set{signal2, cema(signal1, 9)}
set{signal3, signal1 * 2}
set{signal, signal3 - signal2}

draw zerolag
draw signal on plot zerolag]


KSK8
561 posts
msg #146444
Ignore KSK8
2/5/2019 10:42:48 AM

I believe so yes.

chi-town
44 posts
msg #146445
Ignore chi-town
2/5/2019 10:52:46 AM

Thanks


nibor100
1,010 posts
msg #146460
Ignore nibor100
2/6/2019 6:34:37 PM

for those who want to compare the Zerolag histogram to the standard MACD histogram,
use the filter below,

Ed S.

Fetcher[

Close above 5
Average volume above 200000
set{double_ema, cema(ema(12),12)}
set{2ema, ema(12) * 2}
set{fastlag, 2ema - double_ema}

set{double_emalong, cema(ema(26),26)}
set{2emalong, ema(26) * 2}
set{slowlag, 2emalong - double_emalong}

set{zerolag, fastlag - slowlag}

set{signal1, cema(zerolag, 9)}
set{signal2, cema(signal1, 9)}
set{signal3, signal1 * 2}
set{signal, signal3 - signal2}

set{zerohist, zerolag - signal}

draw zerohist
plottype{zerohist,zerobar}

draw signal on plot zerohist
draw zerolag on plot zerohist

draw MACD Fast Line(12,26,9)
]



chi-town
44 posts
msg #146461
Ignore chi-town
2/6/2019 8:00:38 PM

Thanks Ed,
Has anyone used Zero Lag Macd with success?


KSK8
561 posts
msg #146463
Ignore KSK8
2/6/2019 11:49:57 PM

chi-town,

It depends on how you use it; spotting divergence, trend confirmation, measuring trend strength, etc.

StockFetcher Forums · Filter Exchange · Zero Lag MACD<< >>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.