| 
 PureBytes Links 
Trading Reference Links 
 | 
Graham, 
 
I'm a little lost since i'm not familiar with concatenate function in excel.  Can you provide some tips on how to start? 
 
My first step is to create a table: 
 
e.g. 
 
Stock Name     Long trigger      Short Trigger 
     
X                 
40.20              
30.25 
 
excel then will output the above as 
 
AlertIf( Cross(C, 40.20) AND Name()=="X", "", "Long", 3 ); 
AlertIf( Cross(30.25,C) AND Name()=="X", "", "Short", 3 ); 
 
thanks 
 
tony
 
 On 11/26/05, Graham <kavemanperth@xxxxxxxxx> wrote:
One thing you can do is 
copy/paste your explore list of stock/prices and create your alertif statements in excel using concatenate function 
then just copy/paste back to afl
    
Hi,
  I have the following stock picks with triggers and would like to make a simple code that will alert me of these stocks.  
  ACI LONG 70.51 SHORT 69.23 HOV LONG 48.70 SHORT 47.83
  Currently,
I'm using the following code.  My question is there a better and
more efficient way of doing this.  The reason is because I have
about 5 stocks per week with both long and short triggers.  I was
wondering if I can do something in AA where I can go to parameters and
set the required parameters that will allow me to enter both the stock
and their triggers without going back to "edit AFL."
  AlertIf( Cross(69.23,C) AND Name()=="ACI", "", "Short", 3 ); AlertIf( Cross(C, 70.51) AND Name()=="ACI", "", "Long", 3 );
 
  thanks
  tony
 
 
  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
 
 
 
 
  
SPONSORED LINKS  
 
  
YAHOO! GROUPS LINKS  
 
  
 
 
  --  Cheers Graham AB-Write >< Professional AFL Writing Service Yes, I write AFL code to your requirements 
http://e-wire.net.au/~eb_kavan/ab_write.htm 
  
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
 
 
    
 |