Page 135 of 2170

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 4:58 am
by shreck
mntiwana wrote: Sun Jun 11, 2017 4:50 am Hi experts
One strange question
if there is any possibility to experiment some averaging methods within EFT ?
especially some thing from NMAs and or Tema
Also MTF selectable if possible
:)

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 5:42 am
by talaate
mladen wrote: Mon Jun 12, 2017 2:00 am alif

Here is this type of oscillator


super smoothed average oscillator.png
awesome

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 7:51 am
by sten
mntiwana wrote: Mon Jun 12, 2017 2:34 am Hi sten
If MLADENs advice do not work,Post the indicator,you are trying to apply
Thanks Mladen and mntiwana, I try everything and Allow DLL.this is indicators and DLL

thanks best regards

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 7:52 am
by sten
sorry this Post include indicators and dll

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 10:25 am
by SK_Rana
EA Idea.

Hello Master,

If possible can we turn this idea into an EA? Please find the attached screen shot with buy/sell conditions.

Thank you,
RANA

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 11:44 am
by mntiwana
SK_Rana wrote: Mon Jun 12, 2017 10:25 am EA Idea.

Hello Master,

If possible can we turn this idea into an EA? Please find the attached screen shot with buy/sell conditions.

Thank you,
RANA
Hi rana
in your picture where is p-day high/low - i doubts it will take less trades

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 12:01 pm
by SK_Rana
mntiwana wrote: Mon Jun 12, 2017 11:44 am Hi rana
in your picture where is p-day high/low - i doubts it will take less trades
I didn't understand your point Tiwana Saab. It will take every day trade if the the condition is true. Imagine running this method on, lets say 10 pairs of your choice. Lets do the math - 10 pairs x 10 pips each = 100 pips daily. I am not saying that this will win everyday. We shall see some loses as well. But lets try it and gradually make this idea robust enough to make some money for us.

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 12:38 pm
by mntiwana
SK_Rana wrote: Mon Jun 12, 2017 12:01 pm I didn't understand your point Tiwana Saab. It will take every day trade if the the condition is true. Imagine running this method on, lets say 10 pairs of your choice. Lets do the math - 10 pairs x 10 pips each = 100 pips daily. I am not saying that this will win everyday. We shall see some loses as well. But lets try it and gradually make this idea robust enough to make some money for us.
Try this one - here
https://www.forex-station.com/viewtopic ... 1295357325

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 4:31 pm
by hobbytrader
Hi Mladen,

I would like to use your Super_Smoothed_Average 1.5 for an EA to test.

It should go long when the slope line turns green,
not trade / exit the position when the slope line is grey
go short when the line turns red.

Since I don't know the source code, I could only have a guess which buffer to take for example.
I put in some pseudo code. Could you probably give me some advise how to address the indicator?

Thank you in advance!

Code: Select all

int Super_Smoothed_Average()
   {

   int i;   
   int SSA_Signal=0;
   
   int BarShift = iBarShift(NULL,TimeFrame,Time[i]);   
   double SSA_Trend = iCustom(NULL,TimeFrame,"Super_Smoothed_Average 1.5",PERIOD_CURRENT,AveragePeriod,AveragePrice,AverageMethod,FloatingLevels,SmoothPower,Alerts,AlertsSound,ColorChangeOn,7,BarShift);
   
   if (SSA_Trend == 0) SSA_Signal = 0; // Grey Exit Position / not trade  
   if (SSA_Trend == 1) SSA_Signal = 1; // Long
   if (SSA_Trend == -1) SSA_Signal = -1; // Short
   
   return (SSA_Signal);
   }

Re: MT4 Indicator requests and ideas

Posted: Mon Jun 12, 2017 4:38 pm
by mladen
sten wrote: Mon Jun 12, 2017 7:51 am Thanks Mladen and mntiwana, I try everything and Allow DLL.this is indicators and DLL

thanks best regards
I am assuming that iy works after you allowed dll imports?