abdi
abdi
Friends

Add friends via their profile or user search and you will be able to see if they are online

abdi
Registered at MQL5.community
abdi
Added topic after metrader update my code didn't work
hi  i need some help  because after metrader update  5.00 build 966 my code didn't work  the code used to sum the volumes of all candles in a specific range int V=V+ Volume[i];        ObjectCreate (
abdi
Added topic Changing time and date format in mql4
Hi Can we change the time format in mql4 from 2013.09.09 13:15 to 30130909 1315 Any help is appreciated and thnx in advance
abdi
Added topic deleting buffer line and redraw it
hi how can we  delete  buffer line and redraw it using mql4 code ? we can delete object using:    ObjectDelete (   string name)   to start draw it again , what about buffer line? any help is appreciated
abdi
Added topic show price for zigzag tops and bottoms
hi any idea of how can we show the price on zigzag tops and bottoms?  which functions could be used
abdi
Added topic number of bars inside rectangle
hi how can i get the number of bars inside rectangel (how many bars inside the retangle) using mql4 using second time point - first time point sometimes give wrong count because of holidays any idea
abdi
Added topic the sum of bars length
hi how can i find the sum of bars length between tow dates using mql4 if i had a startdate {S} and enddate{E} and want the indicator to deduct the high from low of each bar between S and E and sum the result.....which function can do that
abdi
Added topic Pythagorean Theorem
hi i want to know how to code for Pythagorean Theorem in mql4 if my equation is =sqrt((a^2)+(b^2)) and a=b can we do that by using : double MathPow( double base , double exponent) any help is appreciated
abdi
Added topic points counter between high to low or low to high
hi am traying to make an indicator that help me to find how many points between high to low / low to high attached is my code but it need some modification because am not good in mql4 any one can help me to finish it? and thanks
abdi
Added topic automatic rename vertical line
hi i have a code for indicator that do some calculation starting from a date(pointtme) that i enter, the setting window for the indicator is #property indicator_chart_window extern string VLineName = "   " ; extern datetime   PointTime
abdi
Added topic the second time point of the rectangle
hi am traying to make a rectangle using object creat this is my code ObjectCreate ( "rectanglename" , OBJ_RECTANGLE , 0 ,Time[x],High[x],Time[x]+period()* 60 ,Low[x] ); if the first time point of the rectangle is a timedate D'2010.10.08 00:00' i
abdi
Added topic ObjectCreate v_line within objectCreate_rectangle
hi i have this code to creat a rectangle ObjectCreate ( "L" +x, OBJ_RECTANGLE , 0 ,Time[x],High[x],Time[x]+period()* 60 ,Low[x] ); how can i insert a code to draw a vertical line at the second time point of the rectangle time[x]+period()* 60 any
abdi
Added topic vertical line after a specific number of bars
hi am traying to make a simple indicator that put a vertical line after a numbr of bars.....example.....i will enter the date and time and the indicator will draw a vertical line after 25 bar my code is as follow.......but need some help to finish
abdi
Added topic a box on the bar
hi.... am traying to make an indicator that plot a boxs or rectangles on each one of the last 5 bar of the chart excludeing the recent bar(the box borders is from high to low of the bar).. i come across this code but it will draw the box only on the
abdi
Added topic Ignoring the time factor in building the indicator
hi......i want to build the candlestick chart without time factor, in other world i want to make the candle stick chart as renko chart or as p&f chart....no spacing between bars..... what mt4 code that help in this
abdi
Added topic rectangle bar indicator
hi........ any one can help me in this........ i need an indicator that show each candlestick bar as rectangle..from high to low just want the name of that indicator and i will google for it hope for some help
abdi
Added topic chart for USDEUR........JPYUSD....... and so on
hi any one know how to get the chart of opposite tickers in metatrader ? instead of EURUSD to show USDEUR instead of USDJPY to show JPYUSD and so on (i need it to be real time updated as the original tickers) any one can help
abdi
Added topic code to autorefresh
HI any one can write a code to autorefresh the indicator or EA ?.............. with the ability to change the autorefresh times per minute or second thanks
abdi
Added topic record function to an indicator
hi could any body plz add a function to write data(tick) from this indicator to an external file(csv)
abdi
Added topic make the EA work faster
hi i wonder if we can make the main function of the EA, int start() faster than what it's now cose i have an EA for counting ticks.....but it some time lost some ticks and didnt record it hope i can find a solution the EA is attached