Thanks in advance
Malcolm
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
Dislikedfriends, Are there any indicators that show when a candlestick has its opening and closing outside the Bollinger bands?Ignored
Disliked{quote} hi mate would you consider to create one engulfing candle indicator +dashboard muti pair mtf but one conidiation indicator draw low to red candle open for bullish engulfing and opposite for bearish and must break previous high-low structure .any question please ask me, thanks in advanceIgnored
DislikedHello Coders, I need help for modification of this pivot indicator (Well it's more than a pivot if you know about Fibo Henry Zones) The indicator uses yesterday's and the previous days' high low and close levels to show the current day's range levels. I am asking you to please modify it to make it a MTF indicator to see how it would apply to Weekly, Monthly, H4. Weekly is my priority but it would be great if I had an option to switch between time frames. Also, it would be great to have: *Zone level labels as Zone 1-2-3-4-5-6 and the mid dashed line...Ignored
Disliked{quote} Hi , RodrigoBRJ. This you want It seems that the code needs to be rewritten. It use long time. I can't do that . I am sorry. but if you like your HL_Objects indicator. you can use with this. It old code . It can use but not perfect. I fix warning and made button. if you use with Crypto setting "UseZigZagForHL = false ". {image} {file}Ignored
Disliked{quote} Made MTF and added color options, I kept the original zones as your image was quite different to the posted indicator so I was unsure exactly what you wanted. {file}Ignored
Disliked{quote} Hi. Do you have any ea which will close all trades on a pair or account if the equity level for example rise's by $10 and then read the new equity and do it all over again Thanks in advance MalcolmIgnored
#property copyright "PaulMF"
#property link "https://www.forexfactory.com/paulmf"
#property strict
input double EquityChange = 10; // Equity Change
double StartEquity = -1;
int OnInit()
{
if(StartEquity < 0)
StartEquity = AccountEquity();
EventSetTimer(60);
return(INIT_SUCCEEDED);
}
double GetClosingPrice()
{
int type = OrderType();
if(type == OP_BUY)
return SymbolInfoDouble(OrderSymbol(),SYMBOL_BID);
else if(type == OP_SELL)
return SymbolInfoDouble(OrderSymbol(),SYMBOL_ASK);
return -1.0;
}
void OnTimer()
{
if(AccountEquity() >= StartEquity + EquityChange || AccountEquity() <= StartEquity - EquityChange)
{
int last = OrdersTotal();
for(int i=0;i<last;i++)
{
if(!OrderSelect(i,SELECT_BY_POS))
continue;
if(OrderType() > 1)
continue;
if(!OrderClose(OrderTicket(),OrderLots(),GetClosingPrice(),EMPTY_VALUE))
Print("Closing failed for ticket: "+(string)OrderTicket());
else
i--;
}
StartEquity = AccountEquity();
}
} Disliked{quote} Hi romulorios. I have this . I think it same you want . for C1-C5 = last candle bull bear. it have pairs changer. but you don,t change indicator name. {image} {file}Ignored
Disliked{quote} Hi classy . for dashboard muti pair mtf. it can. if calculate 1-10 candle. if too much calculate it freeze mt4. for previous high-low it too much calculate. and for your want I don't have idea. I am sorry.Ignored
Disliked{quote} Hi romulorios. I have this . I think it same you want . for C1-C5 = last candle bull bear. it have pairs changer. but you don,t change indicator name. {image} {file}Ignored
Disliked{quote} You may use this as a template for that purpose: #property copyright "PaulMF" #property link "https://www.forexfactory.com/paulmf" #property strict input double EquityChange = 10; // Equity Change double StartEquity = -1; int OnInit() { if(StartEquity < 0) StartEquity = AccountEquity(); EventSetTimer(60); return(INIT_SUCCEEDED); } double GetClosingPrice() { int type = OrderType(); if(type == OP_BUY) return SymbolInfoDouble(OrderSymbol(),SYMBOL_BID); else if(type == OP_SELL) return SymbolInfoDouble(OrderSymbol(),SYMBOL_ASK); return -1.0;...Ignored
Dislikedhi, i;ve searched a lot but cant find something that works, so i post it here in hope some has or can make one. i need an ea that will close all trades on pc based off a proft target. it should work on all pairs. example i have 2 sorts on uj and uc and another 2 longs on au and eu. when the total profit of all those trades goes to "x" amount it should close them all. also it should allow some room for closure before slipage, for example if you set profit closure at 1000, by the time the last trade is closed it might have gone back down to 950 and...Ignored
Disliked{quote} You may use this as a template for that purpose: #property copyright "PaulMF" #property link "https://www.forexfactory.com/paulmf" #property strict input double EquityChange = 10; // Equity Change double StartEquity = -1; int OnInit() { if(StartEquity < 0) StartEquity = AccountEquity(); EventSetTimer(60); return(INIT_SUCCEEDED); } double GetClosingPrice() { int type = OrderType(); if(type == OP_BUY) return SymbolInfoDouble(OrderSymbol(),SYMBOL_BID); else if(type == OP_SELL) return SymbolInfoDouble(OrderSymbol(),SYMBOL_ASK); return -1.0;...Ignored