[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Problem with a For loop


  • Date: Wed, 3 Feb 2010 09:51:54 +0200
  • From: İlhan Ketrez <ketrezilhan@xxxxxxxxx>
  • Subject: Re: [amibroker] Problem with a For loop

PureBytes Links

Trading Reference Links



Is the "ThePrice[0]" not empty?

2010/2/3 p_heroux@xxxxxxxxxx <p_heroux@xxxxxxxxxx>
 

Can someone help me please with the following code lines

TheAvg1[0] = 0;
TheAvg[0] = ThePrice[0] /14;
for(i=1; i < BarCount; i++)
{
TheAvg1[i] = TheAvg[ i - 1 ];
TheAvg[i] = TheAvg1[i] + ThePrice[i] /14;
}

The problem is with: TheAvg1[i] = TheAvg[ i - 1 ];
It returns an EMPTY value
It seems that it doesn't like backward reference [i-1] because I have replaced this line with : TheAvg1[i] = 8 and I have no problems.

This is only an example my code is more elaborated, but the problem is still the same, I cannot use a [i-1] reference in a for loop: why?

I am using version 5.29Beta

Thanks for your help

Philippe




__._,_.___


**** 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/





Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___