PureBytes Links
Trading Reference Links
|
Could somebody translate this ELA formula in AFL??
It is a really great indicator,called Fisher Transform, I saw it
work by a friend of mine using Tradestation.
It is really worth to translate it!
Thxs. Reni
Inputs: Price((H+L)/2),
Len(10);
Vars: MaxH(0),
MinL(0),
Fish(0);
MaxH=Highest(Price,Len);
MinL=Lowest(Price,Len);
Value1=.5*2*((Price-MinL)/(MaxH-MinL)-.5)
+ .5*Value1[1];
If Value1> .9999 then Value1 = .9999;
If Value1< .9999 then Value1 = -.9999;
Fish= 0.25*Log((1+Value1)/(1-Value1)) + 5* Fish[1];
Plot1 (Fish, "Fisher");
Plot2(Fish[1], "Trigger");
------------------------ 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/
|