PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "Herman van den Bergen"
<psytek@xxxx> wrote:
> This comes up a million times and is a constant frustration for ex-
MS users;
> the collective number of hours lost on this by new-comers must be
in the
> thousands.
>
> Can somebody write an MS-type Prev() in afl and add it to the afl
library?
Herman,
I don't think that's possible. According to the Metastock Formula
Primer "PREV is a special value that refers to the current formulas'
value for the previous period". The AFL translation below covers only
the AMA-type case. IMHO there are other cases where this translation
doesn't fit.
Greetings, Thomas
>
> // PREV
> Z =(A*B)+(C*PREV);
>
> can be written in AFL as:
>
> Z = AMA2( A(array), B, C );
>
> also:
>
> xx = FactorA * Close + (FactorB * PREV(xx)); // metastock
>
> translates to:
>
> xx = AMA2( Close, FactorA, FactorB );
>
> best regards,
> herman.
>
> -----Original Message-----
> From: gunovanengel [mailto:gunovanengel@x...]
> Sent: Monday, April 04, 2005 3:11 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] If(C<PREV,StLong,Max(StLong,PREV));
>
>
>
> How do I change this to AmiBroker code
>
> Thanks
> Guno
>
> If(C<PREV,StLong,Max(StLong,PREV));
>
>
>
>
>
> Please note that this group is for discussion between users only.
>
> To get support from AmiBroker please send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
>
>
>
>
> --------------------------------------------------------------------
--------
> --
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.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/
|