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

Pentuple Exponential Moving Average for Amibroker (AFL)

Rating:
2 / 5 (Votes 7)
Tags:
amibroker

After long search i found it’s compatible logic somewhere on net for MT4 platform.

Here is the converted code for PEMA.

u can use it in many codes…
as a Curve Fitting of random price action

Rohan Patel.
rhn_patel@rediffmial.com

Screenshots

Similar Indicators / Formulas

Kavach Of Karna v2
Submitted by hbkwarez almost 10 years ago
Advanced Elliott Waves
Submitted by MarcosEn over 12 years ago
3_6Day GuaiLiLv
Submitted by motorfly over 12 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago
Horizontal Live Priceline Tool
Submitted by northstar over 12 years ago

Indicator / Formula

Copy & Paste Friendly
P = ParamField("Price field");
pr = Param("5 Period ", 15, 2, 500, 1 );

MA1=EMA(P,pr);

MA2=EMA(MA1,pr);
MA3=EMA(MA2,pr);
MA4=EMA(MA3,pr);
MA5=EMA(MA4,pr);
MA6=EMA(MA5,pr);
MA7=EMA(MA6,pr);
MA8=EMA(MA7,pr);


PEMA=8*MA1-28*MA2+56*MA3-70*MA4+56*MA5-28*MA6+8*MA7-MA8;

Plot (PEMA,"\n PEMA"+pr,ParamColor( "PEMA color", colorBrightGreen ), ParamStyle("PEMA style",styleLine | styleThick));

1 comments

1. kv_maligi

Very good & thanks for sharing

viswanath

Leave Comment

Please login here to leave a comment.

Back