Xianba Xia:
It's checking if you're on a 5/3 digit broker or a 4/2. If you're on a 5/3 then points need to be multiplied by 10. Common code contained in most MT programs (though you would think MT could work that out for itself!)
if(_Digits==5 || _Digits==3) tsp=tsp*10;
this code also at top of files,but I don't know the detail reasons.why?
Stuart Browne:
It's checking if you're on a 5/3 digit broker or a 4/2. If you're on a 5/3 then points need to be multiplied by 10. Common code contained in most MT programs (though you would think MT could work that out for itself!)
And what is tsp ? It's checking if you're on a 5/3 digit broker or a 4/2. If you're on a 5/3 then points need to be multiplied by 10. Common code contained in most MT programs (though you would think MT could work that out for itself!)

Alain Verleyen:
And what is tsp ?
Teaspoon? ;-)
And what is tsp ?
lol
Stuart Browne:
Teaspoon? ;-)
teaspoon?. hahaha. very funny Stu. I think it is trailing stop
Teaspoon? ;-)

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
if(_Digits==5 || _Digits==3) tsp=tsp*10;
this code also at top of files,but I don't know the detail reasons.why?