Try the appended scan [with F1-F3]. -Bob ----------------- When you are viewing an index that starts with !ID, !IW, or !SP, F1 Displays a list of stocks in the index. Click on a stock in the list to view it. F2 Displays a list of stocks in a list. You can print, save, etc. F3 Brings back the index. ------------------ output = "irldaily.lst"; exchange = irldaily; integer tbar, lbar; daystoload 300; tbar:= 0; set MACD = 13,34,89; if close(tbar) > 0 then println symbol,",",date(tbar),",", 100*(close(tbar)-MovAvg(tbar,20,cl))/close(tbar):4:3,",", 100*(close(tbar)-MovAvg(tbar,150,cl))/close(tbar):4:3,",", MACD(tbar) -MACDSignal(tbar):4:2,",",description; endif; ------- |