PureBytes Links
Trading Reference Links
|
> value4 = Int(Capital / close);
Try IntPortion instead of Int. From the EL manual....
INT
Reserved for use with custom DLLs designed for EasyLanguage and
ELKIT32.DLL.
IntPortion
Returns the integer portion of the specified decimal number.
Syntax: IntPortion(Num);
Num: A numeric value or expression
Usage: Value1 = IntPortion(4.125); {returns a 4}
--
Dennis
|