Need coding this concept into afl-please help

#1
Hi friends

I saw this concept on MT4.
I TRIED CODING IT BUT NOT COMING OK.
The ma catches trend and reduces noise a lot.

Can somebody help me please!
-----------------------------------------------
Var mov Avg3
=================
PeriodAMA =50 ;
n fast =15;
n slow =10;
G =1.0 ;
dk = 0.10 ;

plot the smoothed ma and price

---------------------------------------
pink line is wma50 for showing how the var mov avg3 works.
thanks
 
Last edited:

pratapvb

Well-Known Member
#2
this looks like AMA code...this is what I get with my AMA afl (already shared in my thread) and not showing as band of high-low but only with close line

NF 60min

 

XRAY27

Well-Known Member
#4

pratapvb

Well-Known Member
#6
hi
shruti.trader
This the link of pratap sir post under "advanced-trading-strategies" i have following that and also observing you can see the afls there it self
http://www.traderji.com/advanced-trading-strategies/89870-combining-trend-vwap-ranges.html
post 511 has the list of all AFLs shared in that thread with post nos.....but if using the AFL then take some time to understand the concept mentioned in the thread else it is useless....although some of the ma afls could be used standalone
 

mastermind007

Well-Known Member
#7
can anyone pls help write the code to find out the pivot between 9.15am to 11.00 am. just that code is enough
TimeNm = TimeNum();
LovelyPivot = ((TimeNm >= 091500) AND (TimeNm <= 110000)) AND
(Ref(H,-2) > Ref(H, -4)) AND
(Ref(H,-2) > Ref(H, -3)) AND
(Ref(H,-2) > Ref(H, -1)) AND
(Ref(H,-2) > H);
 

kiran_thiru

Well-Known Member
#8
Hi friends

I saw this concept on MT4.
I TRIED CODING IT BUT NOT COMING OK.
The ma catches trend and reduces noise a lot.

Can somebody help me please!
-----------------------------------------------
Var mov Avg3
=================
PeriodAMA =50 ;
n fast =15;
n slow =10;
G =1.0 ;
dk = 0.10 ;

plot the smoothed ma and price

---------------------------------------
pink line is wma50 for showing how the var mov avg3 works.
thanks
ford sir, this is kaufman indicator what i am using for trading from 4 months in mt4. i also searched same in amibrocker, but i can't find. it is a good trend indicator.


can any one conver this to ami same with dots will be great.
 

Similar threads