- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Mar 28, 2012So you're just trying to calculate historical account balance?
Adding Compounding Rate to EA
-
Ronald Raygun replied Mar 22, 2012Some of your comments suggest relative inexperience with programming in general.
Need a hand coding an MA cross EA
-
Ronald Raygun replied Mar 22, 2012Maybe it's time you read this: book.mql4.com
Need a hand coding an MA cross EA
-
Ronald Raygun replied Mar 22, 2012It's very rare for two different MAs to have the exact same value. So you check relative MA movement.
Need a hand coding an MA cross EA
-
Ronald Raygun replied Mar 22, 2012What the EA sees are a set of numbers. How do you translate a visual pattern to a set of numbers?
Need a hand coding an MA cross EA
-
Ronald Raygun replied Mar 22, 20121) They almost never have the same value. To detect a cross, you look for the previous bar to have the fast value above the slow value, and the current bar the fast value below the slow value (for short entries). 2) There are existing examples out ...
Need a hand coding an MA cross EA
-
Ronald Raygun replied Mar 14, 2012Don't give the programmer the settings. E.G. if you use a 50/100 MA crossover, don't tell them it's 50 /100. Just tell them to use a fast and slow MA.
Looking for EA (MQL4) programmer
-
Ronald Raygun replied Feb 12, 2012Amazon EC2 has a free tier. That should be sufficient to get you started.
Publishing the Technical Analysis
-
Ronald Raygun replied Feb 9, 2012There should be a reference to hPIpe in the experts tab. What value is it? Most of the 'hanging' problems are issues with the scripts not being able to see the named pipe.
My Own Broker Arbitrage
-
Ronald Raygun replied Feb 6, 2012That's largely the reason why I'm trying to do this at the MT4 broker level. The opportunities are still large enough to work for us, but too small to be profitable for the HFT funds.
My Own Broker Arbitrage
-
Ronald Raygun replied Feb 6, 2012It works very well at the prime brokerage level. The problem is that's where a number of HFT firms are trading. These are the guys who measure in micro/nanoseconds.
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 30, 2012That would put the distribution at ~10% arbs are genuinely feasible. Just a matter then of identifying which is which.
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 29, 2012It seems so. I'm sending the intended open price into the comments, and it's showing significant slippage.
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 28, 2012Yes. The current problem is getting the trade out to the brokers in time. Current reaction time is ~10ms. Got to get it down.
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 20, 2012By executing two trades properly, we can hold them open indefinitely--pending margin requirements. That's the largest advantage over trying to figure out whether a broker is leading, or lagging the market. Keep those ideas coming. The beauty of FF ...
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 20, 2012If by 'REAL work' you really mean: Reading Elaborate And Long- Winded Or Ruined Kode Then yes.

My Own Broker Arbitrage
-
Ronald Raygun replied Jan 19, 2012As universal as Java is, I took one class on it, and was miserable. Maybe Java is an acquired taste, I don't know. I'm working on rewriting my arb scripts so they can work on one pair only. Named pipes clearly don't scale well enough in this ...
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 18, 2012How can I change this from a polling infrastructure to an interrupt infrastructure?
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 18, 2012I only recently saw the thread, and the 'revised' EA that goes with it. Presumably, the concept is simple enough: place a pending order for a sell at 0.0000 every 28 seconds, deleting the previous order as need be. It's just a matter of adding that ...
My Own Broker Arbitrage
-
Ronald Raygun replied Jan 18, 2012From a programming standpoint how would I get that part to work? My assumption would be that I need to establish static arrays inside the master. I would think that I need to set up some sort of timestamp for each new tick that comes in and compare ...
My Own Broker Arbitrage