PureBytes Links
Trading Reference Links
|
I'll try, but how about the second condition (Crossing Signal/zero
line)?
I cannot imagine the "Exrem "function with a third term ????
I write below the whole formula without the graphic part:
COND1=Cross(Signal(),MACD())OR Ref(Cross(Signal(),MACD()),-1);
COND2=Cross(Signal(),0);
COND1=ExRem(COND1,COND2);COND2=ExRem(COND2,COND1);
G=COND1;
// AA PART
Filter=G;
AddColumn(C,"");
Sell=Filter;
--- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso" <ajf1111@xxxx>
wrote:
> Gilles,
>
> Does this help to see the signals....load into AA..n last
quotations, n=1,
> explore.
> COND1=Cross(Signal(),MACD())OR Ref(Cross(Signal(),MACD()),-1);
>
> Condx=Cross(Signal(),MACD());//cond1 first part
>
> conD2=Ref(Cross(Signal(),MACD()),-1);//Second Part
>
>
>
> Filter=cond1 OR Condx OR Cond2;
>
> AddColumn(Cond1,"cond1full");
>
> AddColumn(Condx,"cond1abbrev");
>
> AddColumn(Cond2,"cond2_REF");
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.516 / Virus Database: 313 - Release Date: 9/2/2003
------------------------ 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/
|