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

RE: [amibroker] Re: Point & Figure Chart in AFL



PureBytes Links

Trading Reference Links

>From http://stockcharts.com/education/How/AnalysisTools/pnfCharts.html:

Traditional box scaling preloads box sizes historically used for that
particular price range. The reversal amount starts at 2 (this should be 3),
but can be adjusted dynamically. Here are the traditional box sizes used in
our charts:


Price Range Box Size
Under $0.25 .0625
.26 to 1.00 .125
1.01 to 5.00 .25
5.01 to 20.00 .50
20.01 to 100.00 1.00
100.01 to 200.00 2.00
200.01 to 500.00 4.00
500.01 to 1,000.00 5.00
1,000.01 to 25,000.00 50.00
25,000.01 and up 500.00



The traditional scaling in PnF.dll only uses .25 (less than $5) up to 2
(greater than $100) because I have been a student of Dorsey Wright long
before StockCharts came along, but the DLL can change when and if needed.
Plus you have the ability to use your own boxsize in the DLL.

Peter
-----Original Message-----
From: Richard Alford [mailto:richard.alford@x...]
Sent: Friday, July 19, 2002 4:59 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Re: Point & Figure Chart in AFL


Looks great, Peter. Can you elaborate on what is meant by the traditional
scaling? "x = Boxsize (use '0' for traditional scaling)or provide a
reference. I was checking out Kaufman and I couldn't find a recommended box
size.

Thanks,

Richard


----- Original Message -----
From: bluesinvestor
To: amibroker@xxxxxxxxxxxxxxx
Sent: Friday, July 19, 2002 3:29 PM
Subject: RE: [amibroker] Re: Point & Figure Chart in AFL


Forgot to mention:

http://groups.yahoo.com/group/amibroker/message/17288

For PnF.dll information.

Peter
-----Original Message-----
From: bluesinvestor [mailto:investor@x...]
Sent: Friday, July 19, 2002 4:23 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: RE: [amibroker] Re: Point & Figure Chart in AFL


Hello Mirat,

Good stuff!! I made some modifications to your code to call my Point
& Figure DLL and plot the data using your jscript code. I tested it on one
stock (PYPL - short history) and it looks correct (except for the beginning
bars:





I have attached the AFL to this email (and posted below for Yahoo
viewers).

Thanks again,
Peter

// PF Chart by Mirat Dave

// Copy and paste this as a custom indicator.

x=calcPnF(0,3);

EnableScript("jscript");

<%

PnFValue = VBArray( AFL( "PnFVal" ) ).toArray();

PnFColumn = VBArray( AFL( "PnFCol" ) ).toArray();

// Calculate running average stock price for use in calculating the
Box size.

PFO = new Array();

PFC = new Array();

// initialize first element

j = 0;

PFO[j] = PnFValue[0];

PFC[j] = PnFValue[0];

// perform the loop that produces PF Chart

for( i = 1; i < PnFValue.length; i++ )

{

if ( PnFColumn[i] == 0 )

{

if( PnFColumn[i] == 0 && PnFColumn[i-1] == 0)

{

PFC[j] = PnFValue[i];

}

if( PnFColumn[i] == 0 && PnFColumn[i-1] != 0 )

{

j++;

PFC[j] = PnFValue[i];

PFO[j] = PnFValue[i-1];

}

}

else

{

if (PnFColumn[i] == 1)

{

if( PnFColumn[i] == 1 && PnFColumn[i-1] == 1 )

{

PFC[j] = PnFValue[i];

}

if( PnFColumn[i] == 1 && PnFColumn[i-1] != 1 )

{

j++;

PFO[j] = PnFValue[i-1];

PFC[j] = PnFValue[i];

}

}

}

}

// Shift chart to the right to eliminate trailing empty data

// - PF charts are generally smaller/shorter then the full stock
charts because they lack a time scale.

delta = PnFValue.length - PFO.length;

for( i = PnFValue.length; i > delta; i-- )

{

PFO[ i-1 ] = PFO[ i-delta-1];

PFC[ i-1 ] = PFC[ i-delta-1];

}

for( i = 0; i < delta; i++)

{

PFO[ i-1 ] = 0;

PFC[ i-1 ] = 0;

}

AFL.Var("delta") = delta;

AFL.Var("length") = PnFValue.length;

AFL.Var("PFO") = PFO;

AFL.Var("PFC") = PFC;

%>

O = PFO;

C = PFC;

H = (O+C)/2;

L = (O+C)/2;

GraphXSpace = 9;

Graph0Style = 64;

Graph0Color =1;

Graph0 = C;

Filter=C>0;

AddColumn(PFO,"PFO");

AddColumn(PFC,"PFC");




-----Original Message-----
From: mirat_dave [mailto:mirat_dave@x...]
Sent: Friday, July 19, 2002 10:00 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Point & Figure Chart in AFL


Hello Richard and Dimitris,

Sorry to have caused so much confusion.

Since most stocks since 2000 have been trending down, you may get a
only a few bars because the P&F Chart ignores small up moves and only
extends down bars when the price moves more than the box size. Since
2000, you may very well have only a few bars. Try loading more data
for at least one stock.

I used AmiQuote and Yahoo for the data. I have data from January
1994. The AmiBroker version on which I created this file is 4.0.0
Apr 26 2002.

I do not know if the AmiBroker version is causing the difference. I
saw that it worked for Richard on MSFT (although I am not sure what
the whole MSFT v. MSFT issue was - it seems to have resolved
itself). Perhaps Richard also has more data loaded.

As you can see from the script, it is very simple. If problems
continue, I would be happy to go through it in detail to see if there
is a coding error.

I'm afraid I have no other explanation other than more data. Let's
try that first.

Mirat

PS I would post .gifs of my charts but I do not know how to attach a
file to my reply. Although that would not help resolve the issue. :-)





--- In amibroker@xxxx, "Richard Alford" <richard.alford@xxxx> wrote:
> I am just isolating variables. If we have the same program and
version (4.06.1 Jun 19 build), the same indicator code (this I
confirmed) and same data we should get the same result. (I continue
to believe in deterministic computing - probably naive in light of
Microsoft!). The questionable variable, and a big one, is the data
source - I use qp2. Perhaps someone using yahoo could compare to
your results?
>
>
> It does appear that the "box size", the significant change that
defines an X or O in my understanding, should be normalized to the
price of the instrument to account for the difference in WCOME
pricing vs. DJIA, for example. I am referring to the code fragment:
>
> // Calculate PF Chart Box size and minimum Reverse values
> // Box = ((tot[i]/(i+1))^.5)/7.3374;
>
> Cheers,
>
> Richard
> ----- Original Message -----
> From: dtsokakis
> To: amibroker@xxxx
> Sent: Wednesday, July 17, 2002 2:49 PM
> Subject: [amibroker] Re: Point & Figure Chart in AFL
>
>
> Richard,
> YHOO via Amiquote.
> Why do you think it is a matter of data provider ?
> Dimitris Tsokakis
>
> --- In amibroker@xxxx, "Richard Alford" <richard.alford@xxxx>
wrote:
> > but the point remains that you and I get different results.
what
> is your data source?
> >
> > Richard
> > ----- Original Message -----
> > From: dtsokakis
> > To: amibroker@xxxx
> > Sent: Wednesday, July 17, 2002 1:47 PM
> > Subject: [amibroker] Re: Point & Figure Chart in AFL
> >
> >
> > Richard,
> > ANY other function works just fine with my valuable Amibroker
> 4.06.
> > Just fine.
> > I can not see the reason for this P&F script.
> > Anyway, the author perhaps could expain.
> > Dimitris Tsokakis
> >
> > --- In amibroker@xxxx, "Richard Alford" <richard.alford@xxxx>
> wrote:
> > > DT, I agree it was not easy to understand. The attached
charts
> > showed the TWO results that were generated whenever I entered
the
> > symbol MSFT - it appears to be a fluke and I cannot reproduce
it
> any
> > longer. Although there is not ticker name in the formula,
there
> was
> > strange behavior occurring for MSFT and MSFT only at that
time.
> > >
> > > The gist of my reply to you was that using the SAME code as
you
> > posted and using the code I copied from the files sections, I
> > generated the same results - and not the results that you
were
> > creating. That suggests that you have a problem in your data
> and/or
> > setup. The only reason for the two codes was to guarantee
that
> there
> > wasn't a subtle error - there was not.
> > >
> > > Sorry for adding the confusion about the MSFT fluke at the
same
> > time.
> > >
> > > Cheers,
> > >
> > > Richard
> > > ----- Original Message -----
> > > From: dtsokakis
> > > To: amibroker@xxxx
> > > Sent: Wednesday, July 17, 2002 12:47 AM
> > > Subject: [amibroker] Re: Point & Figure Chart in AFL
> > >
> > >
> > > Richard,
> > > It is not easy to understand this
> > > "the plot for MSFT changes when one changes the symbol go
> MSFT
> > from
> > > MSFT??? "
> > > I copied the formula from
> > > http://groups.yahoo.com/group/amibroker/files/Point-Figure
> > > pasted in my Ind. builder and get the posted gifs.
> > > No ticker name is into the formula.
> > > What is "the two MSFT " ???
> > > Do you use the same code from the above address??
> > > DT
> > >
> > >
> > > --- In amibroker@xxxx, "Richard Alford"
<richard.alford@xxxx>
> > wrote:
> > > > Those are not the figures I generate using the code in
> > the "files
> > > section". (Why wasn't this put in the AFL library is a
> question
> > in
> > > my mind???)
> > > >
> > > > Just noticed that the plot for MSFT changes when one
> changes
> > the
> > > symbol go MSFT from MSFT??? Not the case for AMZN or
ORCL?
> > > >
> > > > I attached the two MSFT for comparison, one is "my"
copy,
> and
> > the
> > > other is a copy and paste of the code in your note. The
> > difference
> > > is the quirk in MSFT, not an error in the code you have
used.
> And
> > DT
> > > do you really like black on blue borders? Personally, I
can
> > never
> > > read your chart titles.
> > > >
> > > > Cheers,
> > > >
> > > > Richard
> > > >
> > > >
> > > > ----- Original Message -----
> > > > From: Dimitris Tsokakis
> > > > To: amibroker@xxxx
> > > > Sent: Tuesday, July 16, 2002 1:14 PM
> > > > Subject: [amibroker] Re: Point & Figure Chart in AFL
> > > >
> > > >
> > > > Mirat,
> > > > Here is P&F charts for AMZN, MSFT and ORCL.
> > > > Data since Jan 2000.
> > > > Is it the expected picture ?
> > > > The code, copied from files section
> > > >
> > > > // PF Chart by Mirat Dave
> > > > // Copy and paste this as a custom indicator.
> > > >
> > > > EnableScript("jscript");
> > > > <%
> > > >
> > > > High = VBArray( AFL( "High" ) ).toArray();
> > > > Low = VBArray( AFL( "Low" ) ).toArray();
> > > >
> > > > // Calculate running average stock price for use in
> > calculating
> > > the Box size.
> > > >
> > > > tot = new Array();
> > > > tot[0] = (High[0] + Low[0])/2;
> > > > for( i=1; i < High.length; i++ )
> > > > {
> > > > tot[i] = tot[i-1] + ((High[i] + Low[i])/2);
> > > > }
> > > > PFO = new Array();
> > > > PFC = new Array();
> > > >
> > > > // initialize first element
> > > >
> > > > j = 0;
> > > > PFO[j] = High[0];
> > > > PFC[j] = Low[0];
> > > > down = 1; // By default the first bar is a down bar.
> > > >
> > > > up = 0;
> > > > swap = 0;
> > > >
> > > > // perform the loop that produces PF Chart
> > > >
> > > > for( i = 1; i < High.length; i++ )
> > > > {
> > > > // Calculate PF Chart Box size and minimum Reverse
values
> > > >
> > > > Box = ((tot[i]/(i+1))^.5)/7.3374;
> > > > Reverse = Box * 3;
> > > > if( Low[i] < PFC[j] - Box && down)
> > > > {
> > > > PFC[j] = Low[i];
> > > > }
> > > > else
> > > > {
> > > > if( High[i] >= PFC[j] + Reverse && down)
> > > > {
> > > > j++;
> > > > swap = 1;
> > > > PFO[j] = Low[i];
> > > > PFC[j] = High[i];
> > > > }
> > > > }
> > > > if( High[i] > PFC[j] + Box && up)
> > > > {
> > > > PFC[j] = High[i];
> > > > }
> > > > else
> > > > {
> > > > if( Low[i] <= PFC[j] - Reverse && up)
> > > > {
> > > > j++;
> > > > PFC[j] = Low[i];
> > > > PFO[j] = High[i];
> > > > swap = 1;
> > > > }
> > > > }
> > > > if( swap )
> > > > {
> > > > swap = 0;
> > > > if( up )
> > > > {
> > > > up = 0;
> > > > down = 1;
> > > > }
> > > > else
> > > > {
> > > > up = 1;
> > > > down = 0;
> > > > }
> > > > }
> > > > }
> > > >
> > > > // Shift chart to the right to eliminate trailing
empty
> data
> > > > // - PF charts are generally smaller/shorter then the
> full
> > stock
> > > charts because they lack a time scale.
> > > >
> > > > delta = High.length - PFO.length;
> > > > for( i = High.length; i > delta; i-- )
> > > > {
> > > > PFO[ i-1 ] = PFO[ i-delta-1];
> > > > PFC[ i-1 ] = PFC[ i-delta-1];
> > > > }
> > > > for( i = 0; i < delta; i++)
> > > > {
> > > > PFO[ i-1 ] = 0;
> > > > PFC[ i-1 ] = 0;
> > > > }
> > > > AFL.Var("PFO") = PFO;
> > > > AFL.Var("PFC") = PFC;
> > > > %>
> > > >
> > > > O = PFO;
> > > > C = PFC;
> > > >
> > > > H = (O+C)/2;
> > > > L = (O+C)/2;
> > > >
> > > > GraphXSpace = 9;
> > > > Graph0Style = 64;
> > > >
> > > > Graph0Color =1;
> > > > Graph0 = C;
> > > >
> > > > Thanks in advance for any reply.
> > > > Dimitris Tsokakis
> > > >
> > > > Yahoo! Groups Sponsor
> > > >
> > > > Click here to find your contact lenses!
> > > >
> > > > Your use of Yahoo! Groups is subject to the Yahoo!
Terms
> of
> > > Service.
> > >
> > >
> > > Yahoo! Groups Sponsor
> > > ADVERTISEMENT
> > >
> > >
> > >
> > > Your use of Yahoo! Groups is subject to the Yahoo! Terms
of
> > Service.
> >
> >
> > Yahoo! Groups Sponsor
> > ADVERTISEMENT
> >
> >
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.


------------------------ Yahoo! Groups
Sponsor ---------------------~-->
Will You Find True Love?
Will You Meet the One?
Free Love Reading by phone!
http://us.click.yahoo.com/O3jeVD/R_ZEAA/Ey.GAA/GHeqlB/TM
---------------------------------------------------------------------~
->



Your use of Yahoo! Groups is subject to
http://docs.yahoo.com/info/terms/






Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.


Yahoo! Groups Sponsor
ADVERTISEMENT



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

------=_NextPart_001_0094_01C22F47.41D644A0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE></TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Diso-8859-1"=
>
<META content=3D"MSHTML 5.50.4916.2300" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><SPAN class=3D533150621-19072002><FONT face=3DArial color=3D#0000ff=20
size=3D2>Richard,</FONT></SPAN></DIV>
<DIV><SPAN class=3D533150621-19072002><FONT face=3DArial color=3D#0000ff=20
size=3D2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=3D533150621-19072002><FONT face=3DArial color=3D#0000ff si=
ze=3D2>From=20
<A=20
href=3D"http://stockcharts.com/education/How/AnalysisTools/pnfCharts.html";>=
http://stockcharts.com/education/How/AnalysisTools/pnfCharts.html</A>:</FON=
T></SPAN></DIV>
<DIV><SPAN class=3D533150621-19072002><FONT face=3DArial color=3D#0000ff=20
size=3D2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=3D533150621-19072002><STRONG>Traditional box scaling</STRO=
NG>=20
preloads box sizes historically used for that particular price range. The=20
reversal amount starts at 2 (this should be 3), but can be adjusted dynamic=
ally.=20
Here are the traditional box sizes used in our charts:<BR><BR></DIV>
<TABLE cellPadding=3D4 bgColor=3D#99ccff border=3D0>
<TBODY>
<TR>
<TD>
<TABLE cellPadding=3D1 border=3D0>
<TBODY>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2><B>Price=
=20
Range</B></FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2><B>Box=20
Size</B></FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>Under=20
$0.25</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>.0625</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>.26 to=20
1.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>.125</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>1.01 to=20
5.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>.25</FONT=
></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>5.01 to=20
20.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>.50</FONT=
></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>20.01 to=
=20
100.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>1.00</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>100.01 to=
=20
200.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>2.00</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>200.01 to=
=20
500.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>4.00</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>500.01 to=
=20
1,000.00</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>5.00</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>1,000.01 =
to=20
25,000.00&nbsp;&nbsp;&nbsp;</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>50.00</FONT></TD></TR>
<TR>
<TD><FONT face=3D"verdana, arial, sans-serif" size=3D-2>25,000.01=
and=20
up</FONT></TD>
<TD><FONT face=3D"verdana, arial, sans-serif"=20
size=3D-2>500.00</FONT></TD></TR></TBODY></TABLE></TD></TR></TBODY>=
</TABLE>
<DIV>&nbsp;</DIV>
<DIV><FONT face=3DArial><FONT color=3D#0000ff><FONT size=3D2>T<SPAN=20
class=3D533150621-19072002>he traditional scaling in PnF.dll only uses .25 =
(less=20
than $5) up to 2&nbsp;(greater than&nbsp;$100) because I have been a studen=
t of=20
Dorsey Wright long before StockCharts came along, but the DLL can change wh=
en=20
and if needed.&nbsp; Plus you have the ability to use your own boxsize in t=
he=20
DLL.</SPAN></FONT></FONT></FONT></DIV>
<DIV><FONT face=3DArial><FONT color=3D#0000ff><FONT size=3D2><SPAN=20
class=3D533150621-19072002></SPAN></FONT></FONT></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial><FONT color=3D#0000ff><FONT size=3D2><SPAN=20
class=3D533150621-19072002>Peter</SPAN></FONT></FONT></FONT></SPAN></DIV>
<BLOCKQUOTE>
<DIV class=3DOutlookMessageHeader dir=3Dltr align=3Dleft><FONT face=3DTah=
oma=20
size=3D2>-----Original Message-----<BR><B>From:</B> Richard Alford=20
[mailto:richard.alford@x...]<BR><B>Sent:</B> Friday, July 19, 2002 4:5=
9=20
PM<BR><B>To:</B> amibroker@xxxxxxxxxxxxxxx<BR><B>Subject:</B> Re: [amibro=
ker]=20
Re: Point &amp; Figure Chart in AFL<BR><BR></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Looks great, Peter.&nbsp; Can you elabor=
ate on=20
what is meant by the traditional scaling?&nbsp; <FONT face=3D"Courier New=
"=20
size=3D3>"x =3D Boxsize (use '0' for traditional scaling)</FONT></FONT><F=
ONT=20
size=3D+0><FONT face=3DArial size=3D2>or provide a reference.&nbsp; I was=
checking=20
out Kaufman and I couldn't find a recommended box size.</FONT></FONT></DI=
V>
<DIV><FONT size=3D+0><FONT face=3DArial size=3D2></FONT></FONT>&nbsp;</DI=
V>
<DIV><FONT size=3D+0><FONT face=3DArial size=3D2>Thanks,</FONT></FONT></D=
IV>
<DIV><FONT size=3D+0><FONT face=3DArial size=3D2></FONT></FONT>&nbsp;</DI=
V>
<DIV><FONT size=3D+0><FONT face=3DArial size=3D2>Richard</FONT></DIV>
<DIV><FONT face=3DArial><BR><FONT size=3D2></FONT></FONT></DIV></FONT>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-=
LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV style=3D"FONT: 10pt arial">----- Original Message ----- </DIV>
<DIV=20
style=3D"BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black"><B>F=
rom:</B>=20
<A title=3Dinvestor@xxxx=20
href=3D"mailto:investor@xxxx";>bluesinvestor</A> </DIV>
<DIV style=3D"FONT: 10pt arial"><B>To:</B> <A title=3Damibroker@xxxx=
oups.com=20
href=3D"mailto:amibroker@xxxxxxxxxxxxxxx";>amibroker@xxxxxxxxxxxxxxx</A>=
</DIV>
<DIV style=3D"FONT: 10pt arial"><B>Sent:</B> Friday, July 19, 2002 3:29=
=20
PM</DIV>
<DIV style=3D"FONT: 10pt arial"><B>Subject:</B> RE: [amibroker] Re: Poi=
nt=20
&amp; Figure Chart in AFL</DIV>
<DIV><BR></DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f=20
size=3D2>Forgot to mention:</FONT></SPAN></DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f=20
size=3D2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f size=3D2><A=20
href=3D"http://groups.yahoo.com/group/amibroker/message/17288";>http://g=
roups.yahoo.com/group/amibroker/message/17288</A></FONT></SPAN></DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f=20
size=3D2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f=20
size=3D2>For PnF.dll information.</FONT></SPAN></DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f=20
size=3D2></FONT></SPAN>&nbsp;</DIV>
<DIV><SPAN class=3D741082920-19072002><FONT face=3DArial color=3D#0000f=
f=20
size=3D2>Peter</FONT></SPAN></DIV>
<BLOCKQUOTE dir=3Dltr style=3D"MARGIN-RIGHT: 0px">
<DIV class=3DOutlookMessageHeader dir=3Dltr align=3Dleft><FONT face=
=3DTahoma=20
size=3D2>-----Original Message-----<BR><B>From:</B> bluesinvestor=20
[mailto:investor@x...]<BR><B>Sent:</B> Friday, July 19, 2002=
4:23=20
PM<BR><B>To:</B> <A=20
href=3D"mailto:amibroker@xxxxxxxxxxxxxxx";>amibroker@xxxxxxxxxxxxxxx</=
A><BR><B>Subject:</B>=20
RE: [amibroker] Re: Point &amp; Figure Chart in AFL<BR><BR></FONT></D=
IV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Hello Mirat,</FONT><=
/DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Good stuff!!&nbsp; I=
made some=20
modifications to your code to call my Point &amp; Figure DLL and plot=
the=20
data using your jscript code.&nbsp; I tested it on one stock (PYPL - =
short=20
history) and it looks correct (except for the beginning bars:</FONT><=
/DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT>&nbsp;</DIV>
<DIV><IMG alt=3D"" hspace=3D0 src=3D"cid:533150621@xxxx"; ali=
gn=3Dbaseline=20
border=3D0></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT>&nbsp;</DIV>
<DIV><IMG alt=3D"" hspace=3D0 src=3D"cid:533150621@xxxx"; ali=
gn=3Dbaseline=20
border=3D0></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>I have attached the =
AFL to this=20
email (and posted below for Yahoo viewers).</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Thanks again,</FONT>=
</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2>Peter</FONT></DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial color=3D#0000ff size=3D2><FONT color=3D#00800=
0 size=3D1>
<P>// PF Chart by Mirat Dave</P>
<P>// Copy and paste this as a custom indicator.</P></FONT><FONT=20
color=3D#000000 size=3D1>
<P>x=3D</FONT><FONT color=3D#0000ff size=3D1>calcPnF</FONT><FONT colo=
r=3D#000000=20
size=3D1>(</FONT><FONT color=3D#ff00ff size=3D1>0</FONT><FONT color=
=3D#000000=20
size=3D1>,</FONT><FONT color=3D#ff00ff size=3D1>3</FONT><FONT color=
=3D#000000=20
size=3D1>);</P></FONT><FONT color=3D#0000ff size=3D1>
<P>EnableScript</FONT><FONT color=3D#000000 size=3D1>(</FONT><FONT=20
color=3D#ff00ff size=3D1>"jscript"</FONT><FONT color=3D#000000 size=
=3D1>);</P>
<P>&lt;%</P>
<P>PnFValue =3D VBArray( AFL( </FONT><FONT color=3D#ff00ff=20
size=3D1>"PnFVal"</FONT><FONT color=3D#000000 size=3D1> ) ).toArray()=
;</P>
<P>PnFColumn =3D VBArray( AFL( </FONT><FONT color=3D#ff00ff=20
size=3D1>"PnFCol"</FONT><FONT color=3D#000000 size=3D1> )=20
).toArray();</P></FONT><FONT color=3D#008000 size=3D1>
<P>// Calculate running average stock price for use in calculating th=
e Box=20
size.</P></FONT><FONT color=3D#000000 size=3D1>
<P>PFO =3D new Array();</P>
<P>PFC =3D new Array();</P></FONT><FONT color=3D#008000 size=3D1>
<P>// initialize first element</P></FONT><FONT color=3D#000000 size=
=3D1>
<P>j =3D </FONT><FONT color=3D#ff00ff size=3D1>0</FONT><FONT color=3D=
#000000=20
size=3D1>;</P>
<P>PFO[j] =3D PnFValue[</FONT><FONT color=3D#ff00ff size=3D1>0</FONT>=
<FONT=20
color=3D#000000 size=3D1>];</P>
<P>PFC[j] =3D PnFValue[</FONT><FONT color=3D#ff00ff size=3D1>0</FONT>=
<FONT=20
color=3D#000000 size=3D1>];</P></FONT><FONT color=3D#008000 size=3D1>
<P>// perform the loop that produces PF Chart</P></FONT><FONT=20
color=3D#000000 size=3D1>
<P>for( i =3D </FONT><FONT color=3D#ff00ff size=3D1>1</FONT><FONT col=
or=3D#000000=20
size=3D1>; i &lt; PnFValue.length; i++ )</P>
<P>{</P>
<P>if ( PnFColumn[i] =3D=3D </FONT><FONT color=3D#ff00ff size=3D1>0</=
FONT><FONT=20
color=3D#000000 size=3D1> ) </P>
<P>{</P>
<P>if( PnFColumn[i] =3D=3D </FONT><FONT color=3D#ff00ff size=3D1>0</F=
ONT><FONT=20
color=3D#000000 size=3D1> &amp;&amp; PnFColumn[i-</FONT><FONT color=
=3D#ff00ff=20
size=3D1>1</FONT><FONT color=3D#000000 size=3D1>] =3D=3D </FONT><FONT=
color=3D#ff00ff=20
size=3D1>0</FONT><FONT color=3D#000000 size=3D1>)</P>
<P>{</P>
<P>PFC[j] =3D PnFValue[i];</P>
<P>}</P>
<P>if( PnFColumn[i] =3D=3D </FONT><FONT color=3D#ff00ff size=3D1>0</F=
ONT><FONT=20
color=3D#000000 size=3D1> &amp;&amp; PnFColumn[i-</FONT><FONT color=
=3D#ff00ff=20
size=3D1>1</FONT><FONT color=3D#000000 size=3D1>] !=3D </FONT><FONT c=
olor=3D#ff00ff=20
size=3D1>0</FONT><FONT color=3D#000000 size=3D1> )</P>
<P>{</P>
<P>j++;</P>
<P>PFC[j] =3D PnFValue[i];</P>
<P>PFO[j] =3D PnFValue[i-</FONT><FONT color=3D#ff00ff size=3D1>1</FON=
T><FONT=20
color=3D#000000 size=3D1>];</P>
<P>}</P>
<P>}</P>
<P>else</P>
<P>{</P>
<P>if (PnFColumn[i] =3D=3D </FONT><FONT color=3D#ff00ff size=3D1>1</F=
ONT><FONT=20
color=3D#000000 size=3D1>)</P>
<P>{</P>
<P>if( PnFColumn[i] =3D=3D </FONT><FONT color=3D#ff00ff size=3D1>1</F=
ONT><FONT=20
color=3D#000000 size=3D1> &amp;&amp; PnFColumn[i-</FONT><FONT color=
=3D#ff00ff=20
size=3D1>1</FONT><FONT color=3D#000000 size=3D1>] =3D=3D </FONT><FONT=
color=3D#ff00ff=20
size=3D1>1</FONT><FONT color=3D#000000 size=3D1> )</P>
<P>{</P>
<P>PFC[j] =3D PnFValue[i];</P>
<P>}</P>
<P>if( PnFColumn[i] =3D=3D </FONT><FONT color=3D#ff00ff size=3D1>1</F=
ONT><FONT=20
color=3D#000000 size=3D1> &amp;&amp; PnFColumn[i-</FONT><FONT color=
=3D#ff00ff=20
size=3D1>1</FONT><FONT color=3D#000000 size=3D1>] !=3D </FONT><FONT c=
olor=3D#ff00ff=20
size=3D1>1</FONT><FONT color=3D#000000 size=3D1> )</P>
<P>{</P>
<P>j++;</P>
<P>PFO[j] =3D PnFValue[i-</FONT><FONT color=3D#ff00ff size=3D1>1</FON=
T><FONT=20
color=3D#000000 size=3D1>];</P>
<P>PFC[j] =3D PnFValue[i];</P>
<P>}</P>
<P>}</P>
<P>}</P>
<P>}</P></FONT><FONT color=3D#008000 size=3D1>
<P>// Shift chart to the right to eliminate trailing empty data</P>
<P>// - PF charts are generally smaller/shorter then the full stock c=
harts=20
because they lack a time scale.</P></FONT><FONT color=3D#000000 size=
=3D1>
<P>delta =3D PnFValue.length - PFO.length;</P>
<P>for( i =3D PnFValue.length; i &gt; delta; i-- )</P>
<P>{</P>
<P>PFO[ i-</FONT><FONT color=3D#ff00ff size=3D1>1</FONT><FONT color=
=3D#000000=20
size=3D1> ] =3D PFO[ i-delta-</FONT><FONT color=3D#ff00ff size=3D1>1<=
/FONT><FONT=20
color=3D#000000 size=3D1>];</P>
<P>PFC[ i-</FONT><FONT color=3D#ff00ff size=3D1>1</FONT><FONT color=
=3D#000000=20
size=3D1> ] =3D PFC[ i-delta-</FONT><FONT color=3D#ff00ff size=3D1>1<=
/FONT><FONT=20
color=3D#000000 size=3D1>];</P>
<P>}</P>
<P>for( i =3D </FONT><FONT color=3D#ff00ff size=3D1>0</FONT><FONT col=
or=3D#000000=20
size=3D1>; i &lt; delta; i++)</P>
<P>{</P>
<P>PFO[ i-</FONT><FONT color=3D#ff00ff size=3D1>1</FONT><FONT color=
=3D#000000=20
size=3D1> ] =3D </FONT><FONT color=3D#ff00ff size=3D1>0</FONT><FONT c=
olor=3D#000000=20
size=3D1>;</P>
<P>PFC[ i-</FONT><FONT color=3D#ff00ff size=3D1>1</FONT><FONT color=
=3D#000000=20
size=3D1> ] =3D </FONT><FONT color=3D#ff00ff size=3D1>0</FONT><FONT c=
olor=3D#000000=20
size=3D1>;</P>
<P>}</P>
<P>AFL.Var(</FONT><FONT color=3D#ff00ff size=3D1>"delta"</FONT><FONT=
=20
color=3D#000000 size=3D1>) =3D delta;</P>
<P>AFL.Var(</FONT><FONT color=3D#ff00ff size=3D1>"length"</FONT><FONT=
=20
color=3D#000000 size=3D1>) =3D PnFValue.length;</P>
<P>AFL.Var(</FONT><FONT color=3D#ff00ff size=3D1>"PFO"</FONT><FONT=20
color=3D#000000 size=3D1>) =3D PFO;</P>
<P>AFL.Var(</FONT><FONT color=3D#ff00ff size=3D1>"PFC"</FONT><FONT=20
color=3D#000000 size=3D1>) =3D PFC;</P>
<P>%&gt;</P><B>
<P>O</B> =3D PFO;</P><B>
<P>C</B> =3D PFC;</P><B>
<P>H</B> =3D (<B>O</B>+<B>C</B>)/</FONT><FONT color=3D#ff00ff=20
size=3D1>2</FONT><FONT color=3D#000000 size=3D1>;</P><B>
<P>L</B> =3D (<B>O</B>+<B>C</B>)/</FONT><FONT color=3D#ff00ff=20
size=3D1>2</FONT><FONT color=3D#000000 size=3D1>;</P><B>
<P>GraphXSpace</B> =3D </FONT><FONT color=3D#ff00ff size=3D1>9</FONT>=
<FONT=20
color=3D#000000 size=3D1>;</P><B>
<P>Graph0Style</B> =3D </FONT><FONT color=3D#ff00ff size=3D1>64</FONT=
><FONT=20
color=3D#000000 size=3D1>;</P><B>
<P>Graph0Color</B> =3D</FONT><FONT color=3D#ff00ff size=3D1>1</FONT><=
FONT=20
color=3D#000000 size=3D1>;</P><B>
<P>Graph0</B> =3D <B>C</B>;</P><B>
<P>Filter</B>=3D<B>C</B>&gt;</FONT><FONT color=3D#ff00ff size=3D1>0</=
FONT><FONT=20
color=3D#000000 size=3D1>;</P></FONT><FONT color=3D#0000ff size=3D1>
<P>AddColumn</FONT><FONT color=3D#000000 size=3D1>(PFO,</FONT><FONT=20
color=3D#ff00ff size=3D1>"PFO"</FONT><FONT color=3D#000000=20
size=3D1>);</P></FONT><FONT color=3D#0000ff size=3D1>
<P>AddColumn</FONT><FONT color=3D#000000 size=3D1>(PFC,</FONT><FONT=20
color=3D#ff00ff size=3D1>"PFC"</FONT><FONT color=3D#000000=20
size=3D1>);</P></FONT></FONT></DIV>
<DIV><BR><BR></DIV>
<P><FONT size=3D2>-----Original Message-----<BR>From: mirat_dave [<A=
=20
href=3D"mailto:mirat_dave@xxxx";>mailto:mirat_dave@x...</A>]=
<BR>Sent:=20
Friday, July 19, 2002 10:00 AM<BR>To:=20
amibroker@xxxxxxxxxxxxxxx<BR>Subject: [amibroker] Re: Point &amp; Fig=
ure=20
Chart in AFL<BR><BR><BR>Hello Richard and Dimitris,<BR><BR>Sorry to h=
ave=20
caused so much confusion.<BR><BR>Since most stocks since 2000 have be=
en=20
trending down, you may get a<BR>only a few bars because the P&amp;F C=
hart=20
ignores small up moves and only<BR>extends down bars when the price m=
oves=20
more than the box size.&nbsp; Since<BR>2000, you may very well have o=
nly a=20
few bars.&nbsp; Try loading more data<BR>for at least one stock.<BR><=
BR>I=20
used AmiQuote and Yahoo for the data.&nbsp; I have data from=20
January<BR>1994.&nbsp; The AmiBroker version on which I created this =
file=20
is 4.0.0&nbsp;<BR>Apr 26 2002.<BR><BR>I do not know if the AmiBroker=
=20
version is causing the difference.&nbsp; I<BR>saw that it worked for=
=20
Richard on MSFT (although I am not sure what<BR>the whole MSFT v. MSF=
T=20
issue was - it seems to have resolved<BR>itself).&nbsp; Perhaps Richa=
rd=20
also has more data loaded.<BR><BR>As you can see from the script, it =
is=20
very simple.&nbsp; If problems<BR>continue, I would be happy to go th=
rough=20
it in detail to see if there<BR>is a coding error.<BR><BR>I'm afraid =
I=20
have no other explanation other than more data.&nbsp; Let's<BR>try th=
at=20
first.<BR><BR>Mirat<BR><BR>PS&nbsp; I would post .gifs of my charts b=
ut I=20
do not know how to attach a<BR>file to my reply.&nbsp; Although that =
would=20
not help resolve the issue. :-)<BR><BR><BR><BR><BR><BR>--- In=20
amibroker@xxxx, "Richard Alford" &lt;richard.alford@xxxx&gt;=20
wrote:<BR>&gt; I am just isolating variables.&nbsp; If we have the sa=
me=20
program and<BR>version (4.06.1 Jun 19 build), the same indicator code=
=20
(this I<BR>confirmed) and same data we should get the same result.&nb=
sp;=20
(I continue<BR>to believe in deterministic computing - probably naive=
in=20
light of<BR>Microsoft!).&nbsp; The questionable variable, and a big o=
ne,=20
is the data<BR>source - I use qp2.&nbsp; Perhaps someone using yahoo =
could=20
compare to<BR>your results?<BR>&gt;<BR>&gt;<BR>&gt; It does appear th=
at=20
the "box size", the significant change that<BR>defines an X or O in m=
y=20
understanding, should be normalized to the<BR>price of the instrument=
to=20
account for the difference in WCOME<BR>pricing vs. DJIA, for=20
example.&nbsp; I am referring to the code fragment:<BR>&gt;<BR>&gt; /=
/=20
Calculate PF Chart Box size and minimum Reverse values<BR>&gt; // Box=
=3D=20
((tot[i]/(i+1))^.5)/7.3374;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&gt;<BR>&gt;=20
Cheers,<BR>&gt;<BR>&gt; Richard<BR>&gt;&nbsp;&nbsp; ----- Original Me=
ssage=20
-----<BR>&gt;&nbsp;&nbsp; From: dtsokakis<BR>&gt;&nbsp;&nbsp; To:=20
amibroker@xxxx<BR>&gt;&nbsp;&nbsp; Sent: Wednesday, July 17, 2002 2:4=
9=20
PM<BR>&gt;&nbsp;&nbsp; Subject: [amibroker] Re: Point &amp; Figure Ch=
art=20
in AFL<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp; Richard,<BR>&gt;&nbsp;&nbs=
p;=20
YHOO via Amiquote.<BR>&gt;&nbsp;&nbsp; Why do you think it is a matte=
r of=20
data provider ?<BR>&gt;&nbsp;&nbsp; Dimitris=20
Tsokakis<BR>&gt;<BR>&gt;&nbsp;&nbsp; --- In amibroker@xxxx, "Richard=
=20
Alford" &lt;richard.alford@xxxx&gt;<BR>wrote:<BR>&gt;&nbsp;&nbsp; &gt=
; but=20
the point remains that you and I get different=20
results.&nbsp;<BR>what<BR>&gt;&nbsp;&nbsp; is your data=20
source?<BR>&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;=20
Richard<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; ----- Original Message=20
-----<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; From:=20
dtsokakis<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; To:=20
amibroker@xxxx<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Sent: Wednesday, =
July=20
17, 2002 1:47 PM<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Subject: [amibr=
oker]=20
Re: Point &amp; Figure Chart in AFL<BR>&gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
Richard,<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; ANY other function work=
s=20
just fine with my valuable Amibroker<BR>&gt;&nbsp;&nbsp;=20
4.06.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Just fine.<BR>&gt;&nbsp;&n=
bsp;=20
&gt;&nbsp;&nbsp; I can not see the reason for this P&amp;F=20
script.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Anyway, the author perha=
ps=20
could expain.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Dimitris=20
Tsokakis<BR>&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp=
; ---=20
In amibroker@xxxx, "Richard Alford"=20
&lt;richard.alford@xxxx&gt;<BR>&gt;&nbsp;&nbsp; wrote:<BR>&gt;&nbsp;&=
nbsp;=20
&gt;&nbsp;&nbsp; &gt; DT, I agree it was not easy to understand.&nbsp=
; The=20
attached<BR>charts<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; showed the TW=
O=20
results that were generated whenever I entered<BR>the<BR>&gt;&nbsp;&n=
bsp;=20
&gt;&nbsp;&nbsp; symbol MSFT - it appears to be a fluke and I cannot=
=20
reproduce<BR>it<BR>&gt;&nbsp;&nbsp; any<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; longer.&nbsp; Although there is not ticker name in t=
he=20
formula,<BR>there<BR>&gt;&nbsp;&nbsp; was<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; strange behavior occurring for MSFT and MSFT only at=
=20
that<BR>time.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt; The gist of my reply t=
o you=20
was that using the SAME code as<BR>you<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; posted and using the code I copied from the files=20
sections, I<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; generated the same=20
results - and not the results that you<BR>were<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; creating.&nbsp; That suggests that you have a proble=
m in=20
your data<BR>&gt;&nbsp;&nbsp; and/or<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
setup.&nbsp; The only reason for the two codes was to=20
guarantee<BR>that<BR>&gt;&nbsp;&nbsp; there<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; wasn't a subtle error - there was=20
not.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt; Sorry for adding the confusion about the MSFT f=
luke=20
at the<BR>same<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
time.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt; Cheers,<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt; Richard<BR>&gt;&nbsp;&=
nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; ----- Original Message=20
-----<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; From:=20
dtsokakis<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; To:=20
amibroker@xxxx<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; =
Sent:=20
Wednesday, July 17, 2002 12:47 AM<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp=
;=20
&gt;&nbsp;&nbsp; Subject: [amibroker] Re: Point &amp; Figure Chart in=
=20
AFL<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; Richard,<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; It is not easy to understand this<BR>&gt;&nbsp;&nbsp=
;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; "the plot for MSFT changes when one=
=20
changes the symbol go<BR>&gt;&nbsp;&nbsp; MSFT<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; from<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; MSFT??? "<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; I copied the formula from<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; <A target=3D_blank=20
href=3D"http://groups.yahoo.com/group/amibroker/files/Point-Figure";>h=
ttp://groups.yahoo.com/group/amibroker/files/Point-Figure</A><BR>&gt;&nbsp;=
&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; pasted in my Ind. builder and get t=
he=20
posted gifs.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; No=
=20
ticker name is into the formula.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; What is "the two MSFT " ???<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Do you use the same code from the a=
bove=20
address??<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
DT<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; --- In amibroker@xxxx, "Richard=20
Alford"<BR>&lt;richard.alford@xxxx&gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; wrote:<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt; Those are not the figures I generate using the =
code=20
in<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; the "files<BR>&gt;&nbsp;&nbsp=
;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; section".&nbsp; (Why wasn't this pu=
t in=20
the AFL library is a<BR>&gt;&nbsp;&nbsp; question<BR>&gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; in<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
my mind???)<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt; Just=
=20
noticed that the plot for MSFT changes when one<BR>&gt;&nbsp;&nbsp;=20
changes<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; the<BR>&gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; symbol go MSFT from MSFT???&nbsp; N=
ot=20
the case for AMZN or<BR>ORCL?&nbsp;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt; I attached the two MSFT for comparison, one is=
=20
"my"<BR>copy,<BR>&gt;&nbsp;&nbsp; and<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&=
nbsp;=20
the<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; other is a =
copy=20
and paste of the code in your note.&nbsp; The<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; difference<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; is the quirk in MSFT, not an error in the code you=20
have<BR>used.<BR>&gt;&nbsp;&nbsp; And<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&=
nbsp;=20
DT<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; do you reall=
y=20
like black on blue borders?&nbsp; Personally, I<BR>can<BR>&gt;&nbsp;&=
nbsp;=20
&gt;&nbsp;&nbsp; never<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; read your chart titles.<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt; Cheers,<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt; Richard<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; ----- Original Mes=
sage=20
-----<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; From: Dimitris Tsokakis<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; To:=20
amibroker@xxxx<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; Sent: Tuesday, July 16, 2002 1:14 PM<BR>&gt;&nbsp;&n=
bsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Subject: [amibroke=
r]=20
Re: Point &amp; Figure Chart in AFL<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Mirat,<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Here is P&amp;F ch=
arts=20
for AMZN, MSFT and ORCL.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Data since Jan 2000.<BR>&gt;&nbsp;&=
nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Is it the expected=
=20
picture ?<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; The code, copied from files section<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; // PF Chart by Mir=
at=20
Dave<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; // Copy and paste this as a custom=20
indicator.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; EnableScript("jscript");<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&lt;%<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; High =3D VBArray( AFL( "High" )=20
).toArray();<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; Low =3D VBArray( AFL( "Low" )=20
).toArray();<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; // Calculate running average stock price for use=20
in<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; calculating<BR>&gt;&nbsp;&nbs=
p;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; the Box size.<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; tot =3D new=20
Array();<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; tot[0] =3D (High[0] + Low[0])/2;<BR>&gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; for( i=3D1; i &lt;=
=20
High.length; i++ )<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; tot[i] =3D tot[i-1] + ((High[i] +=20
Low[i])/2);<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; PFO =3D new Array();<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&=
nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFC =3D new Array();<BR>&gt;&nbsp;&=
nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; // initialize firs=
t=20
element<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; j =3D 0;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFO[j] =3D High[0];<BR>&gt;&nbsp;&n=
bsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFC[j] =3D=20
Low[0];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; down =3D 1; // By default the first bar is a down=20
bar.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; up =3D 0;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; swap =3D 0;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; // perform the loo=
p=20
that produces PF Chart<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; for( i =3D 1; i &lt; High.length; i=
++=20
)<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
{<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
// Calculate PF Chart Box size and minimum=20
Reverse<BR>values<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbs=
p;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; Box =3D ((tot[i]/(i+1))^.5)/7.3374;<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Reverse =3D Box *=
=20
3;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
if( Low[i] &lt; PFC[j] - Box &amp;&amp; down)<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFC[j] =3D=20
Low[i];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; else<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; if( High[i] &gt;=3D PFC[j] + Revers=
e=20
&amp;&amp; down)<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp=
;=20
&gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; j++;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; swap =3D 1;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFO[j] =3D=20
Low[i];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; PFC[j] =3D High[i];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; if( High[i] &gt; PFC[j] + Box &amp;=
&amp;=20
up)<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&=
nbsp;=20
{<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
PFC[j] =3D High[i];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
&gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; else<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; if( Low[i] &lt;=3D PFC[j] - Reverse=
=20
&amp;&amp; up)<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; j++;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFC[j] =3D Low[i];<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFO[j] =3D=20
High[i];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; swap =3D 1;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; if( swap )<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; swap =3D=20
0;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
if( up )<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; up =3D 0;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; down =3D 1;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
else<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; up =3D 1;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; down =3D 0;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; // Shift chart to =
the=20
right to eliminate trailing<BR>empty<BR>&gt;&nbsp;&nbsp;=20
data<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; // - PF charts are generally smaller/shorter then=20
the<BR>&gt;&nbsp;&nbsp; full<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
stock<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; charts be=
cause=20
they lack a time scale.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; delta =3D High.length -=20
PFO.length;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; for( i =3D High.length; i &gt; delta; i--=20
)<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
{<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
PFO[ i-1 ] =3D PFO[ i-delta-1];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFC[ i-1 ] =3D PFC[=20
i-delta-1];<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; for( i =3D 0; i &lt; delta; i++)<BR>&gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; {<BR>&gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; PFO[ i-1 ] =3D=20
0;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
PFC[ i-1 ] =3D 0;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbs=
p;=20
&gt;&nbsp;&nbsp; }<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nb=
sp;=20
&gt;&nbsp;&nbsp; AFL.Var("PFO") =3D PFO;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; AFL.Var("PFC") =3D=
=20
PFC;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; %&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; O =3D PFO;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; C =3D=20
PFC;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; H =3D (O+C)/2;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; L =3D (O+C)/2;<BR>&gt;&nbsp;&nbsp;=
=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; GraphXSpace =3D=20
9;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
Graph0Style =3D 64;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&n=
bsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; Graph0Color =3D1;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbs=
p;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Graph0 =3D C;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Thanks in advance =
for=20
any reply.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; Dimitris Tsokakis<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbs=
p;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
=20
Yahoo! Groups Sponsor<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
=20
Click here to find your contact lenses!<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Your use of Yahoo!=
=20
Groups is subject to the Yahoo!<BR>Terms<BR>&gt;&nbsp;&nbsp;=20
of<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
Service.<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp=
;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Yahoo! Groups=20
Sponsor<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;=20
ADVERTISEMENT<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp; Your use of Yahoo! Groups is subject to the Yahoo!=20
Terms<BR>of<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp;=20
Service.<BR>&gt;&nbsp;&nbsp; &gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Yahoo! Groups=20
Sponsor<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;=20
ADVERTISEMENT<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;<BR>&gt;&nbsp;&nbsp;=20
&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&gt;&nbsp;&nbsp;=20
&gt;<BR>&gt;&nbsp;&nbsp; &gt;&nbsp;&nbsp; Your use of Yahoo! Groups i=
s=20
subject to the Yahoo! Terms of<BR>&gt;&nbsp;&nbsp;=20
Service.<BR>&gt;<BR>&gt;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;=20
Yahoo! Groups=20
Sponsor<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=20
ADVERTISEMENT<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;<BR>&gt;<BR>&gt;&nbsp;&nbsp;=20
Your use of Yahoo! Groups is subject to the Yahoo! Terms=20
of<BR>Service.<BR><BR><BR>------------------------ Yahoo! Groups Spon=
sor=20
---------------------~--&gt;<BR>Will You Find True Love?<BR>Will You =
Meet=20
the One?<BR>Free Love Reading by phone!<BR><A target=3D_blank=20
href=3D"http://us.click.yahoo.com/O3jeVD/R_ZEAA/Ey.GAA/GHeqlB/TM";>htt=
p://us.click.yahoo.com/O3jeVD/R_ZEAA/Ey.GAA/GHeqlB/TM</A><BR>--------------=
-------------------------------------------------------~-&gt;<BR><BR><BR><B=
R>Your=20
use of Yahoo! Groups is subject to <A target=3D_blank=20
href=3D"http://docs.yahoo.com/info/terms/";>http://docs.yahoo.com/info=
/terms/</A><BR><BR><BR></FONT></P></BLOCKQUOTE><BR><BR><TT>Your=20
use of Yahoo! Groups is subject to the <A=20
href=3D"http://docs.yahoo.com/info/terms/";>Yahoo! Terms of Service</A>.=
</TT>=20
<BR></BLOCKQUOTE><BR><BR><TT>Your=20
use of Yahoo! Groups is subject to the <A=20
href=3D"http://docs.yahoo.com/info/terms/";>Yahoo! Terms of Service</A>.</=
TT>=20
<BR></BLOCKQUOTE></BODY></HTML>

------=_NextPart_001_0094_01C22F47.41D644A0--

Attachment: Description: ""