- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Sep 4, 2011Time[highest_bar + x]
MQ4 - How to draw vline x to right of highest bar
-
Ronald Raygun replied Aug 25, 2011static datetime LastBuySignal; if(iBarShift(NULL, 0, LastBuySignal, False) > 0) { //Send new buy signal LastBuySignal = TimeCurrent(); }
Adding Manual Confirm to Expert Advisor
-
Ronald Raygun replied Aug 25, 2011Limit the EA to send a buy/sell signal once per bar.
Adding Manual Confirm to Expert Advisor
-
Ronald Raygun replied Aug 10, 2011Maybe I should reiterate. I can program in MQL. That said, what are you looking to get done?
Recommend a EA Programming Service
-
Ronald Raygun replied Aug 7, 2011Page doesnt exist... What are you trying to get done?
Recommend a EA Programming Service
-
Ronald Raygun replied Aug 5, 2011Amazon S3 Rackspace
What is the Best Dedicated Server for Hosting EA?
-
Ronald Raygun replied Jul 6, 2011You would need to get them to communicate with each other.
Set EA Priority
-
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