- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Dec 7, 2011Enough to beta-test and get a fully working auto arb off the ground. I am also working to improve my order matching software. I have no absolute time requirements, but I am looking for help using windows calls to do the various tasks necessary in ...
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 7, 2011It's alive! url Basically, this does everything the free version of Jason Fielder's ForexArb system does. It's not very difficult to add trading capability to this script. I'm planning to release this for free, but will only do so once I have the ...
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 7, 2011@whatfx Start your own thread next time: url
Creating a DDE Server?
-
Ronald Raygun replied Dec 7, 2011My suspicion behind the lack of automation is the potential for lawsuits. The brokers used in the example can slip an order by a few tenths of a pip.
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 6, 2011Conceptually, this is exactly what I'm trying to do. I'll play around with it but from reading the site, there are plenty of features I would like to strip out.
Creating a DDE Server?
-
Ronald Raygun replied Dec 6, 2011Already did it using Excel VBA. Takes 600ms round trip (incoming quote to trade decision). Did it in MQL, takes 200ms round trip. I used the named pipes example mentioned here ( url ) Doing it in C#, takes 150ms round trip. Trying to do it in ...
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 5, 2011I've been doing it recently actually. You know Jason Fielder's new 'forexarb' system that's out? I've been doing that for almost a year now, basically since the euro crisis started. And I'd say he's still behind my developments. The bank traders ...
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 4, 2011A quick primer on arbitrage. After reading through this thread it seems there is a lack of the proper definition of "arbitrage" when applied to forex. Here is how I see it: True arbitrage happens when there are two separate markets offering the same ...
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 3, 2011Yep, I already have raw feeds from 3 brokers. But I'm still seeing some pricing discrepancies. I'm not quite at the level to trade directly with a liquidity provider ($500M seems to be the magic number), so I'm trying to lower my risk by spreading ...
Creating a DDE Server?
-
Ronald Raygun replied Dec 2, 2011That particular arb method is fairly juvenile. It's more fun if you have direct liquidity provider access--bypass the broker(s).
Arbitrage between 2 brokers
-
Ronald Raygun replied Dec 2, 2011I'm trying to reduce latency between source and processor. Using the internal DDE server is almost definitely not possible. I definitely need to build my own DDE server and run that via EA or script in the terminal. I am working on a 'best price' ...
Creating a DDE Server?
-
Creating a DDE Server?
Started Dec 1, 2011|Platform Tech|18 replies
Does anyone have experience setting up a DDE server? I'm trying to get multiple metatrader ...
-
Ronald Raygun replied Nov 28, 2011I just use notepad++ and configured it so that F5 runs the compiler. The coloring features would be nice for sure.
Eclipse plugin MQL Editor
-
Ronald Raygun replied Nov 23, 2011double Pips(double OrderStopLossValue, double OrderEntryPrice) { //Check the broker type default 4 digit broker int BrokerMultiplier = 1; if(Digits == 3 || Digits == 5) { //5 digit broker BrokerMultiplier = 10; } double Pips = ...
distance in pips between 2 prices
-
Ronald Raygun replied Nov 23, 2011double PipSize = MathAbs(OrderOpenPrice() - OrderStopLoss()) / Point;
distance in pips between 2 prices
-
Interesting MM spreadsheet
Started Nov 23, 2011|Platform Tech|2 replies
So I got an e-mail from Tom Strignano (I'm on his mailing list) about some guy's "advanced MM ...
-
Ronald Raygun replied Nov 21, 2011How exactly would the trailing part work?
Trailing stop for total pips EA
-
Ronald Raygun replied Nov 21, 2011Thread is pretty old as is the EA and the method. There are only so many ways you can code a moving average crossover.
Generic MA Crossover Version 2 [TD]