What does
Pip Cop do?


Go Back   Home > Forums > Forex Robot Reviews > Current Live robot Reviews

» Welcome to the Pip Cop - Forex Robot Reviews and forums.
PipCop reviews MetaTrader Forex robots (EA's) in real-time and posts detailed statements every 15 minutes.
We ONLY forward test on real accounts for the most accurate robot reviews!

Be smart! Read the Review FAQ or you WILL lose money!
If you enjoy the site, please let me know by registering or donating! Thanks! -- PipCop
P.S. This message is hidden if you register!
Current Live robot Reviews Current forward tests of MetaTrader Forex robots (Expert Advisors)
Reply
 
LinkBack Thread Tools Display Modes
Old 2010-12-09, 09:14 AM   #1 (permalink)
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default Move_V1

This review is about the Move_V1 EA. My thanks to skivers for suggesting this EA to me. I have no affiliation with anyone in conjunction with this review. I obtained this EA from tradingsystemforex.com. The EA thread is here (note that you need to be an elite member to read the entire thread or download anything).

I have chosen to run the version 1.04 of this EA which can be found in post #27 of the EA thread. The set file I use with this EA (attached) can be found in post #17.

This EA trades only EURUSD on an M15 chart. The original author is vlad123 and then the EA was modified and optimized by funyhoo. Here is a quote describing the trading strategy:
Quote:
This EA is based on a high-Low strategy. If the price is located in a zone over the lowest/under the highest and if the range between the highest and the lowest on the current TF is higher than the range between the highest and the lowest on D1, then we buy/sell.
The long-term (Jan 3, 2000 to present) backtest (attached) shows a good smooth equity curve.

My impression of this EA (based on the backtest) is that it is very good. The EA winning rate is only about 61% but it's average win is way higher than it's average loss and the DD (with the attached set file) is about 32%. Warning: this EA is an infrequent trader (about 4.5 trades a month based on the backtest 131 months).
Link: http://www.myfxbook.com/members/rsmereka/move-v1/69354


Rick
Attached Files
File Type: pdf Move_V1.pdf (119.7 KB, 140 views)
File Type: set move_v1_by_vlad123 v1.03 eu m15.set (2.4 KB, 108 views)
__________________
MyFXBook Live Statement Mt4Analysis

Last edited by rsmereka; 2010-12-09 at 09:19 AM. Reason: Add Attachments
rsmereka is offline   Reply With Quote
   
 
Old 2010-12-30, 11:11 AM   #2 (permalink)
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default

While I was backtesting an EA for Dan using this account, the Move EA opened two trades during the big EURUSD bull move on the 28th. By the time I got to it, the first trade closed in profit and the second trade opened. I manually closed the second trade in profit.

Keep these two trades in mind when you look at the demo account.

Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote
Old 2011-01-29, 09:11 AM   #3 (permalink)
Dan
Pip Officer
 
Posts: 90

Default

Rick,

Looks like this ea is doing pretty good so far. Since it trades so infrequently would you be able to trade it on other currency pairs so it traded more often or is it specific to EUR/USD like you said in your original post?

Dan

Last edited by Dan; 2011-01-29 at 09:13 AM.
Dan is offline   Reply With Quote
Old 2011-01-29, 12:29 PM   #4 (permalink)
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default

Quote:
Originally Posted by Dan View Post
Rick,

Looks like this ea is doing pretty good so far. Since it trades so infrequently would you be able to trade it on other currency pairs so it traded more often or is it specific to EUR/USD like you said in your original post?

Dan
Hi Dan,

I agree. This EA shows real promise.

AFAIK, no one has checked out running this EA on other pairs although the strategy is fairly simple and should work. If I get creative, I may try some backtests on other pairs.

Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote
Old 2011-02-16, 01:47 PM   #5 (permalink)
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default MyFXBook Strategy Move_V1 at Risk 8.4

Reference

Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote
Old 2011-02-18, 01:14 PM   #6 (permalink)
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default MyFXBook Strategy Move_V1 at Risk 34.7

Reference

Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote
Old 2011-03-06, 04:11 PM   #7 (permalink)
Rookie Pip Officer
 
Posts: 42
My Trading Journal


Trading Live with:
Genial Invest
Default

Hey rick, I want to make sure I edit Move_V1 correctly for min and max lot.

minlot=MarketInfo(symb,MODE_MINLOT);
would have to be changed to
minlot=0.01; // for alpari-uk mini account // minlot=MarketInfo(symb,MODE_MINLOT);

right?

Maxlot isn't defined anywhere so that would require a bit more coding, but it isn't necessary because I don't have huge funds.
daxzair is offline   Reply With Quote
Old 2011-03-06, 04:18 PM   #8 (permalink)
Rookie Pip Officer
 
Posts: 42
My Trading Journal


Trading Live with:
Genial Invest
Default

Similarly, I found this like defininf lot size:
if(lts<minlot)lts=minlot;

Using the same logic, I would have to define maxlot and add this line to achieve compatibility with alpari-uk lots.
if(lts>maxlot)lts=maxlot;
daxzair is offline   Reply With Quote
Old 2011-03-06, 05:15 PM   #9 (permalink)
Site Supporter
 
rsmereka's Avatar
 
Posts: 1,991
My Trading Journal


Trading Live with:
Forex Hacked(Copier), Forex Strategy CAD1(manual)
Default

Quote:
Originally Posted by daxzair View Post
Similarly, I found this like defininf lot size:
if(lts<minlot)lts=minlot;

Using the same logic, I would have to define maxlot and add this line to achieve compatibility with alpari-uk lots.
if(lts>maxlot)lts=maxlot;
No need to edit the mq4 MQL4 source file.

Just set the input values maxlot and minlot. For Alpari UK, they are set correctly in the set file in post #1 for a standard lot or Classic as Alpari calls it.. These are the minimum and maximum lot size allowed by the broker given your account type. You have not said what type of account you have but I'll guess at Micro which allows from 0.01 to 2.0 in 0.01 increments. The 2 standard lot limit is for all open positions so I think you should set your maxlot to 1.0 because there is a high probability that Teyacanani and Move_V1 will open positions close to the same time.

Rick
__________________
MyFXBook Live Statement Mt4Analysis
rsmereka is offline   Reply With Quote
Old 2011-03-06, 05:24 PM   #10 (permalink)
Rookie Pip Officer
 
Posts: 42
My Trading Journal


Trading Live with:
Genial Invest
Default

Ohhh I was using the old version. I would have thought that his first post contained the latest version. Thanks :P

I'll probably have a micro account until my funds increase. I suppose Alpari-UK will do the switch once I pass 2000$ in deposited funds which is the requirement for a classic account.

Last edited by daxzair; 2011-03-06 at 06:13 PM.
daxzair is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes




All times are GMT -5. The time now is 06:01 PM.

Powered by vBulletin ®
Site content and design Copyright © 2010 PipCop, LLC.
Site designed, hosted, and maintained by One Web Ave
Template by vBSkinworks.
Content Relevant URLs by vBSEO 3.3.2