PureBytes Links
Trading Reference Links
|
The MTR investor group published the code for this:
/*-------------------------------------------------------------------------------------
MTR Investors Group - www.MTRIG.com
System: 4% Model discovered by Ned Davis. This is used to determine the direction of the
stock Market. Once you know the direction the go LONG/SHORT an index ETF or your
Favorite stock. This model was made know by Martin Zweig in his book
Winning on Wall Street.
NOTE: This formula is the classic model. To see daily automated results of an enhanced version
of this formula stop by www.MTRIG.com.
How To Use:
1. This system works ONLY with the Value Line Arithmetic Index. In Yahoo! the
symbol is ^VAY. Try to run it on the NASDAQ, SP500, or the DOW the results are poor.
2. Overlay the system to see BUY/SELL indicators on a ^VAY chart.
3. Run a back-test on the ^VAY symbol to test the results.
---------------------------------
Returns: 1/1/1998 to 6/20/2009
Net Risk Adjusted Return: 408.01%
Winners: 45.57%
---------------------------------
-------------------------------------------------------------------------------------*/
//VC = The Close of the Value Line Arithmetic Index
VC = Foreign("^VAY", "Close");
//Compute the percent change of the VAY week over week.
PCTChange = ((VC - Ref(VC,-5 ) ) / Ref(VC,-5 ) ) * 100;
//Look for 4% changes this week compared to last week.
PCT_B = 4;
PCT_S = 4;
PCT_S = PCT_S * -1;
// BUYS And SELLS
xBuy = PCTChange >= PCT_B;
xSell = PCTChange <= PCT_S;
PlotBuy = ExRem(xBuy ,xSell);
PlotSell = ExRem(xSell ,xBuy );
Buy = (PlotBuy);
Sell = (PlotSell );
Short=Sell;
Cover=Buy;
PlotShapes(shapeUpArrow * PlotBuy , colorGreen, 0,L);
PlotShapes(shapeDownArrow * PlotSell , colorRed, 0,H);
--- In amibroker@xxxxxxxxxxxxxxx, Gautam C Bajaj <gautam108@xxx> wrote:
>
> hi appreciate if you could help convert the attached code to afl
>
> thanks
> gautam
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|