Page 76 of 158

Re: Trend Indicators for MT4

Posted: Sun May 09, 2021 12:52 am
by josi
mrtools wrote:Thu May 06, 2021 2:44 am Added t3 to the mix.
I tried to use your updated indicator.
Doesn't work - the popup says: you used a renamed indicator.
Didn't rename it, though.

Re: Trend Indicators for MT4

Posted: Sun May 09, 2021 11:56 am
by mrtools
josi wrote:Sun May 09, 2021 12:52 am I tried to use your updated indicator.
Doesn't work - the popup says: you used a renamed indicator.
Didn't rename it, though.
Compiled it again, this seems to work sometimes.

Re: Trend Indicators for MT4

Posted: Mon May 10, 2021 4:08 am
by Daniel1fx1
bsat wrote:Sat Apr 10, 2021 7:35 pm I ONLY HONOR THE ARROWS AFTER CROSS OVER, GREAT SUCCESS THOUGH STILL BACK TESTING.

What arrow indicator is this one? Does it repaint?

Re: Trend Indicators for MT4

Posted: Wed May 12, 2021 9:50 pm
by Deez
mrtools wrote:Tue Apr 13, 2021 4:32 am Mtf added.
HI MrTools,

Could you please make a 3 color histo version of this indi when you have the time.

Thanks.

Re: Trend Indicators for MT4

Posted: Thu May 13, 2021 6:31 am
by mrtools
Deez wrote:Wed May 12, 2021 9:50 pm HI MrTools,

Could you please make a 3 color histo version of this indi when you have the time.

Thanks.
Made the 3 color histo version.

Re: Trend Indicators for MT4

Posted: Wed May 19, 2021 2:23 am
by Behold97
mrtools wrote:Thu May 06, 2021 2:44 am Added t3 to the mix.
Is it possible to put the arrows in seperate buffers? That would be great. Many thanks for your work.

Re: Trend Indicators for MT4

Posted: Wed May 19, 2021 2:42 am
by mrtools
Behold97 wrote:Wed May 19, 2021 2:23 am Is it possible to put the arrows in seperate buffers? That would be great. Many thanks for your work.
Why would you want the arrows in separate buffers, sorry not understanding?

Re: Trend Indicators for MT4

Posted: Thu May 20, 2021 8:38 pm
by Behold97
mrtools wrote:Wed May 19, 2021 2:42 am Why would you want the arrows in separate buffers, sorry not understanding?
As I understand the "rules" for the indicator correct, the signal gets triggered when each color respectively breaks threw the golden line. But there are never 2 sell/buy signals in a row. Seems to me that there always has to be a buy signal after a sell signal.

Now correct me if iam wrong but thats how I understand it from looking at the indicator and its thread.

I want to backtest the indicator and its capabilities.
Sadly I dont know how to implement that special rule that the same signal cant be twice after each other. Having the arrows in buffers (if sell signal = true then buffer = 1)would make it easy, but i would understand if it is to much work to do. Iam using fxdreema to backtest it.

Thanks for your response!

Re: Trend Indicators for MT4

Posted: Fri May 21, 2021 1:38 am
by mrtools
Behold97 wrote:Thu May 20, 2021 8:38 pm As I understand the "rules" for the indicator correct, the signal gets triggered when each color respectively breaks threw the golden line. But there are never 2 sell/buy signals in a row. Seems to me that there always has to be a buy signal after a sell signal.

Now correct me if iam wrong but thats how I understand it from looking at the indicator and its thread.

I want to backtest the indicator and its capabilities.
Sadly I dont know how to implement that special rule that the same signal cant be twice after each other. Having the arrows in buffers (if sell signal = true then buffer = 1)would make it easy, but i would understand if it is to much work to do. Iam using fxdreema to backtest it.

Thanks for your response!
On this I have upVal = buffer 2, dnVal = buffer 3, and ItLevel = buffer 4 . If upVal > ItLevel = buy and if dnVal > ItLev = sell. Also you can use the trend buffer which is buffer 5 and call it similar to this

Code: Select all

#define _doNothing 0
#define _doBuy     1
#define _doSell    2
void OnTick()
{
   int doWhat = _doNothing;
      double hull_trend_current  = iCustom(NULL,0,"Adaptive -  jurik filter (mtf +  alerts + fl's)",PERIOD_CURRENT,Length,Phase,Double,AtrLength,AtrPhase,AtrDouble,Price,Filter,FilterType,LevelType,MinMaxPeriod,KATR,LevelUp,LevelDn,ColorOn,12,BarToUse);
      double hull_trend_previous = iCustom(NULL,0,"Adaptive -  jurik filter (mtf +  alerts + fl's)",PERIOD_CURRENT,Length,Phase,Double,AtrLength,AtrPhase,AtrDouble,Price,Filter,FilterType,LevelType,MinMaxPeriod,KATR,LevelUp,LevelDn,ColorOn,12,BarToUse+1);
      if (hull_trend_current!=hull_trend_previous)
         if (hull_trend_current==1)
               doWhat = _doBuy;
         else  doWhat = _doSell;
Of course you need to change the iCustom to match the Itrend.

Re: Trend Indicators for MT4

Posted: Wed Jun 02, 2021 6:14 am
by mrtools
traderokey wrote:Wed Jun 02, 2021 1:28 am Hi Mrtools,

Could you please add multi-time frame capability to these two indicators.
Thank you.



Itrend averages (alerts).ex4


glitch index averages.ex4
Added mtf to this one instead.