Thank you Terry. Now I understand the difference. Booker
--- In [email protected], "Terry" <[EMAIL PROTECTED]> 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: [email protected] [mailto:[EMAIL PROTECTED] On Behalf > Of booker_1324 > Sent: Friday, January 12, 2007 05:10 > To: [email protected] > 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 >
