Hi Natasha.. I use a similar approach for multiple triggers on 1 system. I give each trigger a unique name eg LT1 = xxxx LT2 = yyyy LT3 = zzz Buy = LT OR LT2 or LT3; Then when exploring, I create another variable 'systemID' & do a check for which system triggered. The systems are in order of preference in case there are multiple triggers for the same symbol.. Ie SysID = IIF(LT1, 1, IIF(LT2, 2,IIF(LT3, 3,0))) ; Then when exploring, I call SysID to see which trigger is being called.
You could configure the same for exits I suppose, I haven't tried that yet. Cheers, Dave -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Natasha ~~!!! Sent: Sunday, 23 September 2007 8:20 PM To: [email protected] Subject: [amibroker] Template : Hi, We have a scan where we get buy sell signals . now we have Buy : cond 1 , cond 2 cond 3 ...etc , sell : cond 1 , cond 2 cond 3 ... etc Suppose i want to know which of teh buy/sell conditions has been exected out of the numerous ,has anyone made any template for the explore for that ... Thanks .... Warm Regards; `````` Natasha !!! To achieve, you need thought. You have to know what you are doing and that's real power.
