Hi,
I have tried to place the following Slow Stochastic in my indicator builder but get a defaut that the term is not recognized. Do I need to add or remove something from this to make it work>
Thanks, 
Larry
Stochastics %K 
Per1:=Input("length of stoch",1,100,14); 
A:=((C - LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100; 
A; 
Stochastics %D 
Per1:=Input("length of stoch",1,100,14); 
Per2:=Input("length of ma",1,100,3); 
A:=Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S); 
A; 
Stochastics % D Slow 
Per1:=Input("length of stoch",1,100,14); 
Per2:=Input("length of ma",1,100,3); 
Per3:=Input("length of ma2",1,100,3); 
A:= Mov((Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)),Per3,S); 
A; 
Stochastics Combined 
Per1:=Input("length of stoch",1,100,14); 
Per2:=Input("length of ma",1,100,3); 
Per3:=Input("length of ma2",1,100,3); 
A:=Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S); 
A1:= Mov((Mov((((C-LLV(L,Per1))/(HHV(H,Per1)-LLV(L,Per1)))*100),Per2,S)),Per3,S); 
A;A1;