- Search Metals Mine
-
Ronald Raygun replied Jun 14, 2010I'm thinking more along the lines of P2P / BitTorrent. The amount of data that trade terminals would be passing back and forth would be too high for a central database to manage. Problem I'm coming across with self-optimizing or self-testing EAs is ...
Generic Breakout Version 7 [TD]
-
Ronald Raygun replied Jun 13, 2010There are several london breakout type threads, I first wrote Generic Breakout for the 7-9AM gu strategy thread (or something like that). Updated in 1st post. (AutoDetect5DigitBroker). My feeling is if you cannot calculate properly the correct ...
Generic Breakout Version 7 [TD]
-
Ronald Raygun replied Jun 12, 2010My 2 cents... Try using this webpage: url It tells you the number of access points that your computer can see, and more importantly, the channel those access points are on. I use it when I am in my school's dorms and trying to improve the ability ...
Unable to View MetaTrader Folder Content
-
Ronald Raygun replied Jun 11, 2010You need to do that manually. //Calculate dollar profit per pair. string Pair[]; double PairProfit[]; for(int TC = OrdersHistoryTotal(); TC >= 0; TC--) { OrderSelect(TC, SELECT_BY_POS, MODE_HISTORY); string PairMatch = "No"; int PairShift = -1; ...
How do I return the profit value of a specific pair in MT4?
-
Ronald Raygun replied Jun 11, 2010I'm looking at this particular section: f (buyFlag == false && Buy1 < Buy2 && Buy4 > Buy5) Order = SIGNAL_BUY; buyFlag = true; if (sellFlag == false && Sell1 > Sell2 && Sell4 < Sell5) Order = SIGNAL_SELL; sellFlag = true; Change it to this f ...
How to find out price moving below the close of the previous bar?
-
Ronald Raygun replied Jun 10, 2010I think the fees charged just to maintain an account are excessive.
PathFinder Trading Platform. Looks good.
-
Ronald Raygun replied Jun 10, 2010I hate to ask you this stubish, but could you either scan the article or perhaps transcribe it here? I'm particularly interested in the reasons they give. That should give me some insight as to what type of system this is.
TASC June 2010 'Forex Gambit' Some easy indi's needed
-
Ronald Raygun replied Jun 10, 2010Perhaps you might want to post a link to the article?
TASC June 2010 'Forex Gambit' Some easy indi's needed
-
Ronald Raygun replied Jun 10, 2010Above the midpoint of which bar? Does a double low need to happen with consecutive bars?
TASC June 2010 'Forex Gambit' Some easy indi's needed
-
Ronald Raygun replied Jun 10, 2010Wow! Thanks a lot Trend Chaser now I have some reading to do.
Self-updating code?
-
Ronald Raygun replied Jun 10, 2010Post the whole code, I don't think the problem is there.
How to find out price moving below the close of the previous bar?
-
Ronald Raygun replied Jun 10, 2010Replace iclose with Close[0] and iLow with Low[0]
How to find out price moving below the close of the previous bar?
-
Ronald Raygun replied Jun 9, 2010What's EachTickMode set to?
How to find out price moving below the close of the previous bar?
-
Ronald Raygun replied Jun 9, 2010url OP_BUY - 0 - Buying position. OP_SELL - 1 - Selling position. OP_BUYLIMIT - 2 - Buy limit pending position. OP_SELLLIMIT - 3 - Sell limit pending position. OP_BUYSTOP - 4 - Buy stop pending position. OP_SELLSTOP - 5 - Sell stop pending ...
int ordertype()
-
Ronald Raygun replied Jun 9, 2010MBT is an ECN. ECN requires EA to first place trade then modify trade with SL/TP
Extreme scalping using neural networks - EA/Manual
-
Ronald Raygun replied Jun 9, 2010The problem I think with that method stevegee is the EA calling the dll will inadvertently update itself and that might cause some problems.
Self-updating code?
-
Ronald Raygun replied Jun 9, 2010Would it? As I understand it, the binary of the EA won't change. The only thing that would change is what the library file does.
Self-updating code?