----- Original Message -----
Sent: Saturday, November 10, 2007 5:23
PM
Subject: [amibroker] Can a user defined
function be used in various time intervals with same name?
Hi,
Say I have a custom candle function
myfunction (a,b,c)
Can the same USER DEFINED function name be
used inside various time intervals?
timeframeset(4*inhourly);
abcresult=myfunction(a,b,c);
timeframerestore;
timeframeset(indialy)
defresult=myfunction(a,b,c);
timeframerestore;
Thanks,Padhu