- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Apr 28, 2010No attempts? The EA keeps track of what should be and what is.
Generic Breakout Version 6 [TD]
-
Ronald Raygun replied Apr 28, 2010It's just something that lists how many orders are open. That's all.
Generic Breakout Version 6 [TD]
-
Ronald Raygun replied Apr 27, 2010I'm guessing you don't know how to write indis in either mql or easy language, right? No automated program will be able to perfectly convert from one language to another. You'll need to learn both languages.
Code Converter Needed!
-
Ronald Raygun replied Apr 27, 2010It's interesting seeing the arguments for both (all?) sides. May be useful for deciding what language to ultimately learn.
Object Oriented Programming
-
Ronald Raygun replied Apr 27, 2010A self organizing map would be far easier in theory to use. I just don't know how to make one, but you mentioned it's possible in Excel... could you elaborate?
Pattern Matching Concept EA
-
Ronald Raygun replied Apr 27, 2010Using the alphabet actually allows for more trade opportunities than simply using straight numbers. With the alphabet, there are only 255 candle types, and assuming two candle patterns, the likelihood of finding an identical pattern is 1/65025. When ...
Pattern Matching Concept EA
-
Ronald Raygun replied Apr 27, 2010Nope. If you're having problems, go into the metatrader folder and run liveupdate.exe
MT4 build 226, anyone else had issues?
-
Ronald Raygun replied Apr 26, 2010You're half there. I'm trying to generate representations of individual candles. Each candle type is represented by a character. When multiple characters are put together forming a 'word', I have a pattern which I can look for back through the chart ...
Pattern Matching Concept EA
-
Ronald Raygun replied Apr 26, 2010Trades seem cherry-picked to me. Do you think you could link that article? extern string Remark2 = ""; extern string Remark3 = "== System Settings =="; extern bool ReverseTrades = False; Reverses trade signals extern int PipBuffer = 50; The number ...
A Volatilty Breakout Idea
-
Ronald Raygun replied Apr 26, 2010The purpose of uniquely identifying and grouping bars is so I can generate a "pattern string". I introduced an EA at the beginning of this thread which had three types of bars. (Long, Short, and Doji) those classifications form a string. I'm trying ...
Pattern Matching Concept EA
-
Ronald Raygun replied Apr 26, 2010I think to redefine the goal... I'm trying to learn how to program for MQL5. Problem is there is relatively minimal documentation regarding object oriented programming. So, the next best thing is to find some resource that explains OOP. As for my ...
Object Oriented Programming
-
Ronald Raygun replied Apr 26, 2010That's an interesting approach Theo, I did something similar with a coordinate-based system. Each individual bar is given 3 coordinates. Those coordinates can be plotted in a 3-D region. The next step is finding a way to group those bars so bars ...
Pattern Matching Concept EA
-
Object Oriented Programming
Started Apr 26, 2010|Platform Tech|84 replies
There aren't too many useful guides for MQL5 out just yet, and I was wondering if anyone could ...
-
Ronald Raygun replied Apr 25, 2010I wonder... Would it be possible to have an array inside an array element?
Dynamic Multidimensional Arrays
-
Ronald Raygun replied Apr 25, 2010I did write a ZZ-based EA some time ago. Look for Optojay's 1-2-3 thread. That's is a perfect example of how to trade with ZZs.
Swing momentum trading - the robots are taking over
-
Ronald Raygun replied Apr 24, 2010Steve, the code I gave you does that already. Basically.... Check bar. If ZigZag value matches high (swing high) or low(swing low) check the next bar to the left. Scan as many bars as needed until you have all the points you need.
Swing momentum trading - the robots are taking over
-
Ronald Raygun replied Apr 24, 2010zigzagme does show there a regular zigzag would have painted.
Swing momentum trading - the robots are taking over
-
Ronald Raygun replied Apr 24, 2010int PointShift = 1; string ConfirmedPoint = "Not Found"; string PointShiftDirection = "None"; while (ConfirmedPoint != "Found") { double ZZ = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, PointShift); if(iHigh(NULL, 0, ...
Swing momentum trading - the robots are taking over
-
Ronald Raygun replied Apr 24, 2010For your testing pleasure...
Swing momentum trading - the robots are taking over