Page 141 of 2170
Re: MT4 Indicator requests and ideas
Posted: Wed Jun 14, 2017 7:37 pm
by mladen
hobbytrader wrote: Wed Jun 14, 2017 6:56 pm
Hi Mladen,
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}
Thank you in advance!
You are con fusing index and buffer number
Do a simple
Code: Select all
int SSA =iCustom(Symbol(),0,"Super smoothed average 1.5",9,1);
for the first closed bar (or 0 instead of 1 for still opened bar)
If you use buffer 9 all is OK (provided that index and buffer number are not inverted)
Re: MT4 Indicator requests and ideas
Posted: Wed Jun 14, 2017 9:20 pm
by hobbytrader
mladen wrote: Wed Jun 14, 2017 7:37 pm
You are con fusing index and buffer number
Do a simple
Code: Select all
int SSA =iCustom(Symbol(),0,"Super smoothed average 1.5",9,1);
for the first closed bar (or 0 instead of 1 for still opened bar)
If you use buffer 9 all is OK (provided that index and buffer number are not inverted)
example.png
Hi Mladen,
thank you very much for your reply.
I have implemented it as simple as possible, but the EA doesn't open any position.
Code: Select all
int SSA =iCustom(Symbol(),0,"Super smoothed average 1.5",9,1);
if(SSA == 1)
{BUY}
if(SSA == -1)
{SELL}
Is there still something to improve?
Re: MT4 Indicator requests and ideas
Posted: Wed Jun 14, 2017 9:29 pm
by mladen
hobbytrader wrote: Wed Jun 14, 2017 9:20 pm
Hi Mladen,
thank you very much for your reply.
I have implemented it as simple as possible, but the EA doesn't open any position.
Code: Select all
int SSA =iCustom(Symbol(),0,"Super smoothed average 1.5",9,1);
if(SSA == 1)
{BUY}
if(SSA == -1)
{SELL}
Is there still something to improve?
hobbytrader
There is nothing in that code to change
Check the rest of the code why your orders are not opened
Re: MT4 Indicator requests and ideas
Posted: Wed Jun 14, 2017 11:21 pm
by hobbytrader
mladen wrote: Wed Jun 14, 2017 9:29 pm
hobbytrader
There is nothing in that code to change
Check the rest of the code why your orders are not opened
Thank you Mladen, I truly appreciate your help.
Re: MT4 Indicator requests and ideas
Posted: Thu Jun 15, 2017 1:09 am
by AussieBeau
AussieBeau wrote: Mon Jun 12, 2017 5:17 pm
Hi Mladen,
Sorry but this posted is not the same
Mine was a dashboard m1 m5 m15 etc
AussieBeau
Hi Mladen,
With all due respect...it is obvious that you have not downloaded my indicator.
Your reply that it has been posted,referring me to an indicator..is to a completely different indicator.
The indicator I asked for help about was a dashboard that I use for entry exits.
Yes it is based on Hull.
May I ask that you please refer to my original post (#42 page 5 addressed to MrTools) and then download the indicator(attached here) and you will see the problem I have...that is it will load but once saved to a template , it will not appear on the chart once the template is loaded up again......it is not the 1090 bug.
If you do not want to do it..that is fine.
AussieBeau
Re: MT4 Indicator requests and ideas
Posted: Thu Jun 15, 2017 3:38 am
by Rockweli
hi dear cording friends,
some one please make adx dmi level cross arrow. it is really help for find good trends
Regards,,,,,,,,,,,,,,,,,,,,,
Re: MT4 Indicator requests and ideas
Posted: Thu Jun 15, 2017 5:01 am
by mntiwana
Rockweli wrote: Thu Jun 15, 2017 3:38 am
hi dear cording friends,
some one please make adx dmi level cross arrow. it is really help for find good trends
Regards,,,,,,,,,,,,,,,,,,,,,
There are so many and different style indicators of that,which one specifically you are talking about
have you checked "ADX Indicators" thread
Re: MT4 Indicator requests and ideas
Posted: Thu Jun 15, 2017 2:04 pm
by Rockweli
mntiwana wrote: Thu Jun 15, 2017 5:01 am
There are so many and different style indicators of that,which one specifically you are talking about
have you checked "ADX Indicators" thread
I searched all thread. There have lot of dmi cross arrows, but still i cant find dmi level cross arrow.
Re: MT4 Indicator requests and ideas
Posted: Thu Jun 15, 2017 2:36 pm
by RplusT
I would like to modify the Wavetrend 1.5 indicator for the mtf mode. But as I do not have the mql file I can't do that by myself. Has someone got it?
If not, can mLaden/mrTools add the following to it:
1) Automatic next TF (shows next higher TF to the current i.e. 5m on 1m)
2)Automatic next 2 TF (shows second higher TF to the current i.e. 15m on 1m)
It is impossible to change charts to other TFs without this automation and having adjust the indicator manually every time.
Re: MT4 Indicator requests and ideas
Posted: Thu Jun 15, 2017 3:39 pm
by mntiwana
Dearest Experts
I think 3 additions within "dsl - DMI oscillator (vidya) 1.01" will be increase the functionality more in a dynamic way,when you can manage time plz review said request
1 : color change on signal cross conditionally if signals are different than levels (it already changing color on slope,zero cross and level cross)
2 : levels squeezing/widening option like FL/DZ
3 : most importantly Tema addition within DMI smoothing method
regards