Hello,

If I am understanding you correctly.....

Combine all three scan / formulas in 1 exploration and make the requirement 
that the tickers
returned meet the 3 scan / formula criteria...

Example:

//Scan1

condition1=RSI(14) > 30;

//Scan2

condition2=MA(C,10) > MA(C,20);

//Scan3

condition3=PDI(14) > MDI(14);

Myscore=Condition1 AND Condition2 AND Condition3;

Filter=myscore >0;

AddColumn(Myscore,"myList");

Only those tickers meeting the Myscore criteria are displayed.



  ----- Original Message ----- 
  From: Robert 
  To: [email protected] 
  Sent: Saturday, May 09, 2009 7:47 AM
  Subject: [amibroker] Looking for a solution





  I have been doing the following for the last 3 months and curious if it can 
all be done in Amibroker under one afl.

  I scan the marker with three different scans then copy and paste each scan 
results into excel. Each scan results in approximately 50 stocks. Then I 
compare each list of stocks and look for those that have made each scan. This 
usually results in a list of stocks only 3 to 10 symbols long. Unfortunately 
this takes too much time which is at a premium during the week. 

  So is there a way to automatically have the results of one scan go directly 
into the next scan and shorten the list this way never having to leave 
Amibroker with the results.

  Robert



  

Reply via email to