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
  #1271 (permalink)  
Old 01-20-2009, 08:06 PM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
Fix code for Hard SL...
change Parameter :

YL_v2b_Setting.gif

change Hidden_SL and Hide_All and AutoRange_SL to False to get fix StopLoss...

PHP Code:
double GetTP_Buy()
{
   
double TP=0;
   if (
Hidden_TP==true && Hide_ALL==false) {TP=Ask+xTakeProfit_FAKE*SetPoint();} else {TP=0;}
   return(
TP);
}  
double GetSL_Buy()
{
   
double SL=0;
   if (
Hidden_SL==false && Hide_ALL==false) {SL=Ask-xStopLoss*SetPoint();}     else 
   if (
Hidden_SL==true  && Hide_ALL==false) {SL=Ask-xStopLoss*1.4*SetPoint();} else {SL=0;}
   return(
SL);
}  

double GetTP_Sell()
{
   
double TP=0;
   if (
Hidden_TP==true && Hide_ALL==false) {TP=Bid-xTakeProfit_FAKE*SetPoint();} else {TP=0;}
   return(
TP);
}  
double GetSL_Sell()
{
   
double SL=0;
   if (
Hidden_SL==false && Hide_ALL==false) {SL=Bid+xStopLoss*SetPoint();}      else 
   if (
Hidden_SL==true  && Hide_ALL==false) {SL=Bid+xStopLoss*1.4*SetPoint();}  else {SL=0;}
   return(
SL);

Update on Post 1

this is backtest on TadawulFX (Spread EURGBP=3 pips)
Attached Images
File Type: gif Backtest_YL_v2b.gif (86.0 KB, 1610 views)
Attached Files
File Type: zip Report_Your_Lucky_v2b.zip (70.4 KB, 524 views)

Last edited by _rdb_; 01-20-2009 at 08:13 PM.
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
  #1272 (permalink)  
Old 01-20-2009, 08:19 PM
Senior Member
 
Join Date: Oct 2005
Posts: 148
fxhst329 is on a distinguished road
Quote:
Originally Posted by _rdb_ View Post
Fix code for Hard SL...
change Parameter :

Attachment 76682

change Hidden_SL and Hide_All and AutoRange_SL to False to get fix StopLoss...

PHP Code:
double GetTP_Buy()
{
   
double TP=0;
   if (
Hidden_TP==true && Hide_ALL==false) {TP=Ask+xTakeProfit_FAKE*SetPoint();} else {TP=0;}
   return(
TP);
}  
double GetSL_Buy()
{
   
double SL=0;
   if (
Hidden_SL==false && Hide_ALL==false) {SL=Ask-xStopLoss*SetPoint();}     else 
   if (
Hidden_SL==true  && Hide_ALL==false) {SL=Ask-xStopLoss*1.4*SetPoint();} else {SL=0;}
   return(
SL);
}  

double GetTP_Sell()
{
   
double TP=0;
   if (
Hidden_TP==true && Hide_ALL==false) {TP=Bid-xTakeProfit_FAKE*SetPoint();} else {TP=0;}
   return(
TP);
}  
double GetSL_Sell()
{
   
double SL=0;
   if (
Hidden_SL==false && Hide_ALL==false) {SL=Bid+xStopLoss*SetPoint();}      else 
   if (
Hidden_SL==true  && Hide_ALL==false) {SL=Bid+xStopLoss*1.4*SetPoint();}  else {SL=0;}
   return(
SL);

Update on Post 1

this is backtest on TadawulFX (Spread EURGBP=3 pips)
how did you get the data from them since jan 08?
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
  #1273 (permalink)  
Old 01-20-2009, 08:31 PM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
Quote:
Originally Posted by fxhst329 View Post
how did you get the data from them since jan 08?
History Center for MetaTrader 4
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
  #1274 (permalink)  
Old 01-20-2009, 08:37 PM
Member
 
Join Date: Jun 2006
Posts: 94
kenari05 is on a distinguished road
not worth testing on real money
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
  #1275 (permalink)  
Old 01-20-2009, 08:40 PM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
and... you have a better solution?
please share it...
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
  #1276 (permalink)  
Old 01-20-2009, 08:47 PM
Senior Member
 
Join Date: Oct 2005
Posts: 148
fxhst329 is on a distinguished road
Quote:
Originally Posted by _rdb_ View Post
then it's not Tadawulfx, but ALPARI's DATA.

I test it on MQ data, but on MT4 downloaded from metaquotes.net. Usually when you download platform from them, it doesn't have their server so go to Server Options into server type in metaquotes.net and hit ok. now go and open demo account, fill out form and choose metaquotes.net server. This way you'll stay on the same platform and you'll be using the same data. Their spread is also 3 pips on EURGBP.

You can just download history data for EURGBP since 1999 thru download button in the history center. Don't forget to change ammount of bars to max 99999999999999999

Last edited by fxhst329; 01-20-2009 at 08:50 PM.
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
  #1277 (permalink)  
Old 01-20-2009, 08:51 PM
designmax's Avatar
Member
 
Join Date: Jul 2006
Posts: 50
designmax is on a distinguished road
Yesterday's losing trades

Hi RDB

I have a question for you regarding the stoplosses yesterday. I have been running a demo account on AlpariUK (at risk setting of 50) with both Your Lucky and Thunder on the same account. It has been running for 2 weeks and 2 days so far, and was up 75k to yesterday morning. Starting capital was $100k. We have to expect losses naturally, but the thing that puzzled me is this - I had 3 losing trades yesterday - the first was 31 pips, the 2nd was 34 pips, but the 3rd trade lost 62 pips. I have the in session stoploss set to 28, the out of session stoploss set to 32 (default settings) so how was this one trade able to run for a full 62 pips? Trade no: 33564615 on the attached statement...

Kind Regards
Mark
Attached Images
File Type: gif Forward test to Jan 21.gif (5.1 KB, 1391 views)
Attached Files
File Type: htm Forward test to Jan 21.htm (70.0 KB, 110 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
  #1278 (permalink)  
Old 01-20-2009, 08:52 PM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
@fxhst329
to many capacity for a new data download ... I think the spread is not problem in metaquotes data ... because no broker have record the "Ask" data, All data is only "Bid" recorded.

we need TF M1 data for get 90% result... do not sure there is any broker have 1 year TF M1 data ...

if you have... please try to backtest the latest version and tell me the result...

Last edited by _rdb_; 01-20-2009 at 09:01 PM.
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
  #1279 (permalink)  
Old 01-20-2009, 08:55 PM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
Quote:
Originally Posted by designmax View Post
Hi RDB

I have a question for you regarding the stoplosses yesterday. I have been running a demo account on AlpariUK (at risk setting of 50) with both Your Lucky and Thunder on the same account. It has been running for 2 weeks and 2 days so far, and was up 75k to yesterday morning. Starting capital was $100k. We have to expect losses naturally, but the thing that puzzled me is this - I had 3 losing trades yesterday - the first was 31 pips, the 2nd was 34 pips, but the 3rd trade lost 62 pips. I have the in session stoploss set to 28, the out of session stoploss set to 32 (default settings) so how was this one trade able to run for a full 62 pips? Trade no: 33564615 on the attached statement...

Kind Regards
Mark
The Answer is already in this thread...
Damiany_Filter TF M30...
the problem is fixed in latest version.
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
  #1280 (permalink)  
Old 01-20-2009, 09:01 PM
Senior Member
 
Join Date: Oct 2005
Posts: 148
fxhst329 is on a distinguished road
Quote:
Originally Posted by _rdb_ View Post
to many capacity for download a new data... I think the spread is not problem in data metaquotes... because no broker have record the "Ask" data All data is only "Bid" recorded.

we need TF M1 data for get 90% result... I do not sure there is any broker have 1 year data for M1...
you can get 25 miliseconds data from HotSpot since 2004... both bids and asks... but their spread is too high...
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
abeiks, abeiks EA, best free ea, best free forex ea, Damiani_Volt, ea forex, fap turbo, fapturbo, forex, forex Thunder, free ea, free ea forex, free forex ea, fxprometatrader, lucky EA, lucky ea forum, mylucky EA, MyLuckyPro, Nauris Zukas, pipforia, PrizmaL, prizmal ea, rdb ea, The Best Free EA, thunder, Thunder 4WD, Thunder 4WD ea, thunder ea, Thunder4WD, thunder4wd ea, Thunder4WD v2, Thunder4WD_v2c, Thunder_4WD, your lucky, your lucky ea, your lucky ea forextsd, yourlucky ea, your_lucky, your_lucky ea, Your_Lucky V1e, your_lucky v2, Your_Lucky_EURGBP, your_lucky_eurgbp_v2, Your_Lucky_EURGBP_v2.ex4, Your_Lucky_EURGBP_v2b, Your_Lucky_EURGBP_v2b.ex4, YOUR_LUCKY_v1E, your_lucky_v2, _rdb_, _rdb_ The Best Free EA, _rdb_ The Best Free EA (Update Jan 1 2009), _rdb_The Best Free EA


Currently Active Users Viewing This Thread: 3 (1 members and 2 guests)
Mr. Q

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
Free EA from Pro-Fx-Experts Roets Expert Advisors - Metatrader 4 111 10-13-2009 08:40 PM
I will make 2 EAs for free InTrance Expert Advisors - Metatrader 4 72 07-21-2009 05:46 PM
Great EA for free!!! iTradeTheForex Expert Advisors - Metatrader 4 14 07-05-2009 09:12 AM
Hercules EA (Free Usage) something_witty Raw Commercial Ideas 17 02-13-2009 03:30 AM
Free videos christopher Documentation 46 12-03-2007 03:06 AM


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



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