Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Marlyn't NewMomo for Amibroker (AFL)
The NewMoMo was developed by Marlyn of Filtering WallStreet some years back.
It is used for the macro approach – NewMoMo is especially helpful in establishing trades overnight going into an up day the next morning.
Most momentum oscillators measure the momentum of price changes. One of the important things to remember about NewMoMo is that it is measuring the momentum of a volatility signal (which is what the normalization gives you). And volatility is probably the most important thing we can measure in a market (or just about anything else for that matter).
Screenshots
Similar Indicators / Formulas
Indicator / Formula
// NewMoMo AmiBroker Code TimeFrameSet(inDaily); Period = Param("Period", 20); Normalized=C/Ref(MA(C,Period),-1); MarlynEMA=AMA2(Normalized,.4,.6); MarlynEMAMax=HHV(MarlynEMA,5); MarlynEMAMin=LLV(MarlynEMA,5); Maximum=MarlynEMA-MarlynEMAMax; Minimum=MarlynEMA-MarlynEMAMin; Plot(Maximum,"MarlynEMAMax("+NumToStr(Period,4.0)+")",colorBlack,styleHistogram | ParamStyle("Style")); Plot(Minimum,"MarlynEMAMin("+NumToStr(Period,4.0)+")",colorBlue,styleHistogram | ParamStyle("Style")); TimeFrameRestore();
0 comments
Leave Comment
Please login here to leave a comment.
Back