PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "goodmanz25" <goodmanz25@xxxx>
wrote:
> Does anybody know or have the "Mass Index Indicator" formula ?
>
> - Purshotam K
Sure. Mass Index explained at:
http://www.marketscreen.com/help/atoz/default.asp?hideHF=&Num=60
Here's a quick AFL
// AFL
// Mass Index (originally by Donald Dorsey)
ninedema = EMA(H - L, 9);
ndeofnde = EMA(ninedema, 9);
massindex = Sum( (ninedema/ndeofnde), 25 );
Plot(massindex, "Mass Index", colorBlack, styleLine);
Plot(26.5, "", colorOrange, styleLine);
Plot(27, "", colorOrange, styleLine);
GraphXSpace = 5;
// end AFL
Cheers, Jim
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> 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/
|