What is the name of this indicator?
Where can i find it?
Thank you
KP
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
DislikedHI can anyone help i want shadow candel indicator for mt4 {image}Ignored
Disliked{quote} Привет, как называется этот индикатор? Где я могу найти его? Спасибо КПIgnored
Disliked{quote} it may help https://www.forexfactory.com/thread/...tom-candle-mt4 I'm actually looking for the same indicator, but instead of candle chart, line chart, beter being possible if you can open multiple time frames at once with customable colors for lines, any body knows any inthicator that does that?? in escence it's just overlaping 1SMA from diferent time charts, maybe I can do it without any indicator, but I don't know how this but for MT4 Multi...Ignored
DislikedCan someone create an EA that opens and closes based on a horizontal line I draw on the chart? I have an issue where I make mistakes on some of my trades when I am in the trend's direction and the price moves very volatile, so it confuses me and I end up holding the trade in the wrong direction. But if I place the horizontal line where I would like to enter the market with the trade closing and reopening above or below the line, it helps me to minimize any drawdown and I would be more confident about the trade when the trade appears to be directional....Ignored
Dislikedhello ive found indicator it have to fix if someones can be help honestly..its just horizontal or grid to be sure..plz brothers coder here.. {file}Ignored
Disliked{quote} The way price can oscillate around a given price means that there is a good possibility that multi trades would be opened and closed before price moved away from the line, the same issue can happen with Alert lines if price moves around the Alert line you get multiple alerts. You could use a send/close trade code only for each new bar but then you run the risk of missing trades because price can move a long way in 1 minute relative to the line. Just something to considerIgnored
Disliked{quote} Fix attached. Issues: Your conversion from string time is incorrect. It should be converted into int. You are passing string into iRSI(). Note: This fix is not complete. Just fixed your RSI value issue. You would fix AVG issue and add some time control - like Timer() or NewBar() check. Otherwise, it will redo every tick. {file} {image}Ignored
Disliked{quote} Maybe, you were expecting this indicator to draw MA lines. I have attached revised one that will draw MA line. Revised one should draw 2 MA lines and it will show arrows when it happens on the candle index you set in option. Default is SignalCandleShift = 1; Once candle moves on, arrow will also gone until next MA cross at the candleshift. {file} {image} {image}Ignored
Disliked{quote} Hi I was wondering if you can help me with this code I have the TotalTradesCount working with magic number Is it possible to adjust the code so it reads the total orders according to the currency pair irrespective of the magic number? Thanks Malcolm {file}Ignored
//+------------------------------------------------------------------+
//|Returns the numbers of the trades in the market |
//+------------------------------------------------------------------+
int CountOrders(string sym, int mmagic)
{
int count = 0;
for (int i = (OrdersTotal() - 1); i >= 0; i--)
{
if (!OrderSelect(i, SELECT_BY_POS, MODE_TRADES))
{
Print("ERROR - Unable to select the order - ", GetLastError());
break;
}
if (OrderSelect (i, SELECT_BY_POS, MODE_TRADES))
{
if (sym == Symbol() && OrderSymbol() != Symbol()) continue; //NULL = all symbols
if (sym != Symbol() && OrderSymbol() != sym && sym != NULL) continue; //"symbol" = symbol, Symbol() = Symbol()
//---
if (mmagic == 0 && OrderMagicNumber() > 0) continue; // 0 = select only manual trades
if (mmagic > 0 && OrderMagicNumber() == 0) continue; // mmagic = select only orders with magic
}
count++;
}
return(count);
} DislikedWorks like a tick_bar. I don't take it seriously just as a signalman. {image} {file}Ignored