PureBytes Links
Trading Reference Links
|
Hello,
Using AMA/AMA2:
x = AMA( a * b, Condition == True );
Using loops:
for( i = 1; i < BarCount; i++ )
{
if( Condition[ i ] )
{
x[ i ] = a * b;
}
else
{
x[ i ] = x[ i - 1 ];
}
}
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "Keith Bennett" <kbennett@xxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, May 08, 2003 12:33 PM
Subject: [amibroker] How to solve in AFL.....
>
> Hi,
>
> The following situation frequently occurs, but it doesn't seem
> possible to solve directly due to the self reference.
>
> How do you tackle this in AFL:
>
> x = IIF(Condition is TRUE, a * b,
> IIF(Condition is FALSE, Ref(x,-1),NULL));
>
> Thanks
> Keith
>
>
>
> 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/
>
>
>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Rent DVDs from home.
Over 14,500 titles. Free Shipping
& No Late Fees. Try Netflix for FREE!
http://us.click.yahoo.com/BVVfoB/hP.FAA/uetFAA/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/
|