PureBytes Links
Trading Reference Links
|
FDRXX/FGRXX are money market mutual funds.
--- In amibroker@xxxxxxxxxxxxxxx, "Dave Merrill" <dmerrill@xxxx>
wrote:
> Salil, thanks for this.
>
> I can't find FDRXX though. is that just your shorthand
for "whatever index
> you want to use"? how is FT/Trade set up? do you pick the index
yourself, or
> is it predefined?
>
> thanks,
>
> dave
>
>
> > Thanks. Bill also worked out the values that match with
FastTrack.
> >
> > http://groups.yahoo.com/group/amibroker/message/46568
> >
> > BTW, here is formula for AccuTrack that matches with Trade.
> >
> > fnd = NAME();
> > ind = "FDRXX";
> > fund = Foreign(fnd, "Close");
> > index = Foreign(ind, "Close");
> > fast = 6;
> > slow = 24;
> >
> > RawAT = EMA((EMA(ROC(fund,1), slow) - EMA(ROC
(index,1),slow)),fast);
> > tradeAccuTrack = RawAT * 265;
> >
> > Plot(tradeAccuTrack, "AccuTrack", colorRed);
> > PlotGrid(0);
> > GraphXSpace = 5;
> >
> > Title = " " + Date()
> > + " Trade AccuTrack of "
> > + fnd + " / " + ind
> > + " [" +WriteVal(tradeAccuTrack, 1.2)+"] "
> > ;
> >
> > Regards,
> > - Salil V Gangal
------------------------ 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/l.m7sD/LIdGAA/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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|