Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Clear and Scan into Watchlist for Amibroker (AFL)
1.) On first pass will clear a defined Watchlist.
2.) Based on the “Apply to” will iterate tickers and
scan for conditions.
3.) Load the results into the previously cleared Watchlist.
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | /*-- Tyke --*/ listnum = 6; // watchlist to use if ( Status ( "stocknum" ) == 0 ) { oldlist = CategoryGetSymbols ( categoryWatchlist, listnum ); for ( i = 0; ( sym = StrExtract ( oldlist, i ) ) != "" ; i++ ) { CategoryRemoveSymbol ( sym, categoryWatchlist, listnum ); } } longEMA = EMA ( C , 100 ); MidEma = EMA ( C , 50 ); shortEma = EMA ( C , 10 ); Condition1 = shortEma > MidEma AND MidEma > longEMA ; Filter = Condition1; AddColumn ( Close , "Close" ); AddColumn ( ROC ( Close , 14 ), "ROC" ); AddColumn ( Volume , "Volume" ); AddColumn ( ATR (100), "ATR(14)" ); if ( LastValue ( Cum ( Filter AND Status ( "barinrange" ) ) ) ) CategoryAddSymbol ( "" , categoryWatchlist, listnum ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back