#11 (permalink)  
Old 06-30-2005, 03:40 PM
Belzebut's Avatar
Sophomore
 
Join Date: Jun 2005
Posts: 40
Thanks: 0
Thanked 0 Times in 0 Posts
Belzebut is a jewel in the roughBelzebut is a jewel in the roughBelzebut is a jewel in the roughBelzebut is a jewel in the rough
Send a message via MSN to Belzebut
Default

TraderSeven,

I'm sorry but i deleted my system, so i can't post the equity curve

But i search in other ways, and i want to wait a little to tell you all guys, when the system will be more profitable (i'm waiting the customs indicators support )
Reply With Quote
  #12 (permalink)  
Old 06-30-2005, 03:55 PM
TraderSeven's Avatar
Sophomore
 
Join Date: Jun 2005
Posts: 86
Thanks: 0
Thanked 1 Time in 1 Post
TraderSeven is a glorious beacon of lightTraderSeven is a glorious beacon of lightTraderSeven is a glorious beacon of lightTraderSeven is a glorious beacon of lightTraderSeven is a glorious beacon of light
Default

Deleted? That's evil. You must be the devil himself

But you answered my question very well actually....
If someone deletes a system it's mostlikely not performing very well.
Or did you delete the holy grail?
__________________
If your system fails just swap long & short :whistling
Reply With Quote
  #13 (permalink)  
Old 07-01-2005, 09:55 AM
Belzebut's Avatar
Sophomore
 
Join Date: Jun 2005
Posts: 40
Thanks: 0
Thanked 0 Times in 0 Posts
Belzebut is a jewel in the roughBelzebut is a jewel in the roughBelzebut is a jewel in the roughBelzebut is a jewel in the rough
Send a message via MSN to Belzebut
Default

AH AH, I hope i didn't delete the holy grail, but with the rules i described at the beginning of this topic, it is easy to create one more time, doesn't it ?
Reply With Quote
How to code for Price just crosses Not Closes
  #14 (permalink)  
Old 07-19-2005, 03:12 AM
Freshman
 
Join Date: Jun 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
rosstodd is on a distinguished road
Default How to code for Price just crosses Not Closes

Quote:
Originally Posted by scorpion
Ok, below code is to Buy when bid price closes above MA(1) and Close the position when bid price closes below MA(1).

Note that I use "Volume < 10" to check for a new candle.
How do you code for Price just crosses (Not Closes) EMA by an adjustable number of pips - for example I want to enter the Long if price/candle/bar goes above EMA by 5 pips and Short if price/candle/bar crosses below EMA?
Reply With Quote
  #15 (permalink)  
Old 07-19-2005, 03:41 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

rosstodd, first setup the logics as normal.

Check for price crosses up EMA (x) (To be put in BUY logics)
PriceBid <= EMA (x) Previous
PriceBid > EMA (x) Current

Check for price crosses down EMA (x) (To be put in SELL logics)
PriceBid >= EMA (x) Previous
PriceBid < EMA (x) Current

Second, compile to mql.
Third, make a little hack in the mql to create an adjustable pips filter. See http://www.fxfisherman.com/forums/showthread.php?t=158

That's it! hope this help.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.

Last edited by scorpion : 07-19-2005 at 03:43 AM.
Reply With Quote
Thank you for your help! I'll give it a try...
  #16 (permalink)  
Old 07-19-2005, 04:47 AM
Freshman
 
Join Date: Jun 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
rosstodd is on a distinguished road
Default Thank you for your help! I'll give it a try...

Thank you for your help! I'll give it a try...
Do I just type this into the first logics space (this is not an option to select)
Check for price crosses up EMA (x)

Sorry about the simple minded questions.

Another question I have is re: the MACD you have in your demo
I want to have a buy when it crosses above the 0 line - and sell when it crosses below - Is this what is accomplished in the demo?

Thanks again for your help...
ross


[quote=scorpion]rosstodd, first setup the logics as normal.

Check for price crosses up EMA (x) (To be put in BUY logics)
PriceBid <= EMA (x) Previous
PriceBid > EMA (x) Current

Check for price crosses down EMA (x) (To be put in SELL logics)
PriceBid >= EMA (x) Previous
PriceBid < EMA (x) Current

Second, compile to mql.
Third, make a little hack in the mql to create an adjustable pips filter. See http://www.fxfisherman.com/forums/showthread.php?t=158

That's it! hope this help.[/

QUOTE]
Reply With Quote
  #17 (permalink)  
Old 07-19-2005, 04:59 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Quote:
Do I just type this into the first logics space (this is not an option to select)
Check for price crosses up EMA (x)
You don't need to put this line. I just want explain you what the two following logics are for what.

Quote:
Another question I have is re: the MACD you have in your demo
I want to have a buy when it crosses above the 0 line - and sell when it crosses below - Is this what is accomplished in the demo?
If you refer to MACD Histogram then:

MACD Histrogram (x) Previous <= 0
MACD Histogram (x) Current > 0


"MACD Histrogram (x) Previous <= 0" means if macd histogram in previous candle is equal or below 0. "MACD Histogram (x) Current > 0" means if macd histogram is above 0 now. These two logics to create a crossover checking.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
  #18 (permalink)  
Old 07-19-2005, 05:03 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Remember a logic must contain at lease one comparison sign > < <= >= = !=

If there is no comparision sign, it is not a logic.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
Thanks again!
  #19 (permalink)  
Old 07-19-2005, 05:50 AM
Freshman
 
Join Date: Jun 2005
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
rosstodd is on a distinguished road
Default Thanks again!

You have a great system - I really appreciate your help.
I Tried to make a simple EA that just buys when price crosses EMA (x) and sells when crosses EMA (x)
Just to see if it would work and add the other criteria later.
I put it on a chart and tried the strategy tester but it made no trades - any suggestions?
Buy Logics:
AND PriceBid <= MA(1) Previous
AND PriceBid > MA (1) Current

Sell Logics:
AND PriceBid >= MA (2) Previous
AND PriceBid < MA (2) Current


Quote:
Originally Posted by scorpion
Remember a logic must contain at lease one comparison sign > < <= >= = !=

If there is no comparision sign, it is not a logic.
Reply With Quote
  #20 (permalink)  
Old 07-19-2005, 08:34 AM
scorpion's Avatar
Administrator
 
Join Date: Aug 2004
Posts: 1,992
Thanks: 125
Thanked 383 Times in 152 Posts
scorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to beholdscorpion is a splendid one to behold
Send a message via MSN to scorpion Send a message via Yahoo to scorpion
Default

Try run it in real time. Don't trust the backtester on this it might be because the MT3 backtester has PriceBid bug.
__________________
Make easy pips with the Advanced Economic Calendar for Forex Trading.
Reply With Quote
Reply


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Download ZeroCode Beta 1 scorpion MetaTrader and ZeroCode 18 10-28-2008 07:12 PM
Trading E-Books Download jgrimney Tutorials, Tips & Tricks 47 09-18-2008 09:19 AM
Zero code beta 2 suggestions Belzebut MetaTrader and ZeroCode 0 06-12-2005 10:40 AM


All times are GMT. The time now is 11:45 PM.
Powered by vBulletin Version 3.6.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0

Registered members have access to special online forex currency trading tools, software, mt4 expert advisors and indicators. Register now

Main Menu

Economic Forecast