Gordon Gekko
Gordon Gekko
Friends

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

Gordon Gekko
Added topic Which is the faster?
Hi Gurus! Please, tell me which version is the faster (or is there any faster than these)? Version 1: int NumberOfOrders= OrdersTotal ();    for ( int h= 0 ;h<NumberOfOrders;h++)      {
Gordon Gekko
Added topic Download bars programmatically
Hi Experts! I would like to get a little help. There is an EA, which only begins to work when there is enough bars available. A newly installed MT4 contains only a few candles, and so EA does not work. Are there some programmatic solution that EA
Gordon Gekko
Registered at MQL5.community
mohammed ghouse
mohammed ghouse 2014.12.18
sir i need ur email address please
Gordon Gekko
Added topic Give back Build509!!!
Hi Traders, This B600+ is a xxxxx .T! I don't want pseudo MT5 called MT4, I want real MT4! I want B509 back. If I reinstall MT4 from a B509 setup.exe, it will upgrade to B600+ during install process without my permission. How can I get a freshly
Gordon Gekko
Added topic Object in the separate window
Hi, Is this possible to draw an object in the separate window? Thanks
Gordon Gekko
Added topic Time problem
Hi, This is a very simple and "interesting" problem. Here is my code: Print ( TimeToStr ( iTime ( "EURUSD" , PERIOD_H4 , 0 ) , TIME_DATE | TIME_MINUTES ) ) ; The result is: 2009.03.05 16:00 What?! Today is 09.05.26! How can I resolve this
Gordon Gekko
Added topic Rectangle object on fixed place
Hi there, How can I draw a rectangle object (indicator) on a fixed place int the chart window (for example: on the left upper corner of the chart window)? Is it possible? Thank you
Gordon Gekko
Added topic Profit counting
Please, help me to resolve this problem: I'd like to count the total amount of profit that belongs to a magic number (there are other orders with different magic on the account). Here is my code: double MagicProfit ( int Magic ) {    int
Gordon Gekko
Added topic Mini account - Error 131
Hi! I have opened a mini account at FXDD demo with leverage 200:1, but my EA doesn't work because of error 131 (wrong trade volume). It says Lots=0.1 (Lots= MarketInfo (Symbol(),MODE_MINLOT)). Why not 0.01 ( mini account)? How can I resolve this
Gordon Gekko
Added topic Multiple OrderSend simultaneously
Hi! I'd like to make multiple ordersend simultaneously (one tick). Here is my code:        ticket1 = OrderSend ( tradepair , OP_SELL , mylot , Bid , 1 , Bid + sl_limit * Point , Bid - tp_limit * Point , "" , 1 , 0
Gordon Gekko
Added topic Volume limit at 50 in the tester
Hi! My EA runs with variable lot volume (increasingly), but when it reaches 50, I get this: ordersend error 131 (but there is more than enough money). Why? Can I increase it? Thanks
Gordon Gekko
Added topic Boolean declaration
Hi! I'd like to declare a boolean array within 20 elements. This is my wrong code: bool lotsize [ 0 ] = false ; bool lotsize [ 1 ] = false ; bool lotsize [ 2 ] = false ; ... bool lotsize [ 19 ] = false ; How can I do it well? Thanks
Gordon Gekko
Added topic "Catch up" my EA code on the server side
Hi, Is it possible to "catch up" my EA code on the server-side? Thanks, GG
Gordon Gekko
Added topic Bollinger last values
Hi! I'd like to know the last values of Bollinger bands . //+------------------------------------------------------------------+ //| Bollinger
Gordon Gekko
Added topic Checking result: SL or TP
Hi Gurus! I make an order by this code: ticket= OrderSend ("EURUSD",OP_BUY,1,Ask,1,Ask-25*Point,Ask+25*Point,"",0,0,Green); If this order closed (SL or TP), I'd like to check in my expert what kind of result had it: SL or TP? Can
Gordon Gekko
Added topic Wrong code
Hi guys, This is my simple code:    int num [] ;    int i = 0 ;    for ( i = 0 ; i < 10 ; i ++ )        {        num [ i ] = i ;
Gordon Gekko
Added topic Moving average otherwise
Hi guys! I'd like to use the moving average of the last 20 ticks (for example the last 20 bidprice of a pair) . How can I count it? Can you help me by a little code? Thank you
Gordon Gekko
Added topic Need a little help
Hi gurus! I'd like to write into a file Moving Averages datas. This is my wrong code (it makes an empty file): #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Red //---- indicator parameters extern int
Gordon Gekko
Added topic Multiple ordersend
Hi! This is my code: if ( .......... something ......... )        {        ticket1 = OrderSend ( " EURUSD " , OP_SELL , lots , Bid , 1 , 0 , 0 , "" , 0 , 0 , Green ) ;
Gordon Gekko
Added topic Strategy Tester with multiple symbol
Hi! Is it possible to run Strategy Tester by more than one symbol? Example: Chart: EURUSD Code: ticket1 = OrderSend ( " EURUSD " , OP_BUY , 1 , Ask , 1 , Ask - 25 * Point , Ask + 25 * Point ) ; ticket2 = OrderSend ( " USDJPY " , OP_BUY , 1 , Ask , 1
123