- #28,462
- Mar 25, 2019 5:45am Mar 25, 2019 5:45am
- Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,901 Posts
- #28,467
- Mar 25, 2019 10:11am Mar 25, 2019 10:11am
- Joined Apr 2010 | Status: Lazy trader on D1 charts | 5,901 Posts
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
DislikedDear Coders, Can anyone help me to code a histogram bar indicator for the below condition, If current bar ADX(7) > ADX(21) > ADX(42) > ADX(89) > ADX(144) -------> Green else ----> Gray Thanks srpips {image}Ignored
DislikedI think there are too many silly coding requests. Here is mine. Could you please code me a hamburger but make sure it doesn't repaintIgnored
Disliked{quote} ok clear , maybe you know any tool who change mt4 to mt5 indicators ?Ignored
Disliked{quote} I tried MT5 and it's a disaster due to the lack of custom indicators. Some brokers are so willing to push MT5 to their clients that they give them a 30% discount on spreads. Only If all the MT4 indicators could be changed to MT5 would I consider changing my good old reliable MT4 for MT5.Ignored
Disliked{quote} ok clear , maybe you know any tool who change mt4 to mt5 indicators ?Ignored
Disliked{quote} Maybe this will work datetime lastbar=0; int start(){ for(int i=Bars-IndicatorCounted()-1;i>=0;i--){ Close_0=Close; Open_0=Open; Open_1=Open[i+1]; Close_1=Close[i+1]; Open_2=Open[i+2]; Close_2=Close[i+2]; // some logic BuyEvent=True; // some crossover logic sellEvent=True; if(lastbar<Time[0]){ if(BuyEvent){ AreaCrossUp=Low-0.0002; loctime=TimeToString(TimeLocal(),TIME_DATE|TIME_MINUTES|TIME_SECONDS); if(i==0){ Alert("BUY: "+Symbol()+" "+Period()+" "+" "+loctime); sMsg="BUY: "+Symbol()+" "+Period()+" "+" "+loctime; SendMail("BUY:...Ignored