PureBytes Links
Trading Reference Links
|
Could someone please advise what the suggested figures are for the rsi etc
RSIPeriod:= Input("Enter periods for RSI",2,300,8);
HLPeriod:= Input("Enter periods for HHV and LLV",2,300,8);
MAPeriod:= Input("Enter periods for Moving Average",2,300,3);
mat:= Input(" MA Typ,S,E,W,T",1,4,2);{1=S,2=E,3=W,4=T}
If(mat=1,(Mov((RSI(RSIPeriod)-LLV(RSI(RSIPeriod),HLPeriod))/(HHV(RSI(RSIPeri
od),HLPeriod)-LLV(RSI(RSIPeriod),HLPeriod)),MAPeriod,S)*100),
If(mat=2,(Mov((RSI(RSIPeriod)-LLV(RSI(RSIPeriod),HLPeriod))/(HHV(RSI(RSIPeri
od),HLPeriod)-LLV(RSI(RSIPeriod),HLPeriod)),MAPeriod,E)*100),
If(mat=3,(Mov((RSI(RSIPeriod)-LLV(RSI(RSIPeriod),HLPeriod))/(HHV(RSI(RSIPeri
od),HLPeriod)-LLV(RSI(RSIPeriod),HLPeriod)),MAPeriod,W)*100),
If(mat=4,(Mov((RSI(RSIPeriod)-LLV(RSI(RSIPeriod),HLPeriod))/(HHV(RSI(RSIPeri
od),HLPeriod)-LLV(RSI(RSIPeriod),HLPeriod)),MAPeriod,T)*100),0))))
Regards
Peter Anderson
peter@xxxxxxxxxx
|