PureBytes Links
Trading Reference Links
|
Title: Re[2]: [amibroker] Re: A shorter syntax to reference past elements of array
fwiw, I routinely define these values at the top of my code:
O1 = Ref(O,-1);
L1 = Ref(L,-1);
H1 = Ref(H,-1);
C1 = Ref(C,-1);
and also sometimes O2,... O3, ... and so on. dito for other often used statements.
NONE of the suggested formats can beat this!
herman
Thursday, February 19, 2009, 7:36:01 PM, you wrote:
> I think using the Ref should be kept just the way it is. I cannot see
> how any alternative method would be less confusing to newbies.
> btw you can change
> P = (Ref(H,-1) + Ref(L,-1) + Ref(C,-1)) / 3;
> to
> P = Ref(H+L+C,-1) / 3;
> and thus reduce the amount of typing :)
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|