PureBytes Links
Trading Reference Links
|
Ed, this is a system that I use that works quite well. The
code below requires that three different conditions have to be met, before a buy
signal is generated. Cond1 ,of course, must happen
today. The other conditions could also be happening today, but you
can also require that they happen on prior days. I created
this iif( system so I
could check sequential conditions going back in time starting with today, and
then continuing to look back in time one day at a time. So
I make cond2 like this:
cond2=ref(whatever),-1). Hope this helps. Ron
D
PAST3=IIf<FONT
size=1>(cond4is
met, <FONT
size=1>PAST4,1);
PAST2=IIf<FONT
size=1>(cond3is
met, <FONT
size=1>PAST3,0) ;
PAST1=IIf(<FONT
face="Courier New" size=1>cond2is met, PAST2<FONT
face="Courier New" size=1> ,<FONT color=#ff00ff
size=1>0);
today=IIf<FONT face="Courier New"
size=1>(cond1is met, past1<FONT face="Courier New"
size=1> ,0<FONT
size=1>);
Buy=Filter AND today;
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
ed2000nl
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Sunday, October 05, 2003 3:13
PM
Subject: [amibroker] if else else
else
hi,because I can't jump directly out of a loop in AFL I want to
make use of a construction (I think it is called nesting if
statements):if (condition) {} else {if (condition)
{}} else {if (condition) {} } else
{if (condition) {}}is this possible in
AFL?thanks, Ed------------------------ Yahoo! Groups
Sponsor ---------------------~-->Buy Ink Cartridges or Refill Kits for
your HP, Epson, Canon or LexmarkPrinter at MyInks.com. Free s/h on orders
$50 or more to the US & Canada.<A
href="">http://www.c1tracking.com/l.asp?cid=5511<A
href="">http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM---------------------------------------------------------------------~->Send
BUG REPORTS to <A
href="">bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
<A
href="">suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: <A
href="">amiquote@xxxxxxxxxxxxxxx (Web
page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to <A
href="">http://docs.yahoo.com/info/terms/
---Outgoing mail is certified Virus Free.Checked by AVG
anti-virus system (<A
href="">http://www.grisoft.com).Version: 6.0.522
/ Virus Database: 320 - Release Date: 9/29/2003
Yahoo! Groups Sponsor
ADVERTISEMENT
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 the Yahoo! Terms of Service.
|