PureBytes Links
Trading Reference Links
|
Scott,
The key to using a low-lag moving average within the MACD is to make the fast line have as little lag as possible and the slower line have lots of lag and inertia. This way the slower line continues to rise after the faster line has already turned around. This gives the earliest intersections.
Fastline = JRC.JMA ( close, 8, 0 ) ;
Slowline = average ( close, 20 ) ;
MyMACD = FastLine - Slowline ;
MyHistogram = MyMacd - average ( MyMACD, 5 ) ;
- Mark Jurik
-----Original Message-----
From: Scott Jimmerson [SMTP:howdy@xxxxxx]
Sent: Tuesday, April 27, 1999 9:22 AM
To: omega-list@xxxxxxxxxx
Subject: macd/jurik
Could someone please send an example of how to insert a Jurik ama function
into a MACD indicator? I know this is simple, but I just haven't had any
luck making it work. Thanks Scott
|