You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi Pippt,
Here you are..you need both indicators compiled in your MT4,then just drag the MTF one on your charts
If you want to change the MTFJMA settings you just change,with metaeditorthe settings for xpma_v2JMA..period is set at 35,phase at 0..you change them for example to 25 and 100..compile ..and it will be automatically reflected in the MTF
Regards
Simba
EDIT:THERE WAS AN ERROR IN XPMA_V2 JMA..ALREADY SOLVED 10:45 CETPut a 60 min MTFJMA on a 5 min chart. I noticed that it doesn't refresh or update as the 5 min candles are moving. I tried other settings and ma's in the MTF xpMA, same problem. I also noticed that the xpMA has a "refresh problem" with the T3.
Goinglite
that's old; updated verson - xpma satl fatl - posted here after Simba's post with digifilters
allright, here we go again:
MTF_xpMA_v2_SATL_FATL; Kerris iCustomCall formula
(now you know who would say you know what; sorry)
works only with xpMA_v2_SATL_FATL
make sure file installed under correct name
extern int MA_Period = 34;
extern int MA_Type = 0;
extern string note_MA_Mode_Type ="SMA0 EMA1 SMMA2 LWMA3 DEMA4 TEMA5 T3MA6 JMA7 SATL8 FATL9";
extern int MA_AppliedPrice = PRICE_CLOSE;
extern int ma_shift =0;
extern int ma_x_shift =0;
extern double T3MA_VolumeFactor = 0.8;
extern double JMA_Phase = 0;
extern int MaxBarsToCount = 900;
types:
6 T3MA - require "T3MA"indicator
7 JMA - "JMA"
8 SATL - "SATL"
9 FATL - "RFTL" (not FATL)Oh, my goodness, this is bug free I've been looking for this forever! Thank you
Goinglite
thanks, Droesparky!
ok, we can make 2 versions with regular and also separate up/down direction shift - and see what heppens
atr period 1 and range: looks like mt4 stock atr lying (1pip)...
found why: atr (1) not equal range-
range : hi - lo
atr : TempBuffer=MathMax(high,prevclose)-MathMin(low,prevclose);
so, by any definition (not just on mt) - atr (average true range) & range is completely different
and thanks for info and explanation
Oh, my goodness, this is bug free I've been looking for this forever! Thank you Goinglite
Oh well, not totally "bug free", the T3 ma mode still has a "refresh problem" in the current TF.
Goinglite
Would say a big thanks to all of you here for all the amazing work done.
THANKS A LOT
Oh well, not totally "bug free", the T3 ma mode still has a "refresh problem" in the current TF.
xpma mode6
6 T3MA - require "T3MA"indicator
xpma calls ind."T3MA" to work - so it as good as T3MA
if you want to use xpMA with other T3 ind., for example "T3.Lnx"
change line 168 of "xpMA_v2_SATL_FATL"
to
[PHP]buffer = iCustom(NULL,0,"T3.Lnx",MA_Period, 0,20,20,100,0,MA_AppliedPrice, 0,i);or provide "totally bug free" T3 (standalone) - we will include in xpMA as a standard
Oh well, not totally "bug free", the T3 ma mode still has a "refresh problem" in the current TF. Goinglite
Try this one just cooked. It's lobotomized version of one of the NK indicators.
Just drop the file inside /indicators folder.
Obviously, you have to install the previous packto work. Indicator does not function alone.
xpma mode6
6 T3MA - require "T3MA"indicator
xpma calls ind."T3MA" to work - so it as good as T3MA
if you want to use xpMA with other T3 ind., for example "T3.Lnx"
change line 168 of "xpMA_v2_SATL_FATL"
to
[PHP]buffer = iCustom(NULL,0,"T3.Lnx",MA_Period, 0,20,20,100,0,MA_AppliedPrice, 0,i);I will try that out. Thanks
Goinglite