Nevermind, I came right.

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
It would appear as if the is a bug in my loop code or some initialization problem...please review my code and please help me, I would honestly appreciate this.
The regular Metastock code for this indicator is very simply:
Double Stochastic - 10 Periode
Period P1:=Mov(((C-LLV(L,10))/(HHV(H,10)-LLV(L,10)))*100,3,E);
Mov(((P1-LLV(P1,10))/(HHV(P1,10)-LLV(P1,10)))*100,3,E)
My attempt to code this follows: