hi,
why is
5 times faster than my own function?
How can I speed up my own functions like above example?
why is
PHP Code:
function main()
{
return hlc3();
}
PHP Code:
function main()
{
return myhlc3();
}
function myhlc3()
{
return (high() + low() + close())/3;
}
How can I speed up my own functions like above example?
Comment