Michael
Michael
Michael
Added topic I need to understand this please
I have global variable that is used in function, then I use script to test the function result using the alert function Alert("Variable","Function()); Alert(" Function  ()","Variable"); but when I alert the result of the function and the global
Michael
Added topic ObjectGetValueByShift
Hello everyone.  I am trying to code buy   order execution   when the Bid reach above a price that ObjectGetValueByShift will get  the object is a Trendline double Price = ObjectGetValueByShift( "Trendline" , 0 );   
Michael
Added topic My Code Compiled correctly but I have a problem with it
  I was trying to code my own EA and created some custom function,  the issue that I am facing is as if the custom function that I have is not being read in the EA if the variable that I have assigned this function to is initialized with -1
Michael
Added topic My EA is running very slow on MT4 Tester
My EA is operating very slow on MT4 Tester, it contains loops and nested loops, I do not know if that would slow it down that much, Can I save the data of the loops in functions in array and would that make a difference in speed of the tester? thanks
Michael
Added topic the code compiled correctly, but something when wrong
I have five orders on the chart, I am making a loop to select order to make some modification, it did not work so I print the order ticket along with its index to check, and I have noticed this when these 2 line where here the it prints as follows
Michael
Added topic Can "return" operator exit loop in user-defined function and return the required value?
Can "return" operator exit loop in user-defined function and return the required value? or there is no way but to use "break" operator to exit the loop and then "return" operator to terminate the function and get the required value? Thanks 
Michael
Added topic Need help to understand this please
I need some advice for the below code if you please, 1- for some reason, I get a note of " array out of range " in Mt4 expert journal 2- although Period_MA is external variable and I set it to 20; but when I am testing my code by changing for (x=i;
Michael
Added topic I need help with my function please
double Recent_TD_Point[]; for ( int i= 0 ;i< 3000 ;i++)   { if (High_TD_Point_Value(i)> 0 ){         Recent_TD_Point[i]=High_TD_Point_Value(i);         
Michael
Added topic What does “warning: not all control paths return a value” mean? as I received this error after compiling
int TradeEntry( int Type){       if (Type == 0 ){           double BTP = Ask + (TakeProfit * Point );        double BSL = Ask - (StopLoss * Point );
Michael
Added topic is there someone who can help me understand these 2 lines of coding?
limit = rates_total-prev_calculated // so this should mean that limit equal to total number of bars - the already calculated bars by the indicator why limit will be incremented by 1
Michael
Added topic for
double resulttotal; double resultaverage; int totalbar = 10 ; for ( int x = 1 ; x <= totalbar; x++) {resulttotal = resulttotal + iClose ( NULL , 0 , x); } resultaverage = resulttotal / totalbar; how the MT4 distinguish between the "resultTotal"
Michael
Added topic Array function
Would someone explain to me the highlighted part? Thanks for your help
Michael
Added topic Alert function
if the below is executable , is the a way to Alert a function without storing its value in variable just by calling the variable between the brackets of the ALert? int x = 3; int y = 10; Alert (x+y); is the a way to Alert a function without storing
Michael
Added topic Understanding a code
I am trying to understand the logic why it did not work on the first code, the below code is supposed to measure the number of pips between TP and SL My question is why the name of the function and name of the double declaration in the body can not
Michael
Left feedback to developer for job EA Open order
Michael
Added topic TD Combo Indicator
Hello Everyone Does anyone know where can I get reliable version of TD combo indicator? Thanks
Michael
Added topic Semi automatic Hedge EA
Hello everyone  I am  looking for semi automatic hedging EA that would open an opposite trade (after I manually initiate one) that opposit trade would be pending order with double or triple the original trade size (could be designated in
Michael
Added topic The New Science of Technical Analysis By Thomas Demark
I have been reading this book and I need some assistance understanding one point regarding TD Lines and TD points and price objective. When a contradictory breakout out happens, the active TD line and its price objective should be ignored and the new
Michael
Added topic Hello Everyone, assistance with RSI please
I really need some assistance, I have been looking for RSI push notification alert, but what I have been looking for is one that send me a notification when the RSI crosses Level either from down upwards or vise versa. I need that to be applied on 2
12