Page 18 of 50

Re: Dashboard Type Indicators for MT4

Posted: Tue Jun 15, 2021 4:38 am
by aguiyi
Darks wrote: Tue May 04, 2021 3:47 pm Nice utility
Can you add other pair?

Re: Dashboard Type Indicators for MT4

Posted: Tue Jun 15, 2021 7:50 am
by Darks
aguiyi wrote: Tue Jun 15, 2021 4:38 am Can you add other pair?
Check this
viewtopic.php?p=1295435931#p1295435931

Re: Dashboard Type Indicators for MT4

Posted: Tue Jun 15, 2021 4:45 pm
by aguiyi
I will like to test ichimoku mtf dashboard indicator.

kindly share if you have any

Re: Dashboard Type Indicators for MT4

Posted: Sun Jun 20, 2021 2:58 am
by lubexfx
anyone had tried it before?

Re: Dashboard Type Indicators for MT4

Posted: Tue Jun 22, 2021 4:35 pm
by optionhk
lubexfx wrote: Sun Jun 20, 2021 2:58 am anyone had tried it before?
Can you please make lifting of symbols from Marketwatch by modifying the input panel like the picture?
The dashboard layout is good but it is not working.

Re: Dashboard Type Indicators for MT4

Posted: Thu Jun 24, 2021 10:41 pm
by alisawilson007
Tried the MACD indicator but not feeling comfortable with it’s limitless variations of input parameters. Wish to try an alternative indicator. Any suggestions?

Re: Dashboard Type Indicators for MT4

Posted: Tue Jul 13, 2021 5:48 am
by billbroch
Can anyone make an All Pairs scanner/dashboard for this indicator please? It is one I made with EABuilder and I'd like to have an alert when an arrow draws on any pair.

Re: Dashboard Type Indicators for MT4

Posted: Fri Jul 30, 2021 7:49 pm
by kaywax
Darks wrote: Tue Jun 15, 2021 7:50 am Check this
viewtopic.php?p=1295435931#p1295435931
Hi Darks..could you add alerts to this mazing dashboard

Re: Dashboard Type Indicators for MT4

Posted: Sat Jul 31, 2021 12:22 am
by Darks
kaywax wrote: Fri Jul 30, 2021 7:49 pm Hi Darks..could you add alerts to this mazing dashboard
Can't say currently as working on some other stuff but maybe in future

Re: Dashboard Type Indicators for MT4

Posted: Sat Jul 31, 2021 12:31 am
by xard777
Here are the ADR calculations for future use...

Code: Select all

//+---ADR------------------------------------------------------------------------------------------------------------+
   string OPEN=""; OpenToday=iOpen(SymPair,1440,0); OPEN=(DoubleToStr(OpenToday,DecNos)); 
   string PIPS=""; CLOSE=iClose(SymPair,1440,0); PIPS=DoubleToStr((CLOSE-OpenToday)/Point/pipsize,0);
   ADR1=0; ADR5=0; ADR10=0; ADR20=0; ADRavg=0; int a,b,c; int ypos=0;
                             ADR1=(iHigh(NULL,TimeFrame,1)-iLow(NULL,TimeFrame,1));
   for(a=1;a<= 5;a++)  ADR5= ADR5+(iHigh(NULL,TimeFrame,a)-iLow(NULL,TimeFrame,a));
   for(b=1;b<=10;b++) ADR10=ADR10+(iHigh(NULL,TimeFrame,b)-iLow(NULL,TimeFrame,b));
   for(c=1;c<=20;c++) ADR20=ADR20+(iHigh(NULL,TimeFrame,c)-iLow(NULL,TimeFrame,c));
   ADR5=ADR5/5;  ADR10=ADR10/10;  ADR20=ADR20/20;  ADRavg=(((ADR1+ADR5+ADR10+ADR20)/4))/Point/pipsize;
Xard777