Random Pips
-
is there any way to generate random numbers ranging between 10 min to 15 max pips

-
@amincgi you need 4 functions:
- MathSrand() to initialize random number generator
- GetTickCount() inside MathSrand() to get new starting value each tick
- MathRand() to actually compute the random number
- MathMod() to "scale" the number between 0-5. (and then add 10).
-
@roar thanks a lot
