jilongl
jilongl
Friends

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

jilongl
Added topic How to change the text font in "comment"?
Is there anyway to make text in "Comment()" different font or even color? Or how to make colorful or fontable text in left-up corner of chart? (All I want is to make the text I set easier to see) Thanks so much for your helps and time
jilongl
Registered at MQL5.community
jilongl
Added topic Question about "ObjectCreate"
Here is my code. I want that every times I change the property "line", the old horizontal line will be deleted and the new one will be created. How to change my code to make that happen? One more thing: Sometime I start my code with value in property
jilongl
Added topic Question in "comment()"
In "comment()", it prints out the number like "1.983625300", but what I want is it only print "1.9836" or "1.98".  How can I do that? Thanks for your time and sorry about grammar. 
jilongl
Added topic Is that possible write a EA which can aviod Evens in economic calendar??
Is that possible write a EA which can aviod every Evens in economic calendar
jilongl
Added topic My ea's setting reset itself every time when I open strategy tester
I am running my own ea (which is .mp4 not .ex4) on couple charts. But every time I open strategy tester , the settings I set on every single chart go back to original setting. That makes me have to reset all of them again. That is painful!!! Any
jilongl
Added topic Please someone tell me what kind of mistake I made!!! HELP
I have Spent two days and fail to find out what mistake I made, so please help me out!! Case: I want to open two sell orders , the second one will be open when the market go up 5 pip, but when I run this code (below), it only open the first one and
jilongl
Added topic Help!! Same EA comes out different results in two computers
When I backtest a EA in my laptop and desktop, it comes out different results. It say "unmatch data error" in my desktop. It places much less orders when I run it in desktop. I already check the Variable Inputs and parameters, they are same
jilongl
Added topic Need help!
////this is only use in instaforex, because its spreed is 0/////// extern int takeprofit= 0 ; extern int stoplost= 5 ; extern double initiallot= 1.0 ; extern int magic.number= 19802 ; extern int trailpoint= 10 ; extern int averagelot= 15 ; double
jilongl
Added topic need help!
void start()   {    double p= 1 / 30 ;    Print (p);   }    does anyone know why it shows "P" is 0? I think it would be 0.0333333.... What mistakes did i make? Thanks alot for your time
jilongl
Added topic why this ordersend error happen?
void start()   {    string sym= "EURUSD" ;    OrderSend (sym,OP_BUY, 1 ,Ask, 3 , 0 , 0 , "" );   }          when I attach this code to "GBPUSD" chart, it said
jilongl
Added topic need help!!
void PlaceOrder()   {    Print ( "J is 0" );    if ( Hour ()== 16 )      {        Print ( "J is 1" );      }   }    void start()
jilongl
Added topic what is "SELECT_BY_POS " in OrderSelect()??
I know what is "SELECT_BY_TICKET" in OrderSelect(), but how about "SELECT_BY_POS "??? thanks for your help
jilongl
Added topic Q: which function can get a last order's information
I want to write a code is based on if last order profit or lost, how can i do that
jilongl
Added topic how can i use different time period charts in a code?
how can i use different time period charts in a code? Ex: I want to test M1,M5,M15,M30 in one code, how can i do that? Thanks
jilongl
Added topic how to store a value outside the code??
Is that possible to store a value outside the code?? (And inside the code, the value can be modified.) thanks
jilongl
Added topic help!!
extern double Lots= 0.1 ; extern double Stoploss= 20 ; extern double Takeprofit= 40 ; extern double Factor= 3 ; //----    //----    //+------------------------------------------------------------------+ //| Calculate open
jilongl
Added topic help!!! No error, but cannot trade
When I run my EA, there was no error, but cannot trade. Please check for me. thanks so much extern double Lots= 0.1 ; extern double Stoploss= 20 ; extern double Takeprofit= 40 ; extern double Factor= 4 ; //----    //----   
jilongl
Added topic need help!!!
i wrote a EA, but it could not run. In journal of tester, it say "Cannot open file 'C:\Program Files (x86)\BACERA PRO TRADER\experts\JEFF LEUNG.ex4' on the," Anyone can tell me what error I might had made? Thanks
jilongl
Added topic Q:how long can a program stay in "int start()"?? HELP
Hi everyone, I am new to MQL4 programing. And I have few questions bothering me a lot. I really hope that someone can help me out. (I want write a program can run a long period) Question 1:How long can a program stay in "int start()" stage