- Search Metals Mine
-
Ronald Raygun replied Jun 23, 2011Something along the lines of... double Lots = 9.7 int NumTrades = 3; double MinLot = MarketInfo(Symbol(), MODE_MINLOT); double MinTotal = NumTrades * MinLot; //Determine the multiplier double MinlotTest = MinLot; int TenPower = 0; while(MinlotTest < ...
Splitting up lot position evenly
-
Ronald Raygun replied Jun 18, 2011Why don't you run multiple trade managers on different charts?
Why is there NOT a Multi-MagicNumber Manager EA?
-
Ronald Raygun replied Jun 14, 2011This is my home setup: image iPod touch is terrible for taking pictures. It's much brighter than it looks, I promise.
Show us your workstation!
-
Ronald Raygun replied Jun 13, 2011Any grid trading EA should do that.
Looking for an EA to add to a position
-
Ronald Raygun replied Jun 5, 2011I agree DST adjusted data is better. Problem becomes how do I account for the two 2:00AMs and the lack of a 2:00AM twice a year? For now, I've avoided that issue by simply using relatively small backtesting periods. DST shifts tend to affect the ...
Old Dog with New Tricks
-
Ronald Raygun replied Jun 1, 2011Have you considered the effect of a black swan? That's the main reason optimized systems fail. They do not account for paradigm-shifting events.
ea optimization
-
Ronald Raygun replied May 13, 2011I'm trying to do something a little unorthodox in programming. I'm basically telling the EA to ignore any errors thrown by the original OrderSend request, and instead search for the trade using the OrderSelect() function. If that returns true, the ...
Detecting ECN Brokers
-
Ronald Raygun replied May 12, 2011I thought that too, except when I ran Print() functions in the second ECN section, the EA was still running through that section, so this block of code was changing the value of ECNBroker from False to True. If the Ticket value passed as a result of ...
Detecting ECN Brokers
-
Ronald Raygun replied May 12, 2011It's my own attempt at making a universal ECN Broker script. Errors are passed through to the error handling code in the Start() function. This is meant specifically to detect an ECN Broker and adjust its behavior accordingly. extern bool ECNBroker ...
Detecting ECN Brokers
-
Ronald Raygun replied May 12, 2011FXCM and FXDD for now. I'm not sure if your research across 16 brokers has shown any patterns.
Detecting ECN Brokers
-
Ronald Raygun replied May 12, 2011Hey Hanover, As far as I know, one way an ECN Broker handles orders entered with a SL/TP is it fails with no error code. I'm trying to find a way to capture this error. One method I used was to check for an order ticket. That doesn't seem to be ...
Detecting ECN Brokers
-
Ronald Raygun replied Apr 29, 2011This is why none of the programmers are interested.
Great idea for an EA
-
Ronald Raygun replied Apr 5, 2011Are you sure there are multiple trades being placed in the same bar? That particular variable tells the EA how many trades per bar were taken
Generic MA Crossover Version 2 [TD]
-
Ronald Raygun replied Apr 5, 2011Should be in the code, not the settings
Generic MA Crossover Version 2 [TD]
-
Ronald Raygun replied Apr 5, 2011There should be a variable in the EA called 'TradesThisBar' Does your version have that variable?
Generic MA Crossover Version 2 [TD]
-
Ronald Raygun replied Mar 26, 2011Use a trading simulator
Simplified original turtle trading system
-
Ronald Raygun replied Mar 15, 2011Your range filter looks too tight. According to the EA the box is outside the range filter.
Generic Breakout Version 7 [TD]