Also MTF selectable if possiblemntiwana 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 possiblemntiwana 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
awesomemladen wrote: Mon Jun 12, 2017 2:00 am alif
Here is this type of oscillator
super smoothed average oscillator.png
Thanks Mladen and mntiwana, I try everything and Allow DLL.this is indicators and DLLmntiwana wrote: Mon Jun 12, 2017 2:34 am Hi sten
If MLADENs advice do not work,Post the indicator,you are trying to apply
Hi ranaSK_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
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.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
Try this one - hereSK_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.
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);
}
I am assuming that iy works after you allowed dll imports?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