• Information
6+ years
experience
0
products
0
demo versions
0
jobs
1
signals
10
subscribers
Baptiste George
Registered at MQL5.community
Baptiste George
Added topic Little help please.
Hi all I'm struggling with all the string functions . How to get the 3 first letters of the Symbol() How to get the last 3. Example... EA is runing on GBPNZD string Currency_1 = GBP; string Currency_2 = NZD; Cheers
Baptiste George
Added topic Little bug... please help
Hi all, I have a global close function called when total open orders (equity) is > $100 This function is called on EURUSD chart . The function below isn't closing orders like USDJPY... in fact JPY's pair. Please help how to avoid the error message
Baptiste George
Added topic Trailling Stop Problem...
Hi All, It looks like it's only performing the first step and that's it. the EA is handling 4 pairs. So I have created 4 function for each pair: Paremeters: //-------------------Variables static int magicalNumber; static string PipsDeclencheurArray[
Baptiste George
Added topic How to get the lowest price?
Hi, I don't understand the example given by documentation. How to get the lowest price from the last 100 bars? The Lowest price will be updated while chart progresses. Please help. regards
Baptiste George
Added topic Help needed:
Hi all, Please help and advise how to do this: 3 parameters: Total_Candles = 40 Above_Candles = 5 1 moving average as reference. Condition 1: If At least 5 candles in a row closes above Moving average over the last 40 candles, then Condition_1 is
Baptiste George
Added topic Create Objet
Hi all, Here the code I use to insert data    ObjectCreate ( "txt_0" , OBJ_TEXT , 0 , TimeCurrent () - 100 , Close [ 0 ] + 140 * Point );      ObjectSetText ( "txt_0" , "Example" , 14 , "Times New Roman" , Orange);
Baptiste George
Added topic Dirty build 574
Hi I can't find any process to resolve the problem. My EA isn't working anymore on MT4 574. I have also another MT4 broker with build 500 and EA works. What should i do? Cheers
Baptiste George
Added topic API from Myfxbook... I need big help please o_O
Hi, I can code a bit EA for MT4 and I would like to create an indicator for MT4 from a web source. Myfxbook is willing to provide data that I would like to use/read for MT4 and create signals from Traders Sentiment I have no idea how to do an API
Baptiste George
Added topic How to validate a signal... help needed
Hi, I have a signal if price cross a level. before entering... I would check if market can sustain this level for 10 sec at least. //-------- if ( lastTradeTime != Time[THIS_BAR] ){        lastTradeTime = Time[THIS_BAR];
Baptiste George
Added topic Tick by milsec. Hard help please
Hi All, This works really good attached to 1M chart. It gives us the number of tick per min and then it calculates an average between 2 ticks in milliseconds. Any one willing to change this to get the average fresher? If we could get the average
Baptiste George
Added topic Variable problem
Hi, I need to store the ticket from a short order while it's running... but my variable LastTicketShort_Scalp doesn't work? Please Help        int LastTicketShort_Scalp = 0 ;        int
Baptiste George
Added topic Not allowing trade
Hi, I need my EA stops to open trades if the last trade closed time is not > 10 min I use 1 min chart graph. So for example: If the last long trade has been closed @ 10:30 so EA must not open long order before at least 10:40... but it could open
Baptiste George
Added topic Little bug... please help : )
HI, Could you tell me why this is working only if I have only one order open at once? if ( OrderType() == OP_SELL && OrderMagicNumber() == 0 && OrderLots() == 0.05 && OrderStopLoss() == 0 )
Baptiste George
Added topic Can't see what's wrong
Hi all, EA: I can't get more than 1 long opened position per symbol at a time. So it is possible to open a short position if none is opened yet in that pair. The second order can be executed by EA only if OrderOpenPrice() from the one already opened
Baptiste George
Added topic Reverse Trade HELP
Hey, The script is a simple EA that checks if a manuel trade (MagicalNumber == 0) closed with no profit. Ex: When a SELL TRADE has been closed with no profit, so I would like to open straight away (market price) a OP_BUY So I've added both way
Baptiste George
Added topic Ibands - Help for noob
Hey, I found a very interesting topic @ https://www.mql5.com/en/code/10416 Unfortunately, I don't know how to use it. If someone could explain a bit more where to code next and where to insert my code. Cheers
Baptiste George
Added topic Help for noob
Hi, First EA: I would like to open a position in the opposite way when a SL has been reached: Exemple: OP_BUY has been closed. So check if StopLossPrice() == CloseOrderPrice() So... I would like to create a SELL_LIMIT @ this price or 2 pips away
123