- Search Energy EXCH
- 804 Results (15 Threads, 789 Replies)
-
MetaCoder replied Oct 5, 2010Open every half hour if trades are the biggest phantom winners or the biggest phantom losers (traditional direction reversed if losers). Require that all preexisting trades on the pair be in profit. | v
Basket 14 EA System
-
MetaCoder replied Oct 5, 2010My current stream of consciousness about the forex market... When we view currency pairs as numerator/denominator entities where a single currency is either a numerator or a denominator (that's all they are, correct?), the two 7-pair sides of our ...
Basket 14 EA System
-
MetaCoder replied Oct 5, 2010Nice addition to the core concept, taz. That's why I post the source code, so people can easily incorporate their own trading ideas.
Basket 14 EA System
-
MetaCoder replied Oct 4, 2010For your consideration: __ Notice the big number of trades when AddSix_01 was running, then the small number of trades in the second batch when I had 02 running. url __ With this one, it trades limited pairs. I had it coded to just trade 2 pairs ...
Basket 14 EA System
-
MetaCoder replied Oct 4, 2010You're welcome Frazer. Could we consider trading even fewer pairs? Maybe look at your reports with this in mind: are there pairs that often contribute more, and ones that often put a drag on reaching equity pop? Big contributors that come to mind ...
Basket 14 EA System
-
MetaCoder replied Oct 4, 2010The first AddSix EA, and the only one posted here so far, adds trades on any phantom pair that is in profit during minute 0. That criterion is very loose so it can lead to a lot of trades. My demo finally closed a LOT of trades for profit on Friday. ...
Basket 14 EA System
-
MetaCoder replied Oct 4, 2010I intend to refine the Phantom idea as much as possible. I like it the best of anything.
Basket 14 EA System
-
MetaCoder replied Oct 4, 2010I've been testing a concept for a while and will test it for a while longer before I post EAs that implement it. The concept is to open trades during minute 0 when a pair is the biggest phantom winner (in dollars/cents, not pips). This tends to ...
Basket 14 EA System
-
MetaCoder replied Oct 1, 2010He could find this section in the source code: void AddIfNeeded() { if (TimeMinute(TimeCurrent()) != 0) ClearSymbolMarks(); if (BidsHaveChanged && TimeMinute(TimeCurrent()) == 0 && !CloseAll) { for (i = GBPUSDidx; i <= EURCHFidx; i++) { if ...
Basket 14 EA System
-
MetaCoder replied Oct 1, 2010Let's first makes sure we're referring to the same section of code. It's this I'm referring to: if (PL_Array[i] <= PipTarget4Reverse && AllSymbolTradesInProfit(SymbolArray[i]) && !SymbolMarked(SymbolArray[i])) { if (i < 7) { Comment("Reversing a " + ...
Basket 14 EA System
-
MetaCoder replied Oct 1, 2010The profitable phantom trades aren't reaching the DollarProfitLevels needed to trigger trades. It's problematic getting it automatically proportional for every account type and every leverage level.
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010If you do get it working as intended, let us know what happens. Also, I originally took your 'reverse' to mean you'd be CUTTING and reversing.
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010I'm trying to explain that your code is not taking reverse trades of -20 pip count. The code calls for shorts in the buy group and longs in the sell group. Since you're not seeing that, and since it's logically unlikely to happen, it confirms that ...
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010In your added code, do you understand that these two conditions won't be true at the same time very often? You're saying "check that a particular phantom trade is losing, but all actual open trades on the same pair are in profit". PL_Array[i] <= ...
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010I can't possibly respond to every request to explain differences between versions. Please arm yourself with a diff utility and compare the text of the EAs to see the differences. Also, the thread should contain descriptions of the differences.
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010tazmaan, your mod does same pair hedging, correct?
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010Basket14_Add_02 is simple and should do well. It's not as efficient as a good Phantom.
Basket 14 EA System
-
MetaCoder replied Sep 30, 2010I'm going to stop pursuing so many permutations of these strategies. I believe we have explored trim'n'reverse type tactical frameworks enough. I'm not that fond of them. I have identified a straightforward version of Phantom14 that I will share if ...
Basket 14 EA System