Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #171 (permalink)  
Old 12-09-2008, 07:56 PM
Member
 
Join Date: Sep 2007
Posts: 46
weezer is on a distinguished road
Quote:
Originally Posted by _rdb_ View Post
Hello Weezer,

I am confused and still find where the errors code in Your_Lucky script

I said that Ea will work, but the result is very different.

I hope there is a senior programmer that can show me errors code.

thanks.
Just to make sure i understand this right. The version 1a works ok and gives good results, but the 1b and 1c works ok, but give bad results or still give good results with less profit?

I´m just asking because the first version you posted contained 2 ea´s "Your_Lucky_EURGBP_v1_Alpari" and "Your_Lucky_EURGBP_v1a".

I presumed that the v1a version was for brokers with 4 decimal digits and
v1_Alpari for 5 digit brokers.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #172 (permalink)  
Old 12-09-2008, 09:03 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 497
frantacech is on a distinguished road
Quote:
Originally Posted by _rdb_ View Post
I try to use the results from dagolard optimize and I modify the default settings in the Your_Lucky Ea

Hidden SL = 28 pips
Hidden TP = 7 Pips

This is update for !_rdb_Your_Lucky_EURGBP_v1c that I have
Any question

MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2);
if (LotsDigit == 2) MinLots = 0.01;
if (LotsDigit == 1) MinLots = 0.1;
if (LotsDigit == 0) MinLots = 1;

Why, MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2); before next lines and why before
extern double MinLots = 0.1;
**********
extern double PointOfPair = 0.00001; //0.00001;
maybe receive from broker from
double point =MarketInfo(null,MODE_POINT);
or variable Point
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakePro fit*Point);

if use code
if (Ask - Bid > MaxSpread*PointOfPair) return (0);
for spread procection after start, ea do not open new trade if big spread, but do not close trade... ? It is plane?
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #173 (permalink)  
Old 12-09-2008, 09:57 PM
Member
 
Join Date: Sep 2007
Posts: 46
weezer is on a distinguished road
Quote:
Originally Posted by frantacech View Post
Any question

MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2);
if (LotsDigit == 2) MinLots = 0.01;
if (LotsDigit == 1) MinLots = 0.1;
if (LotsDigit == 0) MinLots = 1;

Why, MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2); before next lines and why before
extern double MinLots = 0.1;
**********
extern double PointOfPair = 0.00001; //0.00001;
maybe receive from broker from
double point =MarketInfo(null,MODE_POINT);
or variable Point
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakePro fit*Point);

if use code
if (Ask - Bid > MaxSpread*PointOfPair) return (0);
for spread procection after start, ea do not open new trade if big spread, but do not close trade... ? It is plane?
Hi frantacech,

Can you change the code to make the ea work with brokers with 4 decimal digits?
If yes, please modify and post 4 digit version.
I think Drb wouldn´t mind
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #174 (permalink)  
Old 12-09-2008, 10:26 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 497
frantacech is on a distinguished road
Quote:
Originally Posted by weezer View Post
Hi frantacech,

Can you change the code to make the ea work with brokers with 4 decimal digits?
If yes, please modify and post 4 digit version.
I think Drb wouldn´t mind
You need only another settigs.

CloseAll_NOW=0
TargetEquity=3000000.00000000
OpenHour=22
CloseHour=5
PointOfPair=0.00010000
LotsOptimized=1
Risk=25
Lots=0.01000000
MaxLots=50.00000000
MinLots=0.01000000
TP=7
SLA=18
SLB=28
LotsDigit=2
Slippage=3
MaxSpread=3.00000000
Time_Opened_Protection=1
Use_Fractal_TP_SL=0
Fractal_TP=0
F_TP=4
Fractal_SL=0
F_SL=4
Hidden_TP=1
Hidden_SL=1
MaxTrades=5
MaxTradePerBar=2
MaxTradePerPosition=3
IMA_PERIOD=4
MA_AngleZero_PERIOD=14
MA_AngleZero_Level=1
ADX_Period=14
ADX_Level=27
pips_1=3
pips_2=2
pips_3=0
pips_4=1
pips_5=4
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #175 (permalink)  
Old 12-09-2008, 10:29 PM
frantacech's Avatar
Senior Member
 
Join Date: Sep 2006
Posts: 497
frantacech is on a distinguished road
I testing live in IBFX ... it is very bad broker... nominal spread 3pips, real 6-11pips. If profit > spread ... ibfx safe financial world with my 2usd
__________________
RUN With The BULLS And HUNT With The BEARS - Nothing By Chance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #176 (permalink)  
Old 12-10-2008, 05:11 AM
ihipro's Avatar
Member
 
Join Date: Oct 2007
Posts: 70
ihipro is on a distinguished road
I think until now, FxPro is best broker for YourLucky EA. With maximal 3 spread for EURGBP.

Good trading.
Attached Images
File Type: jpg YourLucky.jpg (199.5 KB, 779 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #177 (permalink)  
Old 12-10-2008, 06:20 AM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
Quote:
Originally Posted by frantacech View Post
Any question

MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2);
if (LotsDigit == 2) MinLots = 0.01;
if (LotsDigit == 1) MinLots = 0.1;
if (LotsDigit == 0) MinLots = 1;

Why, MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2); before next lines and why before
extern double MinLots = 0.1;
**********
extern double PointOfPair = 0.00001; //0.00001;
maybe receive from broker from
double point =MarketInfo(null,MODE_POINT);
or variable Point
OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakePro fit*Point);

if use code
if (Ask - Bid > MaxSpread*PointOfPair) return (0);
for spread procection after start, ea do not open new trade if big spread, but do not close trade... ? It is plane?
YES.... !!!
Thank You very much frantacech

you a very good coder, and your explanation really help me
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #178 (permalink)  
Old 12-10-2008, 06:49 AM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
This is Your Lucky result from my forward test on Alpari Demo :
Attached Images
File Type: gif Your_Lucky Forward Alpari 10 des 08.gif (48.8 KB, 787 views)
Attached Files
File Type: zip Your_Lucky Alpari 10 Des 08.zip (4.6 KB, 188 views)

Last edited by _rdb_; 12-10-2008 at 06:56 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #179 (permalink)  
Old 12-10-2008, 06:51 AM
ihipro's Avatar
Member
 
Join Date: Oct 2007
Posts: 70
ihipro is on a distinguished road
Nice result _rdb_.

Last edited by ihipro; 12-10-2008 at 07:41 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #180 (permalink)  
Old 12-10-2008, 07:35 AM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
Quote:
Originally Posted by frantacech View Post
I testing live in IBFX ... it is very bad broker... nominal spread 3pips, real 6-11pips. If profit > spread ... ibfx safe financial world with my 2usd
I agree...
ibfx is very bad broker for Your_Lucky EA, but not for Thunder4WD...
I have Forward Test in ibfx with my Thunder4WD EA :
Attached Images
File Type: gif THUNDER ibfx forward test 10 des.gif (5.5 KB, 759 views)
Attached Files
File Type: zip THUNDER ibfx forward test 10 des.zip (5.5 KB, 233 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
EURGBP King, profitable ea, EurGbp, profitable, EURGBP king EA, king ea forex, king expert advisor, scalping eurgbp, king ea, EURGBP_King.mq4, profitable ea forex, eurgbp ea, profitable forex ea, ea eur gbp, EA EURGBP, EURGBP scalp, Your_Lucky_EURGBP_rdb_v1a.mq4, EURGBP_King, Thunder4WD, yourlucky ea, "YourLucky"of _rdb_., your_lucky, forex king ea, "YourLucky"of _rdb_, eur/gbp king, MyLuckyPro, YourLucky"of _rdb_., YourLucky"of _rdb_, your lucky ea, eur gbp king, ordersend error 130, cache:30m9TbxwJmoJ:www.forex-tsd.com/expert-advisors-metatrader-4/13372-eurgbp-easy-profitable-ea.ht, Your_Lucky_EURGBP, MyLuckyPro V.0.4p, YourLucky _rdb_, your_lucky ea, forex, eurgbp king v1.1, abdulrahman_maros@yahoo.com, Your Lucky EURGBP, ma_anglezerosigma, forex eurgbp, EA EUR/GBP, profitable scalping EA, thunder4wd ea, Your Lucky EUR GBP, lucky, forex profitable ea, EURGBPking, EURGBP expert advisor, profitable ea mt4, Scalper EURGBP, lucky EA, scalp ea, eurgbp scalper ea, eur gbp ea, scalping EA, eurgbp scalping, scalp eur/gbp, your lucky, your lucky mq4, eur gbp king ea, eur/gbp ea, EURGBP Scalper, eur gbp expert advisor


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Easy GBP/USD System fx_geezer Suggestions for Trading Systems 12 01-25-2009 01:17 PM
Could somebody make easy EA jyrik Suggestions for Trading Systems 2 04-18-2007 01:38 AM
Easy question dwmcqueen Metatrader 4 1 04-14-2007 02:59 AM
Need Help with easy EMA!!!!! palexa Suggestions for Trading Systems 2 11-26-2006 03:45 AM


All times are GMT. The time now is 10:01 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.