Anybody have this indicators afl?

#1
hellow......guys!
i have this metatrader"s indicator(attached file) but i m using amibroker,so anybody have its afl?if yes pls post or reply me at my mail.
my e-mail id is xxxxxxxxxxcom.
pls reply as well as soon,thanks.
 

Attachments

Last edited by a moderator:

zultan

Well-Known Member
#4
hellow.....zultan!
i have searched this websit as u suggest me,but i cant found the afl.
thanks


-you have to download and install AmiBroker Tweaks for KP 0.10.5.exe, and get kpami.dll to make Kwikpop Indicators works then you have to search in indicators .(i do have kpami.dll)

your chart looking like Parabolic Indicator !!?



any way ... some thing diffrent ... check it out please see attached
 
Last edited:
#5
Pruebe este cdigo.

_SECTION_BEGIN("Double MA");
r1= MA (C, 2);

r2 = MA(r1, 8);
r3 = MA (r2, 2);
color = IIf (r3<Ref(r3, -1), colorOrange, colorGreen);
Plot (r3, "", color, styleThick);


Saludos,
 
#6
stockrok

it is Hull Moving Average (HMA)
here is the AFL

SetChartBkColor( colorBlack ) ;
SetChartOptions(0,chartShowDates|chartShowArrows);
Plot(C,"",colorWhite,styleCandle);
Price = ParamField("Price");
Period = Param("Period", 20,1,100,1);
function HMA(Price, Length)
{
return WMA(2*WMA(Price, Period/2)-WMA(Price, Period), sqrt(Period));
}
A = HMA(Price, Period);
colorA= IIf(A > Ref(A,-1), colorBrightGreen,colorRed);
Plot(A, "HMA", colorA, styleLine|styleThick);

vidyasagar
 

sahil79

Active Member
#7
-you have to download and install AmiBroker Tweaks for KP 0.10.5.exe, and get kpami.dll to make Kwikpop Indicators works then you have to search in indicators .(i do have kpami.dll)

your chart looking like Parabolic Indicator !!?



any way ... some thing diffrent ... check it out please see attached
afl not working, giving error 31
 
#10
stockrok

it is Hull Moving Average (HMA)
here is the AFL

SetChartBkColor( colorBlack ) ;
SetChartOptions(0,chartShowDates|chartShowArrows);
Plot(C,"",colorWhite,styleCandle);
Price = ParamField("Price");
Period = Param("Period", 20,1,100,1);
function HMA(Price, Length)
{
return WMA(2*WMA(Price, Period/2)-WMA(Price, Period), sqrt(Period));
}
A = HMA(Price, Period);
colorA= IIf(A > Ref(A,-1), colorBrightGreen,colorRed);
Plot(A, "HMA", colorA, styleLine|styleThick);

vidyasagar
hi.......vkunisetty! i found error32,what is the solution?
 

Similar threads