- Search Energy EXCH
- 399 Results (272 Replies, 127 Comments)
- iwjw replied May 18, 2012
checking the market...isn't that something the EA could do for you if the EA knew what to look for? trading only in a specified time window should also be doable so semi-automated isn't neccessarily where we have to end up with this ea
Overlay Positive Hedging EA
- iwjw commented May 18, 2012
they don't do anything stupid because they can't...they are deciding what's happening and they are working together if you are selling, they are buying and vice versa remember what happened recently with gpbusd after second drop in gdp came out ...
EURUSD soars 60 pips on no news
- iwjw commented May 18, 2012
all of the eurozone problems really don't matter if the big boys, who are controlling the market, are deciding that the euro should go up, it will go up they are just looking where most of the money can be made if they are planning to go short they ...
EURUSD soars 60 pips on no news
- iwjw replied May 18, 2012
nothing I'm currently aware of but didn't test the ea so far until the loops are corrected maybe you can arrange that the latest version of the ea can be found as attachment in post #1
Daily Break Strategy
- iwjw commented May 18, 2012
think "they" will support $38 for a few days but if the shorties jump in it could get somewhat cheaper
Facebook Stock Opens as Investors Flock to Get Shares
- iwjw replied May 18, 2012
Hi, thanks for coding please check all loops like: for(int i=OrdersTotal();i>0;i--) lowest index is always 0 so it should read: for(int i=OrdersTotal()-1;i>=0;i--)
Daily Break Strategy
- iwjw replied May 18, 2012
ExNess...$2.669/lot But I don't know anything about them...just demoing because of their proprietary one-click-trading addon for MT4 that I wanted to test
EUR/CHF
- iwjw replied May 18, 2012
sorry, as I said before: the MT5 version of this EA doesn't work as it's supposed to do The ordermanagement is totally different from MT4 so the MT5 version is of no use
Overlay Positive Hedging EA
- iwjw replied May 17, 2012
little bit of number crunching — I'm currently playing around with an indicator that's showing me the price difference between now and xx bars back On M15 with xx=24 (6 hours) im currently getting EURUSD: -51 pips GBPUSD: -111 pips EURGBP: +24 ...
Overlay Positive Hedging EA
- iwjw replied May 17, 2012
to not get confused, the BTs posted are not from the EA from post #1 it's my own development but based on the same principle so testing your settings isn't possible as I posted earlier it's no longer possible with MT5 to have a long and short at the ...
Overlay Positive Hedging EA
- iwjw replied May 16, 2012
the combinations are practically unlimited — that's long audusd vs. short nzdusd It's working in 2012...didn't test prior because of missing historical data (and that's a big big issue with MT5) but you always run into a spike that is big ...
Overlay Positive Hedging EA
- iwjw replied May 16, 2012
been there, done that...not Laguerre but several other indicators I didn't get an edge and always ran into the spikes even random choice of long/short combination led to an overall positive outcome it has to go into the supply/demand direction i ...
Overlay Positive Hedging EA
- iwjw replied May 16, 2012
it's "my own" EA but based on the same grid principle There's no entry criteria so the EA opens the hedge as soon as it's started After TP for a basket is reached the next hedge is opened directly after closure...and here's the first point that ...
Overlay Positive Hedging EA
- iwjw replied May 16, 2012
some results of my tests with my MT5 EA — The equity curves aren't looking that bad, if there weren't the ugly spikes Depending on when you started, a downspike could lead to a 50+% DD of your starting balance. The test was eurusd vs. gbpusd ...
Overlay Positive Hedging EA
- iwjw replied May 16, 2012
sorry, but I'm not going to make any changes in the code - it's only a decompiled version and so it's hard to read - it's not BTable and so it could take a lot of time to see whether a "bug" was fixed or not, or whether a bugfixing resulted in ...
Overlay Positive Hedging EA
- iwjw replied May 16, 2012
for (int l_pos_16 = 0; l_pos_16 < OrdersTotal(); l_pos_16++) doesn't work correctly...the loop has to be the other way round: for (int l_pos_16 = OrdersTotal()-1; l_pos_16>=0; l_pos_16--) Imagine you have two open orders that are to be closed These ...
Overlay Positive Hedging EA
- iwjw replied May 14, 2012
my 2 cents — a couple of months ago, I've coded a few multi currency (hedging) EAs under MT5 to check whether this kind of trading could lead to a longterm edge or not. The short summary of my results is: NOT I've tried dozens of combinations ...
Overlay Positive Hedging EA
- iwjw replied May 12, 2012
I've translated the original overlay EA into MT5, but the logic doesn't work under MT5 as it is The problem is that there is always only ONE open position for any instrument at any given time if you open a position at 1.30 and add another at 1.2990 ...
Overlay Positive Hedging EA