Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Martingale/Average Cost and Hedging


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack (27) Thread Tools Display Modes
  #661 (permalink)  
Old 07-10-2008, 11:05 PM
Junior Member
 
Join Date: Jun 2008
Posts: 4
noesis2020 is on a distinguished road
I've been testing V1+V2 ea on a FXDD demo account and it's working great as long as the market is in treading mode. So I opened up a live mini account with FXDD to see how it will perform, but there are no trades made so far (I'm using the regular v1+v2_new2 version). Does anyone know why?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #662 (permalink)  
Old 07-11-2008, 06:34 AM
Senior Member
 
Join Date: Jul 2007
Posts: 145
roodstaart is on a distinguished road
Quote:
Originally Posted by noesis2020 View Post
I've been testing V1+V2 ea on a FXDD demo account and it's working great as long as the market is in treading mode. So I opened up a live mini account with FXDD to see how it will perform, but there are no trades made so far (I'm using the regular v1+v2_new2 version). Does anyone know why?
Maybe need micro and not mini?
Further: this ea is great, but it will kill your account in the end. No doubt.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #663 (permalink)  
Old 07-12-2008, 06:14 PM
tcl's Avatar
tcl tcl is online now
Member
 
Join Date: Apr 2008
Posts: 55
tcl is on a distinguished road
Cool how is the EA progress??

how is the EA progress??

is it good and profitable ?? how about the equity progress??

anyone have tried it on live (micro) ??

looks interesting to try...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #664 (permalink)  
Old 07-13-2008, 03:47 PM
Junior Member
 
Join Date: Jun 2008
Posts: 4
noesis2020 is on a distinguished road
It turns out that with FXDD micro account the maximum limit is $5000, which is way too small for this EA, so I applied a new account with IBFX, the limit is $50,000.
I plan to go live on GPBUSD pair only when the market is in trending mode, and turn the ea off during big news events and during high volatility periods.
I'll post my live results in few weeks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #665 (permalink)  
Old 07-15-2008, 03:11 PM
Junior Member
 
Join Date: Dec 2007
Posts: 17
jcosta is on a distinguished road
Hello all,

I have test this strategy since a while with great results using just one cycle only....
and start using this EA at 23.00 GMT as the one cycle, and if the cycle (buy & sell) hit TP, so it never open position again in that day, it will begin start for next day.

May someone made the changes for that on EA???
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #666 (permalink)  
Old 07-15-2008, 03:48 PM
Junior Member
 
Join Date: Dec 2007
Posts: 17
jcosta is on a distinguished road
Hello,

Here is my change of EA that use trading hours.
Attached Files
File Type: mq4 V1+V2_new3.mq4 (9.7 KB, 87 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #667 (permalink)  
Old 07-16-2008, 02:57 AM
tcl's Avatar
tcl tcl is online now
Member
 
Join Date: Apr 2008
Posts: 55
tcl is on a distinguished road
Quote:
Originally Posted by jcosta View Post
Hello,

Here is my change of EA that use trading hours.
I saw that your EA used many indicators and I found there is a Turbo_JRSX and Turbo_JVEL , is it a custom indicator ? where can I get it ?
Quote:
if (Indicator!="")
{
myOrderTypeL=0;
myOrderTypeS=0;
if (Indicator=="RSI")
{
if(iRSI(NULL,Period(),14,PRICE_CLOSE,0)>H_level)
myOrderTypeS=1;
if(iRSI(NULL,Period(),14,PRICE_CLOSE,0)<L_level)
myOrderTypeL=2;

}
if (Indicator=="MACD")
{
if (iMACD(NULL,Period(),14,26,9,PRICE_CLOSE,MODE_MAIN ,0)>iMACD(NULL,0,14,26,9,PRICE_CLOSE,MODE_MAIN,1))
myOrderTypeL=2;
if (iMACD(NULL,Period(),14,26,9,PRICE_CLOSE,MODE_MAIN ,0)<iMACD(NULL,0,14,26,9,PRICE_CLOSE,MODE_MAIN,1))
myOrderTypeS=1;
}
if (Indicator=="TURBO")
{
if (iCustom(Symbol(),Period(),"Turbo_JRSX",14,MODE_MA IN,0)> H_level)
myOrderTypeS=1;
if (iCustom(Symbol(),Period(),"Turbo_JRSX",14,MODE_MA IN,0)< L_level)
myOrderTypeL=2;
}
if (Indicator=="TURBO2")
{
if (iCustom(Symbol(),Period(),"Turbo_JVEL",14,MODE_MA IN,0)> 0.10)
myOrderTypeS=1;
if (iCustom(Symbol(),Period(),"Turbo_JVEL",14,MODE_MA IN,0)< -0.10)
myOrderTypeL=2;
}
if (Indicator=="STOCH")
{
if(iStochastic(NULL,Period(),5,3,9,MODE_SMA,0,MODE _MAIN,0)>H_level && iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_SIGNAL,1) >H_level)
myOrderTypeS=1;
if(iStochastic(NULL,Period(),5,3,9,MODE_SMA,0,MODE _MAIN,0)<L_level && iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_SIGNAL,1) <L_level)
myOrderTypeL=2;
}
}
btw, if I use this EA for a micro account, I just change it in this Type_Account below?

Quote:
extern string Type_Account = "standard";
but, there is only a "mini" conditional logic in this EA (see below):
Quote:
if (Type_Account=="mini") MaxLot=50; else MaxLot=100;
what should I do?

btw, have you tried the V1+V2_Std-Mini_5% updated or V1+V2 Mini5%[1] ?? is it work?? because I already attached it but there is no activity, why?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #668 (permalink)  
Old 07-16-2008, 12:53 PM
Junior Member
 
Join Date: Dec 2007
Posts: 17
jcosta is on a distinguished road
see post
http://www.forex-tsd.com/110755-post198.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #669 (permalink)  
Old 07-19-2008, 11:55 PM
Junior Member
 
Join Date: Jul 2008
Posts: 3
Lagger is on a distinguished road
Stop Losses are needed

Quote:
Originally Posted by drgoodvibe View Post
I ran it on a live account just to make sure a long long time ago.. It made consistent returns until week 5 when it blew up the mini account completely =)
I blew a $1000 demo account within 2 weeks. It should be modified to accommodate a managed approach to get out of trades that were wrong in the first place.
Attached Files
File Type: htm StrategyTester.htm (229.6 KB, 54 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #670 (permalink)  
Old 07-23-2008, 01:45 PM
Junior Member
 
Join Date: Jun 2008
Posts: 4
noesis2020 is on a distinguished road
Thumbs up Live account

Here is my regular live FXDD account. (No microlot)
I've decided to run Firebird found some where on this forum for few days and then ran Blessing_2_MQLCoder_2.7 few days later. Please note that I'm managing my account semi automatically, closing trades manually at times, stopping and then restating EA's.

Many thanks to the developers of these EAs.
Attached Files
File Type: zip fxdd.zip (9.2 KB, 50 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
v1+v2, forex hedging ea

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/martingale-average-cost-hedging/7436-v1andv2-hedged-ea-beautiful-equity-curve.html
Posted By For Type Date
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 07-02-2008 09:48 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 06-27-2008 08:40 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 03-16-2008 02:59 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 02-26-2008 04:08 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 02-25-2008 09:36 PM
。レForex。ロMetaTrader Part ュク。レCFD,&Futures。ロ - MetaTrader、゙、ネ、畍iki This thread Refback 12-08-2007 06:22 AM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 11-28-2007 09:32 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 10-07-2007 08:02 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 09-27-2007 06:02 PM
Interbank FX - Currency Trading, Forex Trading, Online Currency Trading This thread Refback 09-26-2007 08:46 PM
Franテァois Richir - forex hedging matingale This thread Refback 09-25-2007 10:22 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 09-21-2007 07:28 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 09-16-2007 04:13 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 09-12-2007 10:18 AM
raffaelegalbiati's bookmarks tagged with This thread Refback 09-05-2007 06:44 PM
【Forex】MetaTrader Part W【CFD,&Futures】 This thread Refback 08-23-2007 06:30 AM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 08-15-2007 05:29 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 08-05-2007 05:35 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 08-03-2007 06:56 PM
Interbank FX - Currency Trading, Forex Trading, Online Currency Trading This thread Refback 07-16-2007 08:04 AM
Interbank FX - Currency Trading, Forex Trading, Online Currency Trading This thread Refback 07-08-2007 04:55 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 07-08-2007 08:41 AM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 07-04-2007 10:56 AM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 06-24-2007 12:05 PM
HEDGE - PROSTY SYSTEM DLA KAZDEGO This thread Refback 06-22-2007 09:19 AM
Interbank FX - Currency Trading, Forex Trading, Online Currency Trading This thread Refback 06-21-2007 04:24 PM
Interbank FX - Currency Trading, Forex Trading, Online Currency Trading This thread Refback 06-21-2007 01:28 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Beautiful trading video : GMMA and Pivots radicalmoses Non Related Discussions 2 02-20-2007 03:05 PM
If the current day equity is more than the repvious equity babarmughal Expert Advisors - Metatrader 4 6 12-17-2006 11:48 PM
Looking for Linear Regression Curve Paul_Morin Metatrader 4 5 05-12-2006 10:39 AM


All times are GMT. The time now is 08:28 AM.