PureBytes Links
Trading Reference Links
|
Hallo,
1.) Automatic Analysis
Buy = Cross( MACD(), 0 );
Sell = Cross( 0, MACD() );
Filter = Buy OR Sell;
SortedBy = C / EMA(C, 200) - 1;
AddColumn(SortedBy, "SortedBy");
AddColumn(Buy, "Buy", 1.0);
AddColumn(Sell, "Sell", 1.0);
2.) The result will be sorted by "SortedBy".
Then I want to use those Tickers for Selling, which are the Highest
in the "SortedBy" column.
And I want to use those Tickers for Buying, which are Lowest in
the "SortedBy" column.
So I want to find only those Tickers, which are in the
Highest/Lowest 10 percent.
My question:
Is it possible somehow to do automatically?
And How is it possible to code in AFL?
How could I find ONLY those Tickers automatically, which are in the
Highest/Lowest 10 percent?
(Highest 10 percent means: If I found 200 pieces of Tickers then the
first 20 pieces of them.)
I hope it is clear, what I would like to ask...
Thank you, Zoli.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/DldnlA/9M2KAA/U1CZAA/GHeqlB/TM
--------------------------------------------------------------------~->
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|