Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Buy/Sell and Dir. Mov. Equalized by David Fennick for Metastock
I call this formula “Buy/Sell and Dir. Mov. Equalized”. This formula comes from the components of two other Indicators in found in Metastock – The Demand Index and the Directional Movement Indicator, or ADX. Fortunately, Metastock offers isolated components of each of these two so they can be plotted individually or combined with others.
I do not trade off the signal generated by this indicator alone. It crosses the Zero line too often for my liking. Rather, I plot a seperate Price Osc. on top of it and use the signal generated by that Osc
Author: David Fennick : davidf2/at/mindspring/dot/com
Indicator / Formula
p1:=Input("Shorter Mov.Avg.",0,200,12); p2:=Input("Longer Mov.Avg.",0,200,26); Mov(P,p1,E)-Mov(P,p2,E)
p1:=Input("Buy Pressure and Sell Pressure %",0,100,50); p2:=Input("Positive/Negative Price Movement %",0,100,50); (BuyP()/(BuyP()+SellP())-0.5)*100*(p1/100) + (PDI(21)/(PDI(21)+MDI(21))-0.5)*100*(p2/100)
0 comments
Leave Comment
Please login here to leave a comment.
Back