PureBytes Links
Trading Reference Links
|
Thank you Terry. Now I understand the difference.
Booker
--- In amibroker@xxxxxxxxxxxxxxx, "Terry" <MagicTH@xxx> wrote:
>
> Example:
>
> Buy = b
> Sell = s
> No signal = n
> True = 1
> False = 0
>
> Hypothetical signals:
> b n b n n n b n n s n b
>
> After ExRem:
>
> 1 0 0 0 0 0 0 0 0 0 0 1
>
> After Flip:
>
> 1 1 1 1 1 1 1 1 1 0 0 1
>
> I think my example is correct. Basically ExRem REMOVES redundant
signals
> while Flip marks everything as True BETWEEN signals, acting as
an "on Buy"
> marker.
> --
> Terry
> -----Original Message-----
> From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx]
On Behalf
> Of booker_1324
> Sent: Friday, January 12, 2007 05:10
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Difference between Exrem and Flip
>
> Could someone please take the time and explain the difference
between
> Exrem and Flip.
>
> buy = ExRem( buy, sell );
> sell = ExRem( sell, buy );
>
> and
>
> buy = Flip( buy, sell );
> sell = Flip( sell, buy );
>
> I can understand what Exrem does, but after reading the help on
Flip
> where it says "this essentially reverts the process of ExRem -
multiple
> signals are back again", how can mutiple signals happen? If it acts
as
> a latch, and a buy state occurs, would not this prevent another buy
> until a sell occured? If this is true then isn't this the same as
Exrem.
>
>
>
> 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 NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
>
> For other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
>
Content-Description: "AVG certification"
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.5.432 / Virus Database: 268.16.10/624 - Release Date: 1/12/2007 2:04 PM
|