dear Mr.Mladen and admins is there any VMA BAND indicator for mt4? thx
i use it from tradingview by lazybear ,can have it for mt4?
thx in advance
Re: MT4 Indicator requests and ideas
1392Is this something similar that your looking for ???Pelomen wrote: Wed Jun 14, 2017 2:11 am dear Mr.Mladen and admins is there any VMA BAND indicator for mt4? thx
i use it from tradingview by lazybear ,can have it for mt4?
thx in advance
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: MT4 Indicator requests and ideas
1393"VMA" is renamed adxvma and as far as I can see (the variable names used and similar things), the source of that "vma" calculation is a very familiar (to me) mq4 file made years agoPelomen wrote: Wed Jun 14, 2017 2:11 am dear Mr.Mladen and admins is there any VMA BAND indicator for mt4? thx
i use it from tradingview by lazybear ,can have it for mt4?
thx in advance

Search for adxvma or averages bands (since adxvma is a part of averages for a long time) and you shall find it
Re: MT4 Indicator requests and ideas
1394thx Mr.Sal but i think its different , it just have 2 parameters one for the vma and the other for the band
it look like this
" And I'm on my way to believing "
Re: MT4 Indicator requests and ideas
1395
yes i've found it here in ADX sectionmladen wrote: Wed Jun 14, 2017 2:59 am "VMA" is renamed adxvma and as far as I can see (the variable names used and similar things), the source of that "vma" calculation is a very familiar (to me) mq4 file made years ago
Search for adxvma or averages bands (since adxvma is a part of averages for a long time) and you shall find it
viewtopic.php?f=578480&t=8414844&p=1295 ... 1295353046
thx Mr. Mladen
you're great as always, and i know mostly the good indi come from you

and thankyou Mr. Sal
" And I'm on my way to believing "
Re: MT4 Indicator requests and ideas
1396Hello Coders and traders,
somebody knows the name of this Indicator? I deleted it by accident, while cleaning my MT4 System.
Thanks in advance, have a nice evening.
Greetings
somebody knows the name of this Indicator? I deleted it by accident, while cleaning my MT4 System.
Thanks in advance, have a nice evening.
Greetings
Re: MT4 Indicator requests and ideas
1397Hello Mladen and Mr tools !
Can this indicator be made in a way so it only shows the direction percentages up and down in 180 degrees , 90 for up and 90 for down .
I have been looking at this indicator for some time now and the idea of it is great but i dont know why it starts to show values of over 300 degrees .
Hope there is a fix for it , so it can calculate the degrees of the current bars actions
Can this indicator be made in a way so it only shows the direction percentages up and down in 180 degrees , 90 for up and 90 for down .
I have been looking at this indicator for some time now and the idea of it is great but i dont know why it starts to show values of over 300 degrees .
Hope there is a fix for it , so it can calculate the degrees of the current bars actions

Re: MT4 Indicator requests and ideas
1398Try this.Muecke wrote: Wed Jun 14, 2017 5:42 am Hello Coders and traders,
somebody knows the name of this Indicator? I deleted it by accident, while cleaning my MT4 System.
Thanks in advance, have a nice evening.
Greetings
Re: MT4 Indicator requests and ideas
1399Better to use some other indicatorTimmyHanke wrote: Wed Jun 14, 2017 5:57 am Hello Mladen and Mr tools !
Can this indicator be made in a way so it only shows the direction percentages up and down in 180 degrees , 90 for up and 90 for down .
I have been looking at this indicator for some time now and the idea of it is great but i dont know why it starts to show values of over 300 degrees .
Hope there is a fix for it , so it can calculate the degrees of the current bars actions![]()
That indicator has some issues that are not making it quite usable
Re: MT4 Indicator requests and ideas
1400
Hi Mladen,mladen wrote: Mon Jun 12, 2017 6:55 pm Those parameters depend on your code, not the called indicator
Create inputs for thos parameters and use them in the iCustom() call the way any iCustom() call uses external parameters
thank you for your advise, I have implemented your Indicator without coding the input parameters in my EA.
Unfortunately I don't get trade signals. This is what I did, using Buffer No. 9 to get (-1 / 0 / 1) signals.
Could you probably have a look?
Code: Select all
double SuperSmoothAverage(int index)
{
double SSA=iCustom(Symbol(),0,"Super smoothed average 1.5",index,9);
return(SSA);
}
int SSA = SuperSmoothAverage(9);
if(SSA== 1 && Timee!=Time[0])
{BUY}
if(SSA == -1 && Timee!=Time[0])
{SELL}
if(SSA == 0 && Timee!=Time[0])
{Close}