| 
				 
	Bruce 
	Thanks for the reply and I apologize that I didn't explain myself very well. What I am trying to is come up with a scan condition that will allow me to monitor the % change of a 12 peroid, exponential moving average of moneystream.I want to be able to scan for stocks ( interday) were the xavg of MS has moved up or dwn a certain percentage from yesterdays closing value.  
	  
	Thanks 
	  
			 | 
		
	
		
		
			| 
				 
	Hello Bruce 
	I am,trying ( with no luck) to create a scan condition that monitors the daily percent change of moneystream. I want to search for stocks that have a miniumm percent gain in moneystream interday. 
	  
	Thanks 
	  
	EQ 
			 | 
		
	
		
		
			| 
				 
	Hello Bruce 
	  
	I came across a previous topic were you helped a customer create a realcode indicator to plot the high of the first 15 minutes of trading. The code you develope is shown below. I need some help to come up with a condition that will allow me to filter a watchlist based on the stocks that are crossing above the 15 minute high bar.  I would appreciate any guidance you can provide. 
	lease try something similar to the following RealCode Indicator instead: 
'|******************************************************************
'|*** StockFinder RealCode Indicator - Version 5.0 www.worden.com 
'|*** Copy and paste this header and code into StockFinder *********
'|*** Indicator:Opening 15-Minute High
'|******************************************************************
Static Open15MinHigh As Single
If isFirstBar Then
	Open15MinHigh = Single.NaN
Else If Price.DateValue.DayOfYear <> Price.DateValue(1).DayOfYear Then
	Open15MinHigh = Price.High
Else If Price.DateValue.TimeOfDay <= Date.Parse("09:45").TimeOfDay Then 
	Open15MinHigh = System.Math.Max(Open15MinHigh, Price.High)
End If
Plot = Open15MinHigh 
	  
	  
	Regards 
			 |