Say something meaningful or Silence!!
- #38,461
- Aug 11, 2020 1:49pm Aug 11, 2020 1:49pm
- Joined Jun 2012 | Status: Trader , Analyst and Mentor | 5,884 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
Disliked{quote} I added ADR value col. You can turn off/on as needed. {file} {image}Ignored
int ForexFactory = iBarShift(NULL,PERIOD_D1,Time[0]) + 1; // yesterday
HiPrice = iHigh(NULL,PERIOD_D1,ForexFactory);
LoPrice = iLow (NULL,PERIOD_D1,ForexFactory);
StartTime = iTime(NULL,PERIOD_D1,ForexFactory);
if(TimeDayOfWeek(StartTime)==0/*Sunday*/)
{//Add fridays high and low
HiPrice = MathMax(HiPrice,iHigh(NULL,PERIOD_D1,ForexFactory+1));
LoPrice = MathMin(LoPrice,iLow(NULL,PERIOD_D1,ForexFactory+1));
} // if(TimeDayOfWeek(StartTime)==0/*Sunday*/) Disliked{quote} The one in topic is a renamed and badly altered (removed/deleted code part) in some cases (though enhanced regarding helping objects) Originally it is "xSuperTrend" indicator and more originally it is ATR trend indicator, "X" in the name came from "Xaphod" who was trying extending it ------------------------------------------- //+------------------------------------------------------------------+ //| XTREND.mq4 v1.2 | //| Copyright2015, | //| | //+------------------------------------------------------------------+ #property copyright...
Ignored
DislikedHi my dear coders, I have this profitable and useful EA created for me by someone, It trades only in one chart. When I add to the 2nd chart multiple orders are entered at random. I have to change magic numbers on each chart. Can someone correct it. I also need time filter if possible. Thanks a lot in advance {file}Ignored
DislikedHi, I have a small request, if possible. Alert for Maximum values at previous 1 or 2 bars. At the start of the bar, first half of the bar. / Bulls Candles will need to have the maximum values on the bottom and Bears Candles will need to have the maximum values on the top / Buy Bulls and Sell Bears signals. Available for iCustoms code. It could keep the same 1 buffer but provide a 1 or -1 signal, for example. {image} {file}Ignored
Disliked{quote} It is too complex. I do not think that EA trades in a clean way. You might well give it a new Magic Number per chart. It will be easier. Does that EA really work? I might help you with the Time Filter. What logic, according to time, are you thinking of?Ignored
Disliked{quote} Hi It is a Hedging EA. You can enable buy sell or both and test it with Strategy tester to understand what it does. Mostly I use it to enter trades manually and the EA hedges and closes it in profit if the trade goes against me. All the hedge levels are configurable. It can be used to enter trades automatically. Better than Martingale. {image}Ignored
Disliked{quote} {quote} Will include the end minutes if it lands on a tf time, but rounds down if not. {image} {file}Ignored
Disliked{quote} It is too complex. I do not think that EA trades in a clean way. You might well give it a new Magic Number per chart. It will be easier. Does that EA really work? I might help you with the Time Filter. What logic, according to time, are you thinking of?Ignored
Disliked{quote} Regarding the time filter, Please add start time and end time.Ignored
Disliked{quote}...text to stick at the top of chart by default ? ( not moved according to daily high or low...Ignored
Disliked{quote} Dear Jeanlouie, Please look into it when you get some time thanks & regardsIgnored