• Information
10+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Friends

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

Ingvar Engelbrecht
Added topic calling the RBC range bar indicator from EA
Has anyone figured out how to specify the parameter for the rbc-range-bar-chart indicator when calling iCustom "? All I get is error 4002 After some trial and error the following code executes without error, Just have to wait a while until there is
Ingvar Engelbrecht
Added topic Activate product
In October 2014 I bought the RBC Range Bar Chart. I have lost the code and instruction on use.  How do I proceed? 
Ingvar Engelbrecht
Added topic The danger of small numbers
Have some code that checks MA crossovers. I discovered that I only got one type (I think it was positive cross overs) but not the other one Changed the code and it works ok /*         last = ShrtMA[1] -
Ingvar Engelbrecht
Added topic Build 1085 error
Cannot load indicator " Moving average "  [4002]    This occurs  on a newly installed MT5 Build 1085 Reading the text associated with 4002  do not help, talks about some internal error.   Have no problem running on
Ingvar Engelbrecht
Added topic Problems with copybuffer
ret = CopyBuffer (Handle_Long, 0 , 0 , 5 ,EMA200);       if (ret <= 0 )     {      err = GetLastError ();      errortext = " copyBuffer MA long failed A3 ret = " +
Ingvar Engelbrecht
Added topic Question on OnTimer
When a timer expires the terminal "jumps" to "OnTimer"  If the EA is working in some function 3 levels down (calling sub functions) how is that handled? Is the code interrupted and then resumed att the correct place or has the timer to wait
Ingvar Engelbrecht
Added topic Different brokers, different results
Correct me if  I am wrong A Broker server starts the day on Monday 00:00 hours server time. Server time will be local time where the server is located. Consequences:  - All bars on time frames higher than 1 hour will look different for
Ingvar Engelbrecht
Added topic Test if optimizing
I know there is a way to test if currently running an optimizing run in strategy tester but now I cannot find it
Ingvar Engelbrecht
Added topic Quality control?
I had some suspicious results running MetaTester on the cloud so I decided to dig a bit deeper. Running version 1010  64 bit. The first indication was that the results shown after a strategy run was not the same as when running a single run from
Ingvar Engelbrecht
Added topic Optimization parameters
Is it possible to set or inquire which optimization method to use? In order to use a custom method the type of method has to be set to "Custom max" on the input panel and the appropiate module has to be loaded in "OnInit"  It is easy to forget
Ingvar Engelbrecht
Added topic ParameterSetRange
I have a set statement in 2 variations dpending on what "mode" I am running the EA ParameterSetRange ("ModFactorTP",false,0,0,0,0);            Alternative 1      //Do not
Ingvar Engelbrecht
Added topic Analyze trades ina multi strategy environment
My EA can have up to 6 different strategies for a pair.  To distingish between different strategies I use the comment to identify the specific strategy. It is also a multi currency EA so there are quite a number of strategies. It works. My
Ingvar Engelbrecht
Added topic Weekend disaster
If for some reason thar is a large gap during the weekend that will go beyond my StopLoss what price will I get? Is there a difference between having a stoploss set or having a pending order as stoploss? Is it possible to test if the market is open
Ingvar Engelbrecht
Added topic EA and rangebars
The Range bar indicators I have found (so far) makes use of an offline chart to display. How do I combine this with an EA? Attaching the EA to the offline chart? Sounds logical but I have my doubts. And I really like to have one year of data for
Ingvar Engelbrecht
Added topic Range bars and EA
The Range bar indicators I have found (so far) makes use of an offline chart to display. How do I combine this with an EA? Attaching the EA to the offline chart? Sounds logical but I have my doubts. And I really like to have one year of data for
Ingvar Engelbrecht
Added topic Complexity?
.Try this: 1. Develop a multicurrency EA. 2. Make it runnable in MT4 and MT5 3. Add SQL. Struggled along so far. Now try to run some optimization runs with MT5 on the cloud. Get stopped even if I do not do any actual MySQL calls on optimisation runs
Ingvar Engelbrecht
Added topic Problems with MySQL
I have working code for access to MySQL in MT5/MQL5. It uses the modules ANSI2UNICODE and UNICODE2ANSI works file in MT5. tested with bad password and the translatd message comes out fine. I have exactly the same code  in MT4/MQL 4. Gives my
Ingvar Engelbrecht
Added topic Adding positions
In MT4 it is straightforward to use a technique with a trailing stop and add new trades when the previous trade(s) has passed break even. Each trade is processed  separately by the broker. Each trade can be sent with all needed information in
Ingvar Engelbrecht
Added topic Class versus Library
I have been using both methods and find them quite similar in functionality . What are the pros and cons for using one or the other
Ingvar Engelbrecht
Added topic Accessing Heiken Ashi with iCustom
Works fine getting the 4 values. I would also like to know when the bar switches color, How do I determine that