% M Midpoint Osc Plot this indicator in it's own window A:=100*(((2*C) - HHV(H,11) - LLV(L,11)) / (HHV(H,11) - LLV(L,11))); B:=Mov(A,5,E); UL:=Ref(HHV(B,25),-1); LL:=Ref(LLV(B,25),-1); UL;LL;B;A; *****% M Midpoint Osc45***** Plot this Indicator in it's own window A:=100*(((2*C) - HHV(H,45) - LLV(L,45)) / (HHV(H,45) - LLV(L,45))); B:=Mov(100*(((2*C) - HHV(H,45) - LLV(L,45)) / (HHV(H,45) - LLV(L,45))),5,E); B;A; *****% M StDev***** Plot this indicator in it's own Window Stdev(100*(((2*C) - HHV(H,11) - LLV(L,11)) / (HHV(H,11) - LLV(L,11))),11)