Hey - just catching up on some of the conversation re: RMO
Did you get an answer to your question re: the Exit Swing Signal? Somewhere within this forum I saw the mention of the the Exit Swing being a variant of the RSI indicator...I made note of the code, see below -
x:=RSI(9);
prd:=7;
smooth:=3;
num:=x-LLV(x,prd);
den:=Max(HHV(x,prd)-LLV(x,prd),0.00001);
ind:=Mov(100*num/den,smooth,S);
{plot/return}
25;75;ind;
it does indeed replicate the Exit Swing Signal, not identical to the 4th decimal place but close enough to trade.
If you can code and transform RSI-type parameters over to an MA-type indicator...pls let me know as I agree that the RMO template does get busy, the more in one window the better!
Good luck![Smile [:)]](/emoticons/emotion-1.gif)