Re: MT4 Indicator requests and ideas

1401
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

1402
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

1403
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

1405
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

1407
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
Indicator is just a tool.

Use it only if it can benefit you. Leave it if you don't know how to use it optimally.

Re: MT4 Indicator requests and ideas

1409
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

1410
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
These users thanked the author mntiwana for the post:
太虚一毫
Indicator is just a tool.

Use it only if it can benefit you. Leave it if you don't know how to use it optimally.


Who is online

Users browsing this forum: Ricstar_8 and 41 guests