Weixing Meng
Weixing Meng
  • Information
7+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Friends 1
Weixing Meng
Added topic Collection for stoch in mql5
Thanks for coming! As the title, please help inform me on how to make a stoch cross signal for an EA with mql5. I used mql4 before and now turning to mql5, I find that the function iStochastic returns a handle instead of indicator value like using
Weixing Meng
Added topic MT4, Communication Between Differet EA Through a file
Communication Between Differet EA Through a file ↑ Is this possible ? How can I make sure that when writing at the half, the other EA do not come and ready the data.. Or when an EA is reading..the other EA do not come to rewrite and change the data
Weixing Meng
Added topic Does FileWrite/FileRead need a LOCK ?
As the tile, if we need to write in or read from a same file. do we need to lock them while writing or reading ? Is that possible when a file is half writen, then only the half writen part is read ? If we do need a lock , then how can i lock it ...I
Weixing Meng
Added topic Pls Help! Where is the Error ?
//Here is the error code int BytesWriten = FileWriteStruct (filehandle,H4Info); Error Info: possible loss of data due to type conversion I really can't get it, the 2nd parameter of FileWriteStruct() H4Info is a struct below: struct H4_SignalInfo{
Weixing Meng
Added topic What's the use of the 1st assignment for lot calculation?
It give the "Lots" we entered to lot first, and then give a value to lot again according to account free margin , the previous value is covered by it right? so is that necessary to enter a Lots at the EA start ? It's from the sample Moving
Weixing Meng
Added topic What's the use of the 1st assignment?
Thanks a lot for help input double Lots           = 0.1 ;   //at the ea start, enter the parameter 0.1 here //and then there is a "lot" in the block following, there are two assignments
Weixing Meng
Added topic Signal Account Question
Hello~ Thank you for checking this topic! I want to know, about a signal account,  it will read my whole trading records from the start of the account ? Or it shows records from the time I started the account as signal ?  I have been
Weixing Meng
Added topic Main and Signal ? What's the difference?
Thank you for your help! What's the difference of the following two ? MODE_MAIN MODE_SIGNAL  They are not calculated the same way ?   Thank you a lot for your help. 
Weixing Meng
Added topic Looking for a sample EA using Stochastic
Hello! I want to learn how to use Stochastic in a EA. But failed to find a sample EA with Stochastic. Can anyone  help me ?  Hope it's a simple one…enough for me to learn how to put a Stochastic in my EA would be great. Thanks a lot! 
Weixing Meng
Added topic Looking for a sample EA using Stochastic
Hello! I want to learn how to use Stochastic in a EA. But failed to find a sample EA with Stochastic. Can anyone  help me ?  Hope it's a simple one…enough for me to learn how to put a Stochastic in my EA would be great. Thanks a lot! 
Weixing Meng
Added topic How To Set Stop Loss ?
The first EA I'm trying to understand, is the MT4 Example EA of Moving Average.  A quite simple one, now I finally understand it. Now I'm trying to add stop loss to this EA. Only a practice. But always failed. What's wrong with my stop loss, it
Weixing Meng
Added topic Can return be replaced by continue ?
void OnTick ()   { //--- check for history and trading    if ( Bars < 100 || IsTradeAllowed()== false )        return ; // Can this return be replaced by continue ? After this return, it back to
Weixing Meng
Added topic Pls Help a Beginner, Thanks
Hello! A hello to all with same mind of trading. I'm a beginer of EA. I learnt C by myself, but all about reading a book of C. Headache, I tried to read a simple EA of Moving Average in my MT4, but can not understand all of the lines. Pls help! I
Weixing Meng
Registered at MQL5.community