PureBytes Links
Trading Reference Links
|
Hello satpak77This should get you
started. By uptick I have taken you mean the closing price of today is higher
than yesterdays. Also you can change the number of days that represent a year by
changing the 252 to whatever suits.
/* Created by
Powerscan on: 15 Nov 2003 The Volume is the highest it has been for the
previous 252 bars AND The Close Price of the current bar is greater than the
Close Price of 1 bar ago */
Filter =
Ref( <FONT
color=#0000ff>HHV( <FONT
color=#000000>Volume, <FONT
color=#ff00ff>252 ), -<FONT
color=#ff00ff>1 ) < <FONT
color=#000000>Volume<FONT
color=#000000> AND<FONT
color=#000000> Close<FONT
color=#000000> > Ref(
Close,
-1<FONT
color=#000000> ); AddColumn<FONT
color=#000000>( Close<FONT
color=#000000>, <FONT
color=#ff00ff>"Close "<FONT
color=#000000> ); AddColumn<FONT
color=#000000>( Open<FONT
color=#000000>, "Open "<FONT
face="Courier New"> ); <FONT
color=#0000ff>AddColumn( <FONT
color=#000000>High, <FONT
color=#ff00ff>"High "<FONT
color=#000000> ); AddColumn<FONT
color=#000000>( Low<FONT
color=#000000>, "Low "<FONT
size=3> );
AddColumn(
Volume,
<FONT
color=#ff00ff>"Volume "<FONT
color=#000000> ); Regards,William
Peterswww.amitools.com<FONT
size=2>-----Original Message-----From: satpak77 [<A
href="">mailto:satpak77@xxxxxxxxx]Sent:
Saturday November 15, 2003 8:36 AMTo: amibroker@xxxxxxxxxxxxxxxSubject:
[amibroker] Todays volume highest all year AFLDoes anyone have an
AFL to screen for stocks that have "today'svolume was highest volume day all
year (prev 12 months)"....alsodesired that today's price was an uptick
(versus downtick = selloff) compared to yesterday.Real world
examples would beASTT on July 14IVAN on May 28 and again on June
11MITK on Oct 30if you look at those charts and volume, that is what
I am trying toscan forthanks
Yahoo! Groups Sponsor
ADVERTISEMENT
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 the Yahoo! Terms of Service.
|