| rlb1987 | 
				 
				
					
					| 
						Gold User, Member, Platinum User, TeleChart
					 | 
				 
				
					
					| Registered User | 
				 
				
					
					 | 
				 
				
					
					 | 
				 
				
					
					 | 
				 
				
					
					 | 
				 
				
					
					| Unsure | 
				 
			 
	 | 
	
			
				
					
				 
				
					
					| Wednesday, January 2, 2008 | 
				 
				
					
					| Wednesday, February 18, 2015 8:52:43 PM | 
				 
				
					
					41 [0.01% of all post / 0.01 posts per day] | 
				 
			 
	 | 
	
		
		
			
		 
	
		
		
			| 
				 
	Dear Bruce, 
	Thank you. It is just excellent. 
	Regards 
	Roberto 
			 | 
		 
	
		
		
			| 
				 
	Dear Bruce, 
	I asked this question last Sunday, but I don;t see it posted, that is why I am asking againg 
	Could you help me with this real code? I would like to have a chart for StockFinder 5 that displays around the price Indicator = MovAverage (price, period=20) +parameter* C_last*Square_root( Std_Dev ( Ln(Ci/Ci+1 ), period=20)) where  Std_Dev is the standard deviation, The parameter take the values p= 4,3,-3,-4. I was able to implement it in TC2000, I am including the code I wrote, but I badly need it for StockFinder 5 that is where I have the indicators I used. I have tried to do it in StockFinder 5 but have failed. Thank in advance for your help as always. In TC2000: 
	AVGC20 +4*C*SQR(( ( Log(C1/C2)^2 + Log(C2/C3)^2 + Log(C3/C4)^2 + Log(C4/C5)^2 + Log(C5/C6)^2 + Log(C6/C7)^2 + Log(C7/C8)^2 + Log(C8/C9)^2 + Log(C9/C10)^2 + Log(C10/C11)^2 + Log(C11/C12)^2 + Log(C12/C13)^2 + Log(C13/C14)^2 + Log(C14/C15)^2 + Log(C15/C16)^2 + Log(C16/C17)^2 + Log(C17/C18)^2 + Log(C18/C19)^2 + Log(C19/C20)^2 + Log(C20/C21)^2 )- ( Log(C1/C2) + Log(C2/C3) + Log(C3/C4) + Log(C4/C5)+ Log(C5/C6) + Log(C6/C7) + Log(C7/C8) + Log(C8/C9) + Log(C9/C10) + Log(C10/C11) + Log(C11/C12) + Log(C12/C13) + Log(C13/C14) + Log(C14/C15) + Log(C15/C16) + Log(C16/C17) + Log(C17/C18) + Log(C18/C19) + Log(C19/C20) + Log(C20/C21) )^2/20)/19) 
	Roberto 
			 | 
		 
	
		
		
			| 
				 
	Dear Bruce, 
	Could you help me with this real code? I would like to have a chart for StockFinder 5 that display around the price Indicator = MovAverage (price, period=20) +parameter* C_last*Square_root( Std_Dev ( Ln(Ci/Ci+1 ), period=20)) where  Std_Dev is the standard deviation, The parameter take the values p= 4,3,-3,-4. I was able to implement it in TC2000, I am including the code I wrote, but I badly need it for StockFinder 5 that is where I have the indicators I used. I have tried to do it in StockFinder 5 but have failed. Thank in advance for your help as always. In TC2000: 
	AVGC20 +4*C*SQR(( ( Log(C1/C2)^2 + Log(C2/C3)^2 + Log(C3/C4)^2 + Log(C4/C5)^2 + Log(C5/C6)^2 + Log(C6/C7)^2 + Log(C7/C8)^2 + Log(C8/C9)^2 + Log(C9/C10)^2 + Log(C10/C11)^2 + Log(C11/C12)^2 + Log(C12/C13)^2 + Log(C13/C14)^2 + Log(C14/C15)^2 + Log(C15/C16)^2 + Log(C16/C17)^2 + Log(C17/C18)^2 + Log(C18/C19)^2 + Log(C19/C20)^2 + Log(C20/C21)^2 )- ( Log(C1/C2) + Log(C2/C3) + Log(C3/C4) + Log(C4/C5)+ Log(C5/C6) + Log(C6/C7) + Log(C7/C8) + Log(C8/C9) + Log(C9/C10) + Log(C10/C11) + Log(C11/C12) + Log(C12/C13) + Log(C13/C14) + Log(C14/C15) + Log(C15/C16) + Log(C16/C17) + Log(C17/C18) + Log(C18/C19) + Log(C19/C20) + Log(C20/C21) )^2/20)/19) 
	Roberto 
			 | 
		 
	
		
		
			| 
				 
	Thank you! 
			 | 
		 
	
		
		
			| 
				 
	I have an indicator that I hace computed in Excel, is there a way to graph it in StockFinder as a new indicator? I have to do it that way because the data I use is from Futures that is not available in Worden data. 
			 | 
		 
	
		
		
			| 
				 
	Is there a way to plot the SPY with the VIX together, and the ratio of VXX/VXZ as an indicator in TC2000? 
			 | 
		 
	
		
		
			| 
				 
 Dear Bruce, 
 Thank you. 
 Regards 
   
			 | 
		 
	
		
		
			| 
				 
	Could you help me transforming the following code to real code for StockFinder? 
	‘LEN = 30 
	‘H = high 
	‘L = low 
	‘ StdDevX standard deviation 
	 
	inputs:LEN(30), Smooth(3), Strength(1); 
	vars: RWH(0), RWL(0),PEAK(0), MEAN(0), STD(0); 
	 
	RWH = (H[0] - L[LEN]) / (AvgTrueRange(LEN) * SquareRoot(LEN)); 
	RWL = (H[LEN] - L[0]) / (AvgTrueRange(LEN) * SquareRoot(LEN)); 
	PEAK = WAverage((RWH - RWL),3); 
	MEAN = average(PEAK,LEN); 
	STD = StdDevx(PEAK,LEN); 
	 
	if (MEAN + (1.33 * STD)) > 2.08 then value1 = (MEAN + (1.33 * STD)) 
	else value1 = 2.08; 
	 
	if (MEAN - (1.33 * STD)) < -1.92 then value2 = (MEAN - (1.33 * STD)) 
	else value2 = -1.92; 
	 
	if PEAK[1] >= 0 and PEAK > 0 then plot2(value1,"+/-97.5%"); 
	if PEAK[1] <= 0 and PEAK < 0 then plot2(value2,"+/-97.5%"); 
	 Plot is as a histogram 
			 | 
		 
	
		
		
			| 
				 
 I installed the new version 12.2, but i can not get it running. Help? 
			 | 
		 
	
		
		
			| 
				Thank very much!
			 | 
		 
	
		 
	
 |