Disliked{quote} Seems to update the current mtf period now, data window values also shown for oscillator display type. {file}Ignored
Working Great
Kind regards
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} Seems to update the current mtf period now, data window values also shown for oscillator display type. {file}Ignored
Disliked{quote} Fxdreema can be used as a strategy builder but I mostly use it to create trade managers that suit my needs. I highly recommend you try it out. It's easy to use.Ignored
Disliked{quote} Thanks mate - My FX Coding knowledge isn't that great but I will give it a go, see what I can do. NIgnored
DislikedI meant the universal indicator. The problem is elsewhere. I found the source code of the indicator. The indicator is faulty. {file}Ignored
DislikedHello everyone, looking for an EA for an automatic stop loss and take profit for Mt4. Currently trying to use one from perfecttrendsystem.org , have not got it to work yet though. Does anyone use an EA like this? Or how hard would it be to code this EA?Ignored
DislikedGood day all. I am looking for stochastic indicator that could be adjusted to show Overbought zone and Oversold zone As shown in the image How can I color the Overbought zone and the Oversold zone? Thank you {image}Ignored
DislikedHi i was looking for a piece of code to help identify if a charts background color is Black or White. And thus will adjust the colors of other objects on the chart based on the finding. Thank you in advanceIgnored
[color=black]//+------------------------------------------------------------------+[/color]
[color=black]//| The function receives chart background color. |
//+------------------------------------------------------------------+
color ChartBackColorGet(const long chart_ID=0)
{
//--- prepare the variable to receive the color
long result=clrNONE;
//--- reset the error value
ResetLastError();
//--- receive chart background color
if(!ChartGetInteger(chart_ID,CHART_COLOR_BACKGROUND,0,result))
{
//--- display the error message in Experts journal
Print(__FUNCTION__+", Error Code = ",GetLastError());
}
//--- return the value of the chart property
return((color)result);
}
//+------------------------------------------------------------------+
//| The function sets chart background color. |
//+------------------------------------------------------------------+
bool ChartBackColorSet(const color clr,const long chart_ID=0)
{
//--- reset the error value
ResetLastError();
//--- set the chart background color
if(!ChartSetInteger(chart_ID,CHART_COLOR_BACKGROUND,clr))
{
//--- display the error message in Experts journal
Print(__FUNCTION__+", Error Code = ",GetLastError());
return(false);
}
//--- successful execution
return(true);
}[/color] DislikedPlease great codes help to make this WPR Candles a multi-time frame and color of overbought, oversold, and neutral level. level--- overbought -20 color of choice oversold -80 color of choice Neutral level between -20,,,,,-80 color of choice Please i will be grateful.{file}
Ignored