PureBytes Links
Trading Reference Links
|
This in Easylanguage (2k only) will find the highest
from a number of values passed in from an array:
Input: MyArray[n](numericarray);
vars: count(0);
value1 = 0;
For count = 0 to n begin
if MyArray[count] > value1 then
value1 = Myarray[count];
end;
Hgst = value1;
If you don't want to use an array then things get very
cludgy...
H
--- Charles Kaucher <steinbr@xxxxxxxxxxxx> wrote:
> EL has th eminlistand maxlist functions that you can
> use. However they
> arenot written in EL but are builtin functions.
> Does anyone have this
> functionality written in code in any language? C?
> VB? just not assembler.
>
>
>
> Charles Kaucher
>
> Don't let school interfere with your education. --
> Mark Twain
>
>
|