PureBytes Links
Trading Reference Links
|
<SPAN
class=499284902-25082003>:
<SPAN
class=499284902-25082003>
1. How and where can
I save explorations and scans (that are used in<SPAN
class=274382903-25082003> automatic analysis ) so that they are
readily accessible?
2. Where and how do
I save the output of an automatic analysis in a list so that I can scroll thru
the list and see the graphs?
<FONT face=Arial
size=2>
<FONT face=Arial
size=2>Thanks
<FONT face=Arial
size=2>
Lionel
Issen
<A
href="">lissen@xxxxxxxxxxxxx
<FONT face=Tahoma
size=2>-----Original Message-----From: Jayson
[mailto:jcasavant@xxxxxxxxxxxx] Sent: Friday, March 28, 2003 10:16
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: RE: [amibroker]
filtering data...
First
break down what you are trying to do...
<SPAN
class=423470816-28032003>
1)set
a start date
2)set
a min MA of volume
<SPAN
class=423470816-28032003>3)measure the ROC over the time
period
<SPAN
class=423470816-28032003>
The
first condition is found using the Datenum() function
the
second is simple found using greater than
the
third requires you to count the bars since condition one and apply the ROC to
that time frame....
<SPAN
class=423470816-28032003>
<FONT
color=#282828>
Start=DateNum()==1030102<FONT
color=#282828><FONT face=Arial color=#0000ff
size=2>;
count=LastValue(BarsSince(Start),1<FONT
color=#282828><FONT face=Arial color=#0000ff
size=2>);
Croc=ROC(C<FONT
face=Arial color=#0000ff size=2>,count);<FONT
face=Arial>
testvol=MA(V<FONT
face=Arial>,20)>1000000<FONT
color=#0000ff>;
<FONT
face=Arial>
Filter= testvol AND LastValue(croc)>5<FONT
color=#282828><FONT face=Arial color=#0000ff
size=2>;
AddColumn(<FONT
color=#0000ff>ValueWhen(start,<FONT
color=#000000>C<FONT
color=#282828>,1<FONT
color=#282828>),"close at start"<FONT
color=#282828>);<FONT
size=2>
AddColumn(<FONT
color=#000000>C<FONT
color=#282828>,"close today"<FONT
color=#282828>);<FONT
size=2>
AddColumn(croc,<FONT
color=#ff00ff>"ROC");
<SPAN
class=423470816-28032003>Explore your watchlist for the
results.....
Jayson
<FONT face=Tahoma
size=2>-----Original Message-----From: nurudinkaba
[mailto:n.kaba@xxxxxxxxxx]Sent: Friday, March 28, 2003 10:03
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker]
filtering data...i'd like to filter symbols that have
gained 5% since the beginning of the calendar year and have a 20 day moving
average of Volume greater then 1,000,000...Any help would be
appreciated.ThanksSend BUG REPORTS to
bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------Post
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A
href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check
group FAQ at: <A
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
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.
|