Stock Portfolio Organizer

The ultimate porfolio management solution.

Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Marlyn't NewMomo for Amibroker (AFL)

Rating:
3 / 5 (Votes 3)
Tags:
amibroker, timeframe

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

Different Time Frames In one Chart
Submitted by ABUSLIMAN06 over 12 years ago
KaKa MultiTimeFrame
Submitted by shogun over 12 years ago
multi time frame with pivot
Submitted by njethva almost 11 years ago
RSI of WRO and WSO
Submitted by AKJWYXZ about 12 years ago
Time Channel
Submitted by Neo about 12 years ago
Weekly EMA on Daily Chart
Submitted by rohann almost 10 years ago

Indicator / Formula

Copy & Paste Friendly
// 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