[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] Re: Helper duudes: Whadya say let's work up a to do list for...



PureBytes Links

Trading Reference Links



Is this something like it?  When you chart it, to change the
parameters click on the chart then hit Ctrl-R or right-click and select
"Parameters".
HHP
=====================================
 /*  
Modified MACD Indicator   */
ST =
Param("Short
Term
MA",12,3,55);
LT =
Param("Long
Term
MA",26,12,125);
Trigger =
Param("Trigger
Line",9,1,21);
Trend =
Param("Trending
Activity",0,-10,10);
Value =
100
*
(EMA(C,ST)
-
EMA(C,LT))
/
EMA(C,LT);
Plot(Value,"Value",colorBlue,styleLine);
Plot(EMA(Value,Trigger),"Trigger",colorRed,styleLine);
Plot(Trend,"Trend",colorWhite,styleLine);
PlotGrid(0,colorBlack);
===========================================

At 11:22 PM 03/04/2004, you wrote:
Hi all, I have a modified MACD
indicator for Metastock and I can't 
work out the AFL equivilant.

ST:=Input("Short Term M.A.",3,55,12);
LT:=Input("Long Term M.A.",12,125,26);
Trigger:=Input("Trigger Line",1,21,9);
Trend:=Input("Trending Activity",-10,10,0);
Value:=((Mov(CLOSE,ST,E)-Mov(CLOSE,LT,E))/Mov(CLOSE,LT,E))*100;
Value;
Mov(Value,Trigger,E);
Trend;
0;
Hope this makes sense.
Cheers  Bruiserbbq


------------------------ 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/
 


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 the Yahoo! Terms of Service.