dream3r
dream3r
dream3r
Added topic How to know indicators using by EA
Hello, is there a way to know if an EA is using indicators ? How can we know the indicators used by?  Thank you in advance. Dream3r 
dream3r
Added topic Harmonic patterns in an EA
Hello, I would like to know if there is an Harmonic Pattern indicator that can be used in an EA. I have sawn several indicators and none of them can be used in an EA. Do you know one that can be? Thank you in advance! Regards
dream3r
Added topic How to know the last 2 orders in market?
Hello, I would like to know the 2 lasts orders to know if have the same type. How can I do it? The first think to my mind is get the last orderTicket (LastTicket) and get the last order ticket again but only if the order ticket != LastTicket. After
dream3r
Added topic Attach orders per candle
Hello, I realize that the pending orders don't return the initial OrderOpenTime() and it returns the time when it opens the position (OP_BUY or OP_SELL). I am doing a code that in each bar open an order (Sell or Buy) and in the max/min of the same
dream3r
Left feedback to developer for job Fix some bug codes
dream3r
Added topic Force to write a file MQL4
Hello everybody, I am looking for a solution of my problem. I am trying to write a file in MQL4. There is no problem, but the problem appears when I try to force to do it constantly. I mean, with an expert advisor I am writing the file with the
dream3r
Added topic OP_BUYSTOP/OP_SELLSTOP OrderSend with SL=0 and TP=0 return me error 130 (invalid stops!)
Hello everyone, I am trying to solve the issue with setorder in my code and I don't know whre can be the error!  The code: int ticket = OrderSend ( Symbol (), type, lot, price, 0 , 0 , 0 , CustomComment, Magic, 0 , col); Print ( "PUT ORDER: " +
dream3r
Added topic Issue with stoploss and take profit (130 error on ordermodify)
Hello everyone,  I get an error 130 when I am doing an OrderModify. The code is:   void SetSLTP(){    double sl, tp;    for ( int i = OrdersTotal () - 1 ; i >= 0 ; i--)      if ( OrderSelect (i
dream3r
Added topic Developing in Eclipse IDE
Hello, I'm so familiar with IDE Eclipse but I don't find any module to develop mq4 files. Anyone can develop with this IDE?  Thank you in advance! Dream3r 
dream3r
Added topic How to get the best settings in an indicator?
Hello people! I'm wondering how to get the best settings for an indicator. I don't know how to get it. I was trying creating an EA just using this indicator and getting the bests results. The EA was only created to get the best settings for this
dream3r
Added topic Multiple account acces from EA
Hello, I would like know if there is some possibility to get data from different accounts on the same EA. Thank you in advance
dream3r
Registered at MQL5.community
dream3r
Added topic Best way to get 99% quality backtest
Hello! I've been looking for a good thread about how to get the best quality backtest , but I didn't find it. There is a blog or something like that where I can find it? I get tickdata from some website, and I have imported this data into MetaTrader
dream3r
Added topic Debug MQL4 and Eclipse plugin (or other IDE)
Hello everybody! I'm looking for a best option to program my strategies and indicators. The Metatrader editor it's so poor if you compare with other languages (or others IDE's). Is there any way to debug our code..or at least, program our codes more
dream3r
Added topic Problem in Trailing Stop
Hello! I have a strange problem with Trailing stop. I did my own but I always get 130 error. I saw the page: https://book.mql4.com/appendix/limits  and after that, I can't understand the error...  The code is: extern int DistanceTS = 20 ;