Run an exploration. BuyRSI = RSI(14) > 50;
Filter=InWatchList(your_watchlist_number_here) AND BuyRSI; AddColumn(C,"buyRSI"); ----- Original Message ----- From: Marty J To: [email protected] Sent: Wednesday, December 30, 2009 9:30 PM Subject: [amibroker] Getting info from a Watchlist I would like to run my formula against all the 6 watchlist. I already done a composite on the watchlist which gives the results of all stocks in that watchlist, but I want to do the same thing for each individual stock in a watch list with the same formula to see which one is a buy or sell. Would like to do something like the Foreign function but use my formula to check it. example: BuyRSI = RSI(14) > 50; qldF = Foreign("qld","X"); qldF = Foreign("qld","BuyRSI"); // This of course does not work. Is there an easy way to do this? Marty
