• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:11pm
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 8:11pm
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

5-min PASS (Price Action Scalper System) 2,932 replies

1 Minute Simple Scalper System 24 replies

DSS Scalper forex System 2 replies

5-min PASS (Price Action Scalper System) SIGNAL 11 replies

Need a good Metatrader broker for a scalper system 14 replies

  • Platform Tech
  • /
  • Reply to Thread
  • Subscribe
  • 2
Attachments: $ 2.4 Billion Scalper System
Exit Attachments
Tags: $ 2.4 Billion Scalper System
Cancel

$ 2.4 Billion Scalper System

  • Post #1
  • Quote
  • First Post: Jul 27, 2007 8:45pm Jul 27, 2007 8:45pm
  •  Kurka Fund
  • Joined Mar 2007 | Status: Member | 437 Posts
Arbitrage scalper system... When backtesting it only opens orders for the pair of the chart that the EA is testing on. This pic is a backtest 5 min EURUSD with 90% from jan 2003 - Today using apreli data. 10k into 2.4B aint to shabby. but it would be better if it opened the orders from all pairs.

The system is sending orders for EURUSD GBPUSD USDCHF and USDJPY. I can see that the orders are being sent through the logs (Print statements) but they do not get filled or show up.

Anyone know how to test an EA that opens and manages positions with multiple currencies ?
Attached Image(s) (click to enlarge)
Click to Enlarge

Name: Summa Scalper.jpg
Size: 23 KB
Click to Enlarge

Name: summa statement.jpg
Size: 10 KB
Keep it simple stoopid....
  • Post #2
  • Quote
  • Jul 27, 2007 9:08pm Jul 27, 2007 9:08pm
  •  tesla
  • | Joined Oct 2006 | Status: Friendly Neighborhood Programmer | 533 Posts
Portfolio testing is something that metatrader doesn't support. You'll either have to aggregate results or move to a more feature-rich platform for testing.
 
 
  • Post #3
  • Quote
  • Jul 27, 2007 9:43pm Jul 27, 2007 9:43pm
  •  bmwboyee
  • | Joined Aug 2006 | Status: Member | 1,042 Posts
nice backtest.
 
 
  • Post #4
  • Quote
  • Jul 29, 2007 1:50pm Jul 29, 2007 1:50pm
  •  Kurka Fund
  • Joined Mar 2007 | Status: Member | 437 Posts
what if I had the EA create a file with the details of every position outside the chart symbol(). Would mT4 be able to manage these positions ? is it limited to just not opening the positions ?
Keep it simple stoopid....
 
 
  • Post #5
  • Quote
  • Jul 29, 2007 3:27pm Jul 29, 2007 3:27pm
  •  tesla
  • | Joined Oct 2006 | Status: Friendly Neighborhood Programmer | 533 Posts
You could create a file or an in-memory array and keep track of orders for other pairs, but you'd lose much of what MT offers in backtesting. You wouldn't know what the backtest quality was, you'd have to manually calculate drawdown, win &, etc. And... I doubt that MT simulates ticks for other pairs, which means you're stuck with end of bar pricing.

There are lots of limitations, but maybe you get some valuable data from it.
 
 
  • Post #6
  • Quote
  • Jul 30, 2007 1:44pm Jul 30, 2007 1:44pm
  •  Kurka Fund
  • Joined Mar 2007 | Status: Member | 437 Posts
So the only thing that really makes sense is to run it on each pair and add everything up ?
Keep it simple stoopid....
 
 
  • Post #7
  • Quote
  • Nov 3, 2007 2:03am Nov 3, 2007 2:03am
  •  tdion
  • Joined Nov 2005 | Status: EURUSD Quant FREAK | 3,197 Posts
Code can be written to simulate the trades of the other pairs. Just use MarketInfo("EURUSD", Bid) for example to pull in the price at a particular point in time. You'd have to hard code the rollover premiums, stop losses, and take profits, but it is doable.

Of course, your data set would need to be good for all pairs.
 
 
  • Post #8
  • Quote
  • Nov 3, 2007 7:49pm Nov 3, 2007 7:49pm
  •  Mills, Inc
  • | Joined Oct 2007 | Status: Member | 11 Posts
"$ 2.4 Billion Scalper System
Arbitrage scalper system... When backtesting it only opens orders for the pair of the chart that the EA is testing on. This pic is a backtest 5 min EURUSD with 90% from jan 2003 - Today using apreli data. 10k into 2.4B aint to shabby. but it would be better if it opened the orders from all pairs.

The system is sending orders for EURUSD GBPUSD USDCHF and USDJPY. I can see that the orders are being sent through the logs (Print statements) but they do not get filled or show up.

Anyone know how to test an EA that opens and manages positions with multiple currencies ? "



Kurk fund,

what strategy /system is this? if you could explain, it would be much appritiated.
 
 
  • Post #9
  • Quote
  • Jan 11, 2008 10:38am Jan 11, 2008 10:38am
  •  M.A.C.Doug
  • Joined Jul 2007 | Status: Member | 1,685 Posts
Quote
Disliked
what strategy /system is this? if you could explain, it would be much appritiated

currency arbitrage - that of which we do not speak!

when the price quoted for a pair with one broker is different from that of another so that by taking opposite positions with each broker you make a profit when the quotes return to equal and you close out the trades

the opportunities usually occur only briefly and would need an ea to monitor a matrix of brokers and be able to find discrepancies and instantly place the trades simultaneously with each broker
you would only average 1 or 2 pips per trade but the trade is guaranteed to profit. the only safe trade that exists ssshhhhh!!!
 
1
  • Post #10
  • Quote
  • Jan 11, 2008 11:08am Jan 11, 2008 11:08am
  •  Ted1983
  • | Joined Oct 2006 | Status: Britunculus | 940 Posts
Hello Kurka Fund,

Are you using a fractional product indicator to instigate these trades? I had a version of this but Ibelieve it does not work well with past data it seems to exaggerate the inefficiencies somewhat.

Regards,

Ed.
 
 
  • Post #11
  • Quote
  • Jan 11, 2008 11:23am Jan 11, 2008 11:23am
  •  SunTrader
  • Joined Mar 2006 | Status: Trade the reaction not the news! | 10,190 Posts
Quoting Mills, Inc
Disliked
........much appritiated.
Ignored
Is that like prolly?
 
 
  • Post #12
  • Quote
  • Jan 11, 2008 2:26pm Jan 11, 2008 2:26pm
  •  Pip Parade
  • | Joined Dec 2007 | Status: ... often wrong but never in doubt | 222 Posts
Quoting Kurka Fund
Disliked
So the only thing that really makes sense is to run it on each pair and add everything up ?
Ignored
With a return of $2.4 Billion I'ld hire my kids (they're expensive)
 
 
  • Post #13
  • Quote
  • Jan 11, 2008 4:36pm Jan 11, 2008 4:36pm
  •  Ghamm
  • | Joined Jun 2007 | Status: Member | 107 Posts
Quoting M.A.C.Doug
Disliked
currency arbitrage - that of which we do not speak!

when the price quoted for a pair with one broker is different from that of another so that by taking opposite positions with each broker you make a profit when the quotes return to equal and you close out the trades

the opportunities usually occur only briefly and would need an ea to monitor a matrix of brokers and be able to find discrepancies and instantly place the trades simultaneously with each broker
you would only average 1 or 2 pips per trade but the trade is guaranteed to profit. the only safe trade that exists ssshhhhh!!!
Ignored
Having some experience with Arbirage..
You have to watch
1. Slippage
2. Condition must be real , not off quotes.
3. Both sides must be filled. If one side doesnt, you loose money.
4. Only works with certain brokers.
5. Imposible to really back test, as quotes are NOT real trades. Real trades can stall, or slip.
Remember, you are after 1-3 pips, so a 3 pip slip hurts. Our server is a middle ware app that sits between 9 brokers, watches prices 300 times a second. An ea Cant do this by itself.


Craig
 
 
  • Post #14
  • Quote
  • Last Post: Jan 12, 2008 2:47am Jan 12, 2008 2:47am
  •  M.A.C.Doug
  • Joined Jul 2007 | Status: Member | 1,685 Posts
Quoting Ghamm
Disliked
Our server is a middle ware app that sits between 9 brokers, watches prices 300 times a second. An ea Cant do this by itself.
Ignored
Wow! Thats impressive.Did you develop that yourself or is it commercially available? never mind, I would have to split my account into 9 separate $200 accounts andf Ive got a feeling the software would be more than my mini account balance anyway.

Quote
Disliked
Is that like prolly?
- I think it is an innocent typo but thanks for the laugh
 
 
  • Platform Tech
  • /
  • $ 2.4 Billion Scalper System
  • Reply to Thread
0 traders viewing now
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023