PureBytes Links
Trading Reference Links
|
I am trying out looping for the first time, trying to implement
Ehlers Center of Gravity indicator from May 2002 TASC.
Here is the chunk of code giving problems; I get "object expected"
errors when running it. Thanks for the help, I am confused on this.
======================================
Source: Microsoft JScript runtime error
Line: 19 Char: 1
Error: 0 - Object expected
======================================
The code:
----------------------------------------------
SetBarsRequired(50);
EnableScript("jscript");
<%
Close=VBArray(AFL("close")).toArray();
array=new Array();
numerator=0; period=10;
for(i=0;i<period;i++)
{
numerator=numerator+((i+1)*array[i]);
}
denom=period*MA(Close,period); /* sum of prices over period */
cog=IIf(denom!=0,numerator/denom,0); cogdelay=Ref(cog,-1);
%>
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|