PureBytes Links
Trading Reference Links
|
I don't know how you have copied the text from the Read Me but...
you have changed the case in several places. JScript is CASE SENSITIVE
that's why you get errors for example in your code you hav
vbarray(afl("high")).toarray();
whichi is wrong and unrecognizable by JScript.
Should
be
VBArray( AFL( "High" ) ).toArray();
(uppercase/lowercase IS important in JScript)
I attached correct formula.
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: David brumfield
To: amibroker@xxxxxxxxxxxxxxx
Sent: Wednesday, July 24, 2002 8:33 PM
Subject: [amibroker] "PNF"
Yahoo! Groups Sponsor
ADVERTISEMENT
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
------=_NextPart_001_04E7_01C23354.69621420
Content-Type: text/html;
charset="windows-1250"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1250">
<META content="MSHTML 6.00.2600.0" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT size=2>David,</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>I don't know how you have copied the text from the ReadMe
but...</FONT></DIV>
<DIV><FONT size=2>you have changed the case in several places. JScript isCASE
SENSITIVE</FONT></DIV>
<DIV><FONT size=2>that's why you get errors for example in your code you
hav</FONT></DIV>
<DIV><FONT size=2>vbarray(afl("high")).toarray();</FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV><FONT size=2>whichi is wrong and unrecognizable by JScript.</FONT></DIV>
<DIV><FONT size=2>Should</FONT></DIV>
<DIV><FONT size=2>be </FONT></DIV>
<DIV><FONT size=2></FONT> </DIV>
<DIV>
<P><FONT size=2>VBArray( AFL( </FONT><FONT size=2><FONT
color=#ff00ff>"High"</FONT> ) ).toArray();</FONT></P>
<P><FONT size=2>(uppercase/lowercase IS important in JScript)</FONT></P>
<P><FONT face="Courier New" size=1><FONT face=Arial size=2>I attached correct
formula.</FONT></P></FONT></DIV>
<DIV><FONT size=2><BR>Best regards,<BR>Tomasz
Janeczko<BR>amibroker.com</FONT></DIV>
<BLOCKQUOTE
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style="FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>From:</B>
David brumfield
</DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=amibroker@xxxxxxxxxx
href="mailto:amibroker@xxxxxxxxxxxxxxx">amibroker@xxxxxxxxxxxxxxx</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Wednesday, July 24, 2002 8:33
PM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> [amibroker] "PNF"</DIV>
<DIV><BR></DIV>
<DIV> </DIV><BR><BR><TT>Your
use of Yahoo! Groups is subject to the <A
href="http://docs.yahoo.com/info/terms/">Yahoo! Terms of Service</A>.</TT>
<BR></BLOCKQUOTE></BODY></HTML>
------=_NextPart_001_04E7_01C23354.69621420--
Attachment:
Attachment:
Description: "Description: Binary data"
|