Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Stock pick/screener exploration for Amibroker (AFL)
Stock pick/screener exploration
======
Buy criteria : (Combining leading + lagging indicators - very strict scrutiny)
1) EMA crosses EMAfrom below
2) Price > 25
3) MACD crosses Signal from below
4) Stochastic %K crosses %D from below
For Short sell pick (a little liberal - MACD or Stochastic)
=======
Filter=Cross(EMA,EMA) AND C>=25 AND MACDOR Cross(myStochD, myStochK) AND V>100000;
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | periods = Param ( "Periods" ,15,1,200,1); Ksmooth = Param ( "%K avg" ,3,1,200,1); Dsmooth = Param ( "%D avg" ,3,1,200,1); myStochD = StochD (periods,Ksmooth,DSmooth); myStochK = StochK (periods,Ksmooth); myRSI = RSI (15); Filter = Cross ( EMA ( C ,5), EMA ( C ,12)) AND C >=25 AND MACD () > Signal () AND Cross (myStochK, myStochD) AND V >100000; AddColumn ( O , "Open" ,1.2); AddColumn ( H , "High" ,1.2); AddColumn ( L , "Low" ,1.2); AddColumn ( C , "Close" ,1.2); AddColumn ( V , "Volume" ,1); AddColumn ( EMA ( C ,5), "EMA-5" ,1.2); AddColumn ( EMA ( C ,12), "EMA-12" ,1.2); AddColumn (myStochK, "Stochastic %K" ,1.2); AddColumn (myStochD, "Stochastic %D" ,1.2); AddColumn (myRSI, "RSI" ,1.2); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Stock pick/screener exploration
========
Buy criteria : (Combining leading + lagging indicators – very strict scrutiny)
1) EMA5 crosses EMA12 from below
2) Price > 25
3) MACD crosses Signal from below
4) Stochastic %K crosses %D from below
For Short sell pick (a little liberal – MACD or Stochastic)
====
Filter=Cross(EMA,EMA) AND C>=25 AND MACDOR Cross(myStochD, myStochK) AND V>100000;