Adapt useful, reject useless, add what is specifically your own.
David Perk CLS Strategy 1 All Time Return:
3,531.3%
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
QuoteDislikedIs it ok?
Disliked{quote} I have the build 509 compiler (i.e. the four files in the 'Build 509 compiler.ZIP' file) installed in the ..../MQL4 folder, then I run the MetaEditor.exe program (highlighted in screenshot) from there. I have all MQH files (including WinUser32.mqh, stderror.mqh, stdlib.mqh) present in both the ..../MQL4/Include and the ..../MQL4/Experts/include folders, and the compiler seems to find them OK. {image} More info here. {quote} Yes, the error messages "Function [xxxx]...Ignored
Disliked{quote} Try the attached indicator. I couldn't test it properly as I don't have a sample CSV file to work with. It expects to find the CSV file (name matching your CSVfilename setting) in your .../MT4/Files folder. In the CSV file, the first entry on each line must be the symbol ID, which must exactly match the instrument/symbol of the current chart, for horizontal lines to be plotted at the levels of each of the remaining (price-based) entries on the line. (If your br0ker suffixes symbol IDs, e.g. "EURUSDpro", then enter the suffix, e.g. "pro",...Ignored
Disliked1. How to properly put custom RGB color code in the metaeditor here: LineColorWidthStyleStartLength = "Green,1,0,-5,0"; ? To replace Green with 61,226,151.
2. Could you, please, make the distance to be shown with one mark behind the comma, in other words more precise?Ignored
Disliked{quote} 1. Try r61g226b151 instead of Green (where r,g,b = red, green, blue values -- r,g,b can be upper or lowercase; also, you can put spaces between the values, e.g. R61 G226 B151 if it makes it easier to read). 2. Sorry, I don't understand the question.Ignored
DislikedI can see that distance between PP and actual price is rounded, e.g. 11 pips instead of actual 10.7 pips. Could you make the indi show not rounded values?Ignored
DislikedHey Guys, i want to learn and improve my MQL4 skills. I think the best way to do this is to practice. Unfortunately sometimes I don`t have any nice idea which i can implement in a Expert Advisor / Indicator. So if any of you is interested, please post in this forum your ideas and i will try to implement it into mql4. AndiIgnored
Disliked{quote} If you want to remove the rounding, change the final setting (the format Mask) in LabelFontSizeColorHposVposMask to ' = 'T-5' pips' (this will cause 10.7 to be shown as 10 instead of being rounded up to 11 pips). The R in the mask means round up if > 0.5, round down if < 0.5 If you want to show it rounded to 1 decimal place, change the final setting (the format Mask) in LabelFontSizeColorHposVposMask to ' = 'TR-5.1' pips' (this will cause 10.7 to be shown as 10.7 pips). The text inside the first and second pair of quotes gets displayed 'as...Ignored
DislikedHello Sir Please Modify My EA.. I just want to add the "Stop Loss" in this EA.. Please do it needful will be thankful {file}Ignored
Disliked{quote} There were some syntax issues. This is a dead concept. {file}Ignored
Disliked{quote} if this is the best curve you can get and this does not even factor in cost, with 1.13 profit factor you should forget about this {image}Ignored
int OpenBuyOrders=0;
int OpenSellOrders=0;
//Count Pending Stop Orders
for(int i=0;i<OrdersTotal(); i++ )
{
if(OrderSelect(i, SELECT_BY_POS)==true)
{
if (OrderType()==OP_BUYLIMIT)
OpenBuyOrders++;
if (OrderType()==OP_SELLLIMIT)
OpenSellOrders++;
}
}
trades_total=OpenSellOrders+OpenBuyOrders;
Print ("Totals : ", trades_total); DislikedHi I would be very gratefull if someone could get this EA to trade microlots as its only trading minilots and standard lots at the moment, many thanks. {file}Ignored