Agent86
Added topic Help with Bool function comparisons with bool operation &&
Is there any problem with syntax of this code ?  bool fib_high() //Needs work    {       {        if (A_low()== true && B_high()== true )
Agent86
Added topic Marketeplace EA removed from chart and cannot add it back. ?
Not sure which category to put this in but I'm on MT4  Today EA copy trader removed from master and all slaves and cannot reattach. NO error and not message on chart when attempting to add them back. 
Agent86
Added topic Print("Last incoming ask price=",MarketInfo(Symbol(),MODE_ASK)); shows lots of digits
Why does this show more then the number of digits that the broker has ?  Example:  Print("Last incoming ask price=",MarketInfo(Symbol(),MODE_ASK)); Shows EURUSD,5M, .98806 etc.  However, it fluctuates and shows things like
Agent86
Added topic This code locks up / freezes up the EA (not responding)
Hi all,  In this code I am count back bars for the MACD true indicator (iCustom) etc etc.  I use these bar count to initialize i in parts of the code. This locks up the EA and Metatrader stops responding.  How to diagnose this or
Agent86
Added topic Where is this "pocket". Add to pocket ?
Hi,  Sorry for this stupid question but when I add items from market place to pocket what does it do and where does it go ?  Is there some way to view the pocket ? I assumed that it was some sort of wish list or watch list feature or
Agent86
Added topic Is is possible to make a trade button that trades on multiple instances of mt4 ?
As the title indicates my question is this: Can I make a buy/sell/close button that can trade on multiple instances of the platform instead of doing some copy trading type thing ?  Please advise Thanks
Agent86
Added topic Does OBJ_RECTANGLE_LABEL use more memory then OBJ_LABEL
For example I used multiple OBJ_RECTANGLE_LABEL to make a meter / gauge Something like with just multiples of this and place in a row.     ObjectSet(name1, OBJPROP_XDISTANCE , 75 );    ObjectSet(name1, OBJPROP_YDISTANCE , 380
Agent86
Added topic What specific reason is there to call an indicator in the OnTick() vs OnInit() ?
Should an indicator be called and/or declared in OnTick() or OnInit() ? Why ?  For example:    val1= iFractals ( NULL , 0 , MODE_UPPER, 3 );    val2= iFractals ( NULL , 0 , MODE_LOWER, 3 ); Thanks 
Agent86
Added topic Need help understanding ObjectCreate Types and required Object Properties per type if required
Reading these documents and ObjectCreate() and "properties" https://docs.mql4.com/constants/objectconstants I am expecting that changing the object type should change on the chart but only a few actually show changes on the chart.   
Agent86
Added topic What Custom Indicators CAN'T do ?
Hi all,  I guess what I really need to plan my next project is a generalized list of what custom indicators CAN'T do. vs what EA's CAN'T do.  Or at least some main feature differences that might guide me in deciding EA vs Indicator. 
Agent86
Added topic Is it possible to create EA or trade button that sets stop loss and tp for market orders ?
Prop firms requiring sl/tp placed at the time of the order Is this possible with EA or script ?  I have searched code base and market for such a tool but those descriptions seem to suggest pending orders not market orders.  Perhaps I'm not
Agent86
Left feedback to developer for job Answer questions about using iCustom in an EA(consulting only)
Agent86
Added topic MACD + trigger line crosses for EA ?
I have been using the MT4 MACD visually and manually to trade MACD and trigger line crosses. Visually the MT4 MACD histogram and red line cross at similar to typical MACD crossing lines. However, the MT4 does not provide any code to make use of the 3
Agent86
Added topic Why did EA not close ? `
I was running this EA on demo for testing. See the image showing a Buy signal and when the 1M and 5M MACD crosses down it was suppose to close trade but it didn't. I don't see why but the code seems ok to me.  Thanks
Agent86
Added topic What indicator or method can be used to limit or stop trades during high volatility.
I am working on an EA that has some success, but also has failures during volatility.  For example: if 5M MACD down to sell. However, volatility and candles are actually going up quickly. So we get multiple selling and s/l's hit because 5M MACD
Agent86
Added topic How to get OrdersHistoryTotal() to return only closed orders for today ?
I guess I should be asking if I can actually get OrdersHistoryTotal() and limit the return to show the closed trades for today only ?  I mean I know I can Print(OrdersHistoryTotal()); and this will give me the total orders of whatever I select
Agent86
Left feedback to developer for job Multitimeframe EA (consult and advise needed) regarding handling 4066/4073 errors and how to find them.
Agent86
Added topic Multi time frame MACD trading when condition is false
Hi,  I'm experimenting with multi time frame indicators.  I want to trade when M5 and M1 agree IE these are both MACD M1 and M5:   if (faster_1 > slower_1 && faster_2 > slower_2) For some reason the M1 seems to just
Agent86
Added topic return value of 'OrderSelect' should be checked
In the past this code did not throw errors I understand the return value and wondered what changed to cause errors where none existed prior ?  Can anyone see fault with my highlighted solution code below. It's not throwing errors but is there a
Agent86
Added topic Why does compilers says "variable already defined"
Hi coders I get compiler error "variable already defined". Why Please advise Thanks void OnTick ()   { //---    int ticket,i,total,result;    total = OrdersTotal (); // same variable without errors here line 36, but not