Chinedu Peter
Chinedu Peter
  • Information
1 year
experience
4
products
6
demo versions
0
jobs
0
signals
0
subscribers
Chinedu Peter
Added topic Which command is used to call the computer name?
Hi guys, I know I can call the name of the Broker using AccountCompany(). But now I want to call the name of the host computer. Any command please
Chinedu Peter
Added topic I am trying to understand how to use Custom Indicators
I seldom worked with indicators as far as EA is concerned? All I did was manually past indicators on charts when I need them even while working with EA. This can be tasking when back testing the EA being designed. What exactly is iCustom indicators
Chinedu Peter
Added topic For those who would find it useful: Behold the universal "IsNewBarOnTimeframes()"
I think the below code for IsNewBarOnTimeframes() might be useful for anyone who wishes to monitor the end of a bar from any time frame whatsoever in MT4. Hence, I decided to share it for perusal. Happy using: bool IsNewBarOnTimeframe( int timeframe)
Chinedu Peter
Added topic Why is my EA seeing only 30 open charts
I opened 42 charts and attached my EA on all of them. But only 30 of the EAs (same EA) are sending me email alert. What happens to the EA on the remaining 12 charts
Chinedu Peter
Added topic Finding the Time complexity (Big "O") of programs meant to obtain the initial coefficients of a binomial expansion in MQL4.
The following three blocks of codes are meant to find the initial coefficients of the expansion of a binomial expression up to power 6. That is, since (x + y)^6 = x^6 + 6x^5y + 15x^4y^2 + 20x^3y^3 + 15x^2y^4 + 6xy^5 + y^6, the program is meant to
Chinedu Peter
Added topic Check boxes in MQL4?
Hi guys. I am aware of how to code a boolean external variable to be used at the parameter window when running the EA. But I want to be able to code a check box to be used at the parameter window when running the EA since check boxes are handier. How
Chinedu Peter
Added topic How to send email to my EA?
Hi guys. I know how to configure and code that emails be sent from an expert advisor to my mail.  But I do not know how to configure and code that my expert advisor receive mails from me. This is necessary to remotely control your EA's behavior
Chinedu Peter
Added topic EA vs Manual Trade Operations
Hi guys. Can an EA be programmed to recognize when a user manually opens or closes a trade from the chart
Chinedu Peter
Added topic IsNewBarOnTimeframe() Initial Problem detected
Hi everyone. Why does the function IsNewbarOnTimeframe return true when the program is just loaded (at the middle of the current bar)? Why not wait until the current bar (first bar) ends before returning true just like the subsequent bars? How can
Chinedu Peter
Added topic Difference between OnStart() and OnTick()
I cannot seem to understand the difference between OnStart() and OnTick() event handlers. Documentation says OnStart() is for handling scripts while OnTick() is for handling NewTick event. But I use OnStart() to handle events for incoming new tick in
Chinedu Peter
Added topic Any other payment options?
Any other payment options for VPS? I have exhausted my 100 USD per month for international transaction using MasterCard. Is there no wired transfer
Chinedu Peter
Added topic ACCOUNT CHANGE
I want to replace my original trading account (a live account) with a new account (a demo account ) within the same VPS account. How do I go about doing it please
Chinedu Peter
Added topic OrderSelect()?
Which of the two blocks of code is correct? for ( int i= 0 ; i <= OrdersTotal ()- 1 ; i++)      {        bool Select = OrderSelect (i, SELECT_BY_POS, MODE_TRADES);      ) and
Chinedu Peter
Added topic How to not trade during SWAP
I don't want my EA to trade during SWAP period. It is ridiculously to trade at swap time as Spread can be as wide as a six lane express way. How can I use time to tell my EA to jump swap period say 10 minutes before and 10 minutes after swap time. A
Chinedu Peter
Added topic ResetLastError()?
What is the work of the ResetLastError() function? Must one get an error to call the ResetLastError() or is it called in anticipation of an error or is it called where an error cannot be tolerated, e.g. where an open order has to close whatsoever in
Chinedu Peter
Added topic Variable Initialization
Please I want to know if variables declared at global scope are initialized at the entry of every tick . But I thought they are initialized only once at the loading of the EA. Why is my variable (at global scope) always returning zero even when I
Chinedu Peter
Added topic VPS: Are objects migratable?
Hi guys. Please I would like to know if the objects that I placed on my charts are also migrated to VPS. In other words, are chart objects such as VLINE, HLINE etc. migratable
Chinedu Peter
Added topic How to access objects from a non current chart
How can I access the properties of an object that is located on a non current chart? That is, how to access the properties of an object whose chart is different from the one upon which the EA is attached. Any function please
Chinedu Peter
Added topic Am I on a no help list?
Am I on a no help list
Chinedu Peter
Added topic Are objects migratable?
Can chart objects be created, modified or deleted in a VPS