PureBytes Links
Trading Reference Links
|
Dimitris
I took the liberty of hacking your code to do an exploration.
I added to the bottom of you code for Anticipating Next bar
Support/Resistance the following and it provides me some interesting
stock picks. I filter out thinly traded stocks and stocks that have
an average below 5 over the past month.
This gives me any stocks that are tracking higher on breakout
volume. These have should have some continued momentum. Of
course I check the chart for tightness and other things after this
initial selection process.
Steve
_______________________________
Filter =
Ar>0
AND
as>0 AND MA(V,20)>100000 AND MA(C,21)>5 AND (MA(V,3)/MA(V,21))>1.0;
NumColumns = 5;
Column1 = MA(V,3)/MA(V,17);
Column1Name = "MAV(3/17)";" "+WriteVal(MA(V,3)/EMA(V,17));
Column1Format=1.2;
Column2 = C;
Column2Name = "Today's Close ";" "+ WriteVal(C);
Column2Format=1.2;
_____________________________
Dimitris Tsokakis
// Anticipating Next bar Support/Resistance via RSI trendlines
// An application of G. Siligardos method
// by D. Tsokakis, June 2003
Yahoo! Groups Sponsor
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.
Attachment:
Code hack for Anticipating Next Bar.png
Attachment:
Description: "Description: PNG image"
|