PureBytes Links
Trading Reference Links
|
Ýlhan thank you very much:ThePrice[0] was indeed the culprit I have replaced it with 7 and it work!
Once again thank you for guiding me in the right direction.
Have a nice day
Philippe
--- In amibroker@xxxxxxxxxxxxxxx, Ä°lhan Ketrez <ketrezilhan@xxx> wrote:
>
> Is the "ThePrice[0]" not empty?
>
> 2010/2/3 p_heroux@xxx <p_heroux@xxx>
>
> >
> >
> > 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/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
amibroker-digest@xxxxxxxxxxxxxxx
amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|