MultiTrader
Please put the file in the "Expert Advisors" folder.
Re: Dashboard Type Indicators for MT4
422Hello brother, good time. I am Hossam from Iran, I sent you a message. There is an indicator for Trading View. Can you convert it to MetaTrader 4?mrtools wrote: Mon Mar 06, 2017 1:51 am Hi Mtuppers, have this version you might be interested in, needs the non lag ma histo in the indicators folder for it to work.
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/
// © hesammantra
#property copyright "hesammantra"
#property link "https://www.tradingview.com/u/hesammantra/"
int isHigherHigh()
{
if (High[0] > High[1] && High[1] > High[2] &&
Close[0] > Close[1] && Close[1] > Close[2] &&
Close[0] > Open[0] && Close[1] > Open[1] && Close[2] > Open[2] &&
Low[0] > Open[1] && Low[1] > Open[2] &&
(Open[0] + Low[0]) < (Open[0] + Close[0]))
{
return 1;
}
return 0;
}
int isLowerLow()
{
if (Low[0] < Low[1] && Low[1] < Low[2] &&
Close[0] < Close[1] && Close[1] < Close[2] &&
Close[0] < Open[0] && Close[1] < Open[1] && Close[2] < Open[2] &&
High[0] < Open[1] && High[1] < Open[2])
{
return 1;
}
return 0;
}
int init()
{
return(0);
}
int deinit()
{
return(0);
}
int start()
{
if (isHigherHigh())
{
BarColor(0, RGB(103, 58, 183));
BarColor(1, RGB(103, 58, 183));
BarColor(2, (Close[2] > Open[2]) ? RGB(103, 58, 183) : CLR_NONE);
}
else if (isLowerLow())
{
BarColor(0, Yellow);
BarColor(1, Yellow);
BarColor(2, (Close[2] < Open[2]) ? Yellow : CLR_NONE);
}
return(0);
}
Re: Dashboard Type Indicators for MT4
423Hi Kvak. is it possible for you to change this indicators conditions from "change of slope" to "close below 0.8" for negative slope and "close above -0.8" for positive slope change?
Re: Dashboard Type Indicators for MT4
424Xo dashboard
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: Dashboard Type Indicators for MT4
425Sorry for this condition have not idea how to do .... only for standard condition above 0,8 uptrend and viceversa....Lightningstorm7 wrote: Sun Jul 30, 2023 7:36 am Hi Kvak. is it possible for you to change this indicators conditions from "change of slope" to "close below 0.8" for negative slope and "close above -0.8" for positive slope change?
- These users thanked the author kvak for the post:
- Lightningstorm7
Re: Dashboard Type Indicators for MT4
426is there an indicator needed for this mr tools? or does it only give alerts but not show anything
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: Dashboard Type Indicators for MT4
427No, it uses built in cci and ma's. This is what I get.Chickenspicy wrote: Wed Sep 13, 2023 4:37 am is there an indicator needed for this mr tools? or does it only give alerts but not show anything
Re: Dashboard Type Indicators for MT4
428
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: Dashboard Type Indicators for MT4
429got it too work again
had to bring it back to default settings
ah okay its shifted to the left so you couldn't see the only option i had for 4hr
here is all default pairs
AUDCAD,AUDCHF,AUDJPY,AUDNZD,AUDUSD,CADCHF,CADJPY,CHFJPY,EURAUD,EURCAD,EURCHF,EURGBP,EURJPY,EURNZD,EURUSD,GBPAUD,GBPCAD,GBPCHF,GBPJPY,GBPNZD,GBPUSD,NZDCAD,NZDCHF,NZDJPY,NZDUSD,USDCAD,USDCHF,USDJPY,XAGUSD,XAUUSD
had to bring it back to default settings

ah okay its shifted to the left so you couldn't see the only option i had for 4hr
here is all default pairs
AUDCAD,AUDCHF,AUDJPY,AUDNZD,AUDUSD,CADCHF,CADJPY,CHFJPY,EURAUD,EURCAD,EURCHF,EURGBP,EURJPY,EURNZD,EURUSD,GBPAUD,GBPCAD,GBPCHF,GBPJPY,GBPNZD,GBPUSD,NZDCAD,NZDCHF,NZDJPY,NZDUSD,USDCAD,USDCHF,USDJPY,XAGUSD,XAUUSD
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Re: Dashboard Type Indicators for MT4
430would there be any possibility to replace the ema & cci in this dashboard for the step filtered stochastic?
it gives very good entry signals, can be used to scan 4hr charts and 1hr charts with alot of ease
the only other dashboard i think may also benefit is
tma channel, ma distance, and 1,2,3
but these can be found on mql5 store already
there is only one small piece for the code of the dashboard
it gives very good entry signals, can be used to scan 4hr charts and 1hr charts with alot of ease
the only other dashboard i think may also benefit is
tma channel, ma distance, and 1,2,3
but these can be found on mql5 store already
there is only one small piece for the code of the dashboard
0 + 0 = 0
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?
Infinite / Infinite = 1
1 way to Heaven & it matters
people only serve God or money coincidence?