hello
Can someone help me add an alert to this indicator?
Can someone help me add an alert to this indicator?
Attached File(s)
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
Dislikedhello Can someone help me add an alert to this indicator? {file}Ignored
extern bool TrailAllSymbols = true; extern bool TrailOnlyInProfit = false; extern double CloseWhenProfit = 0.0; extern bool showMessages = true; // // // // // extern int EMATimeFrame = 0; extern int Price = 0; extern int EMAPeriod = 13; extern int EMAShift = 2; extern int InitialStop = 100; extern int magicNumberfrom = 0; extern int magicNumberto = 0;
Disliked{quote} Any help on this would be really appreciate pleaseThanks
Ignored
Disliked{quote} TDI_CCI_MTF_Signaller - requires attached TDI_RT_mod indicator - signals when the rsi price line is outside the volatility bands - optional cci above/below obso level as filter - all 9 tfs, optional {image} {file} {file}Ignored
DislikedHi, Thanks to all for the great forum. I have a simple strategy that work very well, i nead to code a simple EA with this strategy, who can help me please? If anyone have interest I can published the strategy here. Thanks very much.Ignored
extern int MagicNumber=9696;
extern int setOrderType = OP_BUY;
int start() {
int POS=0;
for(int i=OrdersTotal()-1;i>=0;i--)
{
OrderSelect(i, SELECT_BY_POS);
if(OrderMagicNumber()==MagicNumber)
{
bool result = false;
if (OrderType() == setOrderType) {
result = OrderClose(OrderTicket(),OrderLots(),MarketInfo(OrderSymbol(),MODE_BID),Slippage,Red);
} // if
if(result == false)
{
Sleep(0);
}
}
}
Print ("Order with MagicNumber:", MagicNumber, " has been Closed");
return(0);
}
} // Disliked{quote} There are a number of this kind of indicator around. One of them is this: https://www.mql5.com/en/code/12266 If not, try google.Ignored
Disliked{quote} sorry i replied to your post, this code above was addressed to kk3 Do you need a range bar? you can take any indicator code and write it yourself. double irand = iHigh(NULL,PERIOD_D1,0)-iLow(NULL,PERIOD_D1,0);Ignored
Disliked{quote} Look, I tried to do it myself. But I'm not an expert. Try and test first. {file}Ignored
Disliked{quote} Grateful thanks for posting this EA, Tictak I'm not a coder but I can do basic things without causing destruction! I translated these two comments, but I don't know what these two functions do exactly. I am trying to find out by testing on a demo account but can you maybe help me understand what they do? Do you know what BBU stands for? [Edit: The reason I am confused is that these two functions look like they should do the same thing, but that can't be, so now I'm not sure ...] extern int BBUSize = 10; //the size in points after which the...Ignored
Dislikedextern bool BreakEven_Use = true; //on off. extern int BBUSize = 10; //The size in points after which the stop is moved to breakeven. 0 - disabled. extern int BBUSizepip = 5; //Breakeven in points. Sets a stop loss when triggered.Ignored