- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Mar 31, 2010Use this code. Don't modify the code itself.
Trading system using relative strength
-
Ronald Raygun replied Mar 31, 2010Wow, just for the record, this EA is over a year old, and I haven't touched it since then. I think stevehopwood has been on top of this trading system more than I have, I suggest you use his EAs. The EA uses CCFp make sure that is in your indicators ...
Trading system using relative strength
-
Clustering data?
Started Mar 31, 2010|Platform Tech|2 replies
Let's say I have an N-dimensional dataset. For the sake of example, let's say I use 3 ...
-
Ronald Raygun replied Mar 31, 2010Is there some sort of api or something we can use to tap into the dll?
t3 contest
-
Ronald Raygun replied Mar 31, 2010You mean run several terminals using the same account number? Possible, I've done it across multiple computers, never on one. I just copy the entire metatrader folder to a flash drive and distribute accordingly
Can I run multiple instances of the same MT4 platform?
-
Ronald Raygun replied Mar 30, 2010go to mt4 folder, click live update there
Did anyone else have to do that MT4 live update today?
-
Ronald Raygun replied Mar 30, 2010Not quite. It's 85 possibilities for each axis. (255/3) I've found only 20k unique bars using the above coordinate system from 2000 to the present on GU 1M. I suspect that value shouldn't go much higher. [edit] You could change the distribution of ...
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 30, 2010We already offered alternatives to the original. Please keep up with the thread!

How to know if the last closed order
-
Ronald Raygun replied Mar 29, 2010I'm only doing to do this once: url it takes a lot of googling to learn the jargon of the industry, but ultimately, I would've expected you to hit that. traderjai_inhi did exactly what I expected you to do. If you know anything about wall street, ...
Trainee Trader job?
-
Ronald Raygun replied Mar 29, 2010Remove the absolute value in #3 and you don't need #4, right?
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 29, 2010In statistics, when calculating direct numbers, you need a minimum sample size of 30 in order to achieve the minimum normal curve. When comparing proportions, you need a minimum of 15 to determine the minimum normal curve. You're right I do need a ...
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 29, 2010Not sure what it's like in the UK, but in the US, what matters more isn't your track record, but how well you execute orders. General rule of thumb, fund managers make the calls, traders execute those calls for the best price possible. And there are ...
Trainee Trader job?
-
Ronald Raygun replied Mar 29, 2010My thinking is to not put the logic into the code at all. I'm thinking write the indi in such a way that it downloads the logic from a central server upon init() and deletes the logic upon denit() one example is any constant number should be turned ...
How to make a sellable Indicator
-
Ronald Raygun replied Mar 29, 2010High - Open returns a pip value, let's call that HO High - Close returns a pip value... call that HC Low - Open = LO Low - Close = LC If I were to generate a string using these values. I'd use StringConcatenate(HO+","+HC+","+LO+","+LC) The resulting ...
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 29, 2010Here is one potential solution. Each bar generates a point in four dimensional space (each of the four equations is one coordinate). In order to get the entire range of bars, I would need to find the two points in the entire array with the largest ...
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 29, 2010I'm looking through clustering solutions: url
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 28, 20102010.03.28 19:48:44 Bar Identifier GBPUSD,M1: There were 3074271 bars tested and 20092 unique bars found. Notes: The test was from 2000 to the present. Surprisingly enough, 90% of the unique bars happened between 2008 and the present. Could this ...
Pattern Matching Concept EA
-
Ronald Raygun replied Mar 28, 2010You'd have to use the string find function. Wildcards do not apply.
Closing orders script by comment phrase
-
Ronald Raygun replied Mar 28, 2010You're right, I forgot about that
. [edit]: Combined, is there any other way to make a unique bar based off of those 6 (or fewer?) equations? E.G. High - Open High - Close Low - Open Low - Close Assuming I turn each answer into a string, ...Pattern Matching Concept EA