Forex
Google

Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4
Forex Forum FAQ Members List Calendar Mark Forums Read


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

 
 
LinkBack (10) Thread Tools
  10 links from elsewhere to this Post. Click to view.
Old 08-26-2007, 04:56 PM
zeppelin's Avatar
zeppelin zeppelin is offline
Junior Member
 
Join Date: Jun 2006
Posts: 8
zeppelin is on a distinguished road
Thumbs up Need Help To Edit This Great EA

Hi, I know there are a lot of EA's master here. My EA cannot run the Trailing Stop, if, Trailing Stop > Breakeven..? Somebody help me please, to activate the Trailing Stop eventhough Trailing Stop is bigger than Breakeven.... Thx a lot.

NB: This EA got it's best on GBPUSD, H1.
Attached Files
File Type: mq4 ZepBeta-TS160.mq4 (9.3 KB, 318 views)

Last edited by zeppelin : 08-26-2007 at 05:02 PM. Reason: i forgot to upload the EA
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-26-2007, 05:47 PM
BrunoFX's Avatar
BrunoFX BrunoFX is offline
Senior Member
 
Join Date: Sep 2005
Posts: 810
BrunoFX will become famous soon enough
Hello zeppelin,
where did you find this ea, please ?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-26-2007, 07:55 PM
ElectricSavant's Avatar
ElectricSavant ElectricSavant is offline
Senior Member
 
Join Date: Jun 2007
Posts: 2,375
ElectricSavant is on a distinguished road
zeppelin Good Trading to you and I hope you find what you are looking for...keep on keepin' on

I have bookmarked this thread to see how it develops...

ES
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-26-2007, 09:37 PM
ppplaci ppplaci is offline
Junior Member
 
Join Date: Nov 2006
Location: UK
Posts: 11
ppplaci is on a distinguished road
Post

Quote:
Originally Posted by zeppelin View Post
Hi, I know there are a lot of EA's master here. My EA cannot run the Trailing Stop, if, Trailing Stop > Breakeven..? Somebody help me please, to activate the Trailing Stop eventhough Trailing Stop is bigger than Breakeven.... Thx a lot.

NB: This EA got it's best on GBPUSD, H1.
Hi Zep

Are you talking about trailing before it hits the BE level?
I am far from a pro, but for me this code means,that once if it had reached the Breakeven-setting profit level...and is above it... it will always set the stoploss level 0 (same as the open price), so it overrides the trailing...(???)
or am I wrong?

if ( BreakEven > 0 && Bid-OrderOpenPrice()>Point*BreakEven ) BuyStop = OrderOpenPrice();
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-27-2007, 05:30 AM
ralph.ronnquist's Avatar
ralph.ronnquist ralph.ronnquist is offline
Senior Member
 
Join Date: Oct 2006
Posts: 280
ralph.ronnquist is on a distinguished road
Maybe change that line to use
PHP Code:
buystop MathMaxbuystopOrderOpenPrice() ); 
in the "then" clause... and a corresponding MathMin at line 92...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-27-2007, 06:46 AM
luxinterior luxinterior is offline
Senior Member
 
Join Date: Nov 2006
Posts: 123
luxinterior is on a distinguished road
You've got the 'TrailingStop' variable set to ZERO which means it won't trigger! Try setting it to something else...

Lux
__________________
Build An Expert Advisor. FREE E-course As Seen On TV
ForexArea.com
Users of Gap Trader from 'Forex-Assistant' MUST Read This
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-27-2007, 09:17 AM
zeppelin's Avatar
zeppelin zeppelin is offline
Junior Member
 
Join Date: Jun 2006
Posts: 8
zeppelin is on a distinguished road
Quote:
Originally Posted by BrunoFX View Post
Hello zeppelin,
where did you find this ea, please ?
Hi, BrunoFX, this ea is 100% based on my idea through my trading experience. Because i'm the dummies of programming, so i just can 'copy-paste' from many different source to create this ea. This source code I found in Indonesian forum, many of them was written by Igorad, a forex-tsd member too. This EA is the very first version of ZepBeta.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-27-2007, 09:39 AM
zeppelin's Avatar
zeppelin zeppelin is offline
Junior Member
 
Join Date: Jun 2006
Posts: 8
zeppelin is on a distinguished road
Quote:
Originally Posted by ElectricSavant View Post
zeppelin Good Trading to you and I hope you find what you are looking for...keep on keepin' on

I have bookmarked this thread to see how it develops...

ES
Thanks for the support, ElectricSavant!
This EA is ready to run in live account. i'm floating +300 pips right now. BUT, the problem is, u must trailing the stop loss 160 pips manually .
So, any master, please edit it for us.. thank u!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-27-2007, 09:51 AM
zeppelin's Avatar
zeppelin zeppelin is offline
Junior Member
 
Join Date: Jun 2006
Posts: 8
zeppelin is on a distinguished road
Quote:
Originally Posted by luxinterior View Post
You've got the 'TrailingStop' variable set to ZERO which means it won't trigger! Try setting it to something else...

Lux
Hi, LUxinterior, i set the TrailingStop to ZERO because it was disfunction. The TS i want to set is 160 pips, but it does not work. so i set it to ZERO.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 
Old 08-27-2007, 09:55 AM
zeppelin's Avatar
zeppelin zeppelin is offline
Junior Member
 
Join Date: Jun 2006
Posts: 8
zeppelin is on a distinguished road
Quote:
Originally Posted by ppplaci View Post
Hi Zep

Are you talking about trailing before it hits the BE level?
I am far from a pro, but for me this code means,that once if it had reached the Breakeven-setting profit level...and is above it... it will always set the stoploss level 0 (same as the open price), so it overrides the trailing...(???)
or am I wrong?

if ( BreakEven > 0 && Bid-OrderOpenPrice()>Point*BreakEven ) BuyStop = OrderOpenPrice();
Hi, ppplaci, i mean is, if the trailing hits after BE level. thx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
 

Thread Tools

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

vB 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/expert-advisors-metatrader-4/9312-need-help-edit-great-ea.html
Posted By For Type Date
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 04-08-2008 01:53 PM
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 01-10-2008 02:48 PM
Bright Ideas » Blog Archive » Greetings This thread Refback 11-05-2007 03:50 PM
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 11-03-2007 07:04 AM
Bright Ideas This thread Refback 10-08-2007 01:32 AM
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 10-05-2007 02:44 PM
Bright Ideas This thread Refback 09-26-2007 02:40 AM
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 09-12-2007 09:27 PM
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 09-11-2007 11:13 PM
GoldenMoneyTree.com :: View topic - SIBKIS system This thread Refback 09-11-2007 08:06 PM

Similar Threads
Thread Thread Starter Forum Replies Last Post
great sys swall Suggestions for Trading Systems 2 08-13-2006 03:35 PM
How to edit ex4 file Fisher Indicators - Metatrader 4 2 08-09-2006 11:30 AM
cant find the edit button Duke Nukem General Discussion 9 12-09-2005 08:24 AM


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