I need FVG indicator with buffer or arrow for buy or sell
thank you
thank you
I will code your pivot EAs for no charge 25 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
DislikedHello. Please, programmers, help eliminate the error in the code of indicator 0 - MA-Crossover_Alert.mq5 which is posted in this thread Post 24,542 from Jun 19, 2018 3:18. It does not compile and therefore does not install. Thank you {file} {image}Ignored
DislikedI need FVG indicator with buffer or arrow for buy or sell thank youIgnored
Disliked{quote} After giving your comments a bit of thought, I have serious doubts. Please post images of your specific setup in MT4 and of your Alert messages. I am running the indicator on 3 different symbols and it is alerting properly. I have serious doubts that you might be talking about something different, like that when you have 3 different charts of the same symbol. Because, yes, when you have 3 different charts of the same symbol, the indicaotor will alert about all the trades for that symbol. Independent of which chart instance (tab) the trade...Ignored
Disliked{quote} i have noticed a new behaviour of this indicator,it sends the alarm if the PA goes through the level where previously the trade is opened,so the repeat unwanted alarm appears. {image}Ignored
Disliked{quote} We said a million times that we DO NOT WORK with decompiled codes!Ignored
Disliked{quote} In this case it's better to use a script (Scripts folder). You just drag&drop the script onto a chosen candle. {file} {image} The ACD indicator is not good for your purpose.Ignored
int symCn=0, bSymCn=0, sSymCn=0; // Count how many symbols with OpOrd for(int i=SymbolsTotal(true)-1; i>=0; i--) { int sum=0, bSum=0, sSum=0; for(int j=OrdersTotal()-1; j>=0; j--) { if(OrderSelect(j,SELECT_BY_POS,MODE_TRADES) && OrderSymbol()==sym) { sum++; if(OrderType()==OP_BUY) bSum++; if(OrderType()==OP_SELL) sSum++;}} if(SymbolName(i,true)==sym && sum>0) symCn++; if(SymbolName(i,true)==sym && bSum>0) bSymCn++; if(SymbolName(i,true)==sym && sSum>0) sSymCn++; } Print("Sym# "+IntegerToString(symCn)+" / BUY Sym# "+IntegerToString(bSymCn)+ " / SEL Sym# "+IntegerToString(sSymCn));
DislikedHello everyone, can anyone share or make an indicator that would show the D1 candlestick in a separate window, that is, I trade on m1 and it shows me the D1 candlestick, thanks in advance. and who can create an indicator that will draw the top and bottom of a candle that I choose myself, for example, I need it to be able to select a candle, for example, on M1 at 13:35, and I need it to be able to highlight its level, if of course this can be done, thanks in advance also onceIgnored