PureBytes Links
Trading Reference Links
|
Thx
P
----- Original Message -----
From: David Holzgrefe
To: Tomasz Janeczko ; amibroker@xxxxxxxxxxxxxxx
Sent: Friday, February 23, 2001 12:27 AM
Subject: Re: [amibroker] arrow
Tomasz i follow that but still no arrows ?
attached is a screen print of search data to 197 is loaded i have used the formula that you recommended ....but still no arrows
----- Original Message -----
From: Tomasz Janeczko
To: amibroker@xxxxxxxxxxxxxxx
Sent: Friday, February 23, 2001 7:18 PM
Subject: Re: [amibroker] arrow
Hi,
It seems that some things are not clear enough :-)
1. If you create the formula that uses ma( v, 260 ) or sum( v, 260 ) orany other summation or averaging with period of 260
bars YOU MUST have loaded AT LEAST 261 bars of data to see ANYTHING. Otherwise the value of the sum or average
is undetermined ({EMPTY}) (for the first 260 bars)
2. If any part of the formula is undetermined IT WILL NOT generate ANY signal
3. Make sure that you have loaded at least 261 bars. The first results could appear only AFTER the bar #260.
4. If you are using "Parial loading" feature please choose File->Load remaining quotes->Current stock or use "Load remaing when selected"
option in Preferences/Miscellanous.
BTW: 20% spike over 260 bar moving average could be determined by the following formula:
buy = volume > 1.2 * ma( volume, 260 );
Hope it helps,
Tomasz Janeczko
----- Original Message -----
From: David Holzgrefe
To: amibroker@xxxxxxxxxxxxxxx
Sent: Friday, February 23, 2001 03:49
Subject: [amibroker] arrow
Hi Tomasz and others...
This is really pissing me .....
after all that work reload ami etc ...the arrows have gone yet again it seem that they stay for a few searches then ?
but are theses more they work with some formula's but not others
even after a reboot no arrows for this formula and a few other also no arrow in guru com using the mencing missing arrow formula's...
here the offending buggar for those of you want to be driven to the edge :)
/*Volume spike2
David Holzgrefe
16/02/2001
volume average of 260 periods divided by 52 to give a weekly volume with a buy signal .
sum(v,260)/52 todays volume is greater than the volume for the past 5periods add together
sum(v,260)/260 trading above annual average or
buy =volume > ma( volume, 260 );
*/
annvol = ma( volume, 260 );
buy = annvol;
now you do as told ok :-
hmm maybe Tomasz should but me on the pay roll as a crash test dummy
Thanks David
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
------=_NextPart_001_001B_01C09DDE.FF1A7B40
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>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 5.50.4611.1300" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#00ffff>
<DIV><FONT face=Arial size=2>I notice David that you have ICQ. Could you
do us all a favour and use it with Tomasz. If its anything interesting I'm
sure Tomasz will duly notify everyone.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Thx</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>P</FONT></DIV>
<BLOCKQUOTE dir=ltr
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>
<A title=dtholz@xxxx href="mailto:dtholz@xxxx">David
Holzgrefe</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=tj@xxxx
href="mailto:tj@xxxx">Tomasz Janeczko</A> ; <A
title=amibroker@xxxxxxxxxxxxxxx
href="mailto:amibroker@xxxxxxxxxxxxxxx">amibroker@xxxxxxxxxxxxxxx</A> </DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Friday, February 23, 2001 12:27
AM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [amibroker] arrow</DIV>
<DIV><BR></DIV>
<DIV><FONT face=Arial size=2>Tomasz i follow that but still no arrows
?</FONT></DIV>
<DIV><FONT face=Arial size=2>attached is a screen print of search data to 197
is loaded i have used the formula that you recommended ....but still no arrows
</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>
Tomasz Janeczko
</DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A title=amibroker@xxxxxxxxxxxx
href="mailto:amibroker@xxxxxxxxxxxxxxx">amibroker@xxxxxxxxxxxxxxx</A></DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Friday, February 23, 2001 7:18
PM</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> Re: [amibroker] arrow</DIV>
<DIV><BR></DIV>
<DIV><FONT face=Arial size=2>Hi,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>It seems that some things are not clear enough
:-)</FONT></DIV>
<DIV><FONT face=Arial size=2>1. If you create the formula that usesma( v,
260 ) or sum( v, 260 ) or any other summation or averaging with period of
260</FONT></DIV>
<DIV><FONT face=Arial size=2> bars YOU MUST have loaded AT
LEAST 261 bars of data to see ANYTHING. Otherwise the value of the sum or
average</FONT></DIV>
<DIV><FONT face=Arial size=2> is undetermined ({EMPTY})(for the
first 260 bars)</FONT></DIV>
<DIV><FONT face=Arial size=2>2. If any part of the formula is undetermined
IT WILL NOT generate ANY signal</FONT></DIV>
<DIV><FONT face=Arial size=2>3. Make sure that you have loaded at least 261
bars. The first results could appear only AFTER the bar #260.</FONT></DIV>
<DIV><FONT face=Arial size=2>4. If you are using "Parial loading" feature
please choose File->Load remaining quotes->Current stock or use "Load
remaing when selected"</FONT></DIV>
<DIV><FONT face=Arial size=2> option in
Preferences/Miscellanous.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>BTW: 20% spike over 260 bar moving average
could be determined by the following formula:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>buy = volume > 1.2 * ma( volume, 260
);</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>Hope it helps,</FONT></DIV>
<DIV><FONT face=Arial size=2>Tomasz Janeczko</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>
<A title=dtholz@xxxx href="mailto:dtholz@xxxx">David
Holzgrefe</A> </DIV>
<DIV style="FONT: 10pt arial"><B>To:</B> <A
title=amibroker@xxxxxxxxxxxxxxx
href="mailto:amibroker@xxxxxxxxxxxxxxx">amibroker@xxxxxxxxxxxxxxx</A>
</DIV>
<DIV style="FONT: 10pt arial"><B>Sent:</B> Friday, February 23, 2001
03:49</DIV>
<DIV style="FONT: 10pt arial"><B>Subject:</B> [amibroker] arrow</DIV>
<DIV><BR></DIV>
<DIV><FONT face=Arial size=2>Hi Tomasz and others...</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>This is really pissing me .....</FONT></DIV>
<DIV><FONT face=Arial size=2>after all that work reload ami etc ...the
arrows have gone yet again it seem that they stay for a few searches then
?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>but are theses more they work with some
formula's but not others </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>even after a reboot no arrows for this
formula and a few other also no arrow in guru com using the mencing
missing arrow formula's...</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>here the offending buggar for those of you
want to be driven to the edge :)</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT> </DIV>
<DIV><FONT face=Arial size=2>/*Volume spike2<BR>David
Holzgrefe<BR>16/02/2001</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>volume average of 260 periods divided by 52
to give a weekly volume with a buy signal .<BR>sum(v,260)/52 todays
volume is greater than the volume for the past 5 periods add together
<BR>sum(v,260)/260 trading above annual average or<BR>buy =volume > ma(
volume, 260 ); <BR>*/</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=Arial size=2>annvol = ma( volume, 260 );
</FONT></DIV>
<DIV> </DIV><FONT face=Arial size=2>
<DIV><BR>buy = annvol;</DIV>
<DIV> </DIV>
<DIV><IMG alt="" hspace=0
src="cid:001901c09e22$0d0b60a0$2d1ba4cb@xxxx"
align=baseline border=0> now you do as told ok :-</DIV>
<DIV>hmm maybe Tomasz should but me on the pay roll as a crash test
dummy</DIV>
<DIV> </DIV>
<DIV>Thanks David<BR></DIV></FONT><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><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></BLOCKQUOTE></BODY></HTML>
------=_NextPart_001_001B_01C09DDE.FF1A7B40--
Attachment:
Description: ""
|