Can you add other pair?
Re: Dashboard Type Indicators for MT4
173I will like to test ichimoku mtf dashboard indicator.
kindly share if you have any
kindly share if you have any
Re: Dashboard Type Indicators for MT4
175Can 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
176Tried 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
177Can 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
180Here are the ADR calculations for future use...
Xard777
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;XARD: If Carlsberg made charts... Probably the best charts in the world