ExRem simply removes duplicate signals so it should not signal a second trade for the same stock. So, I'm thinking that should work.
Flip provides continuous signals, which will tell you if you are in a trade or not, but there are problems with that without using loops. Example: onBuy = Flip(Buy,Sell); //Will be True(1) when you are Long and will be False(0) otherwise. -- Terry -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of carlacash26 Sent: Tuesday, September 26, 2006 05:16 To: [email protected] Subject: [amibroker] Exrem / flip Could someone please explain how to use the exrem / flip functions. I would like my system to NOT enter a trade if one trade is already placed for a particular stock. Would this do the trick? Buy = ExRem(Buy, Sell); Sell = ExRem(Sell, Buy); Short = ExRem(Short, Cover); Cover = ExRem(Cover, Short); What if I want to use a trailing stop loss instead of a sell signal to close trades? Or both a trailing tops and a sell signal? 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 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/amibroker/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
