Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Phoenix


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 (39) Thread Tools Display Modes
  #501 (permalink)  
Old 11-05-2006, 11:28 AM
wilson1668's Avatar
Member
 
Join Date: Nov 2006
Location: Hong Kong
Posts: 65
wilson1668 is on a distinguished road
Question

Hi there,

Today, I conduct some 3 months backtests for EURJPY and play around with the MaximumRisk, DecreaseFactor and the MM.

With the MM=true, adjusting the DecreaseFactor will have a little change in the result but the number of consecutive loss doesn't. Can anyone tell the actual function of this DecreaseFactor?

Best Wishes!!
Attached Files
File Type: htm EURJPY_Mode3_1.htm (72.9 KB, 159 views)
File Type: htm EURJPY_Mode3_2.htm (72.9 KB, 77 views)
File Type: htm EURJPY_Mode3_4.htm (73.1 KB, 60 views)
File Type: htm EURJPY_Mode3_5.htm (73.1 KB, 86 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #502 (permalink)  
Old 11-05-2006, 12:57 PM
Hendrick's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 501
Hendrick is on a distinguished road
Updates Phoenix 5

An updated version of Phoenix 5 (version 5.6.02).
- we now have the follwing pairs: USDJPY, EURJPY, GBPJPY, USDCHF, GBPUSD.
- to avoid mistakes in choosing the right mode, there is now only one parameter for this : PhoenixMode. Classic mode=1, SencondTrade mode=2 and 123 mode=3 (thanks Herbert).
- MicroAccount was still not working. Changed the code as suggested by lgvh.

Manual for Phoenix is updated.
Attached Files
File Type: mq4 Phoenix_EA_v5_6_02.mq4 (33.6 KB, 335 views)
File Type: pdf The Ultimate Guide for Phoenix v2.pdf (518.8 KB, 379 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #503 (permalink)  
Old 11-05-2006, 12:57 PM
saltcafe's Avatar
Member
 
Join Date: Sep 2006
Posts: 34
saltcafe is on a distinguished road
Quote:
Originally Posted by Hendrick
Quote:
Originally Posted by HerbertH
Hendrick,

May I suggest to have the code changed to set Phoenixmode=1, 2 or 3 instead of the 3 booleans for mode switching, which can be set to true at the same time by accident or without knowing?

Regards
Great idea Herbert! Thanks.
I was actually thinking of taking advantage of this "feature" and run them in combination to see how they would perform. Just for curiosities sake ;-)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #504 (permalink)  
Old 11-05-2006, 12:58 PM
saltcafe's Avatar
Member
 
Join Date: Sep 2006
Posts: 34
saltcafe is on a distinguished road
Quote:
Originally Posted by wilson1668
If you go to have a look of the trading platform's directly, (fxdd-metatrader)\config\***.srv, you may see 2 *.srv files, one is *-live.srv and the other is *-demo.srv. Therefore, it is hard to say the datafeed for the Live & Demo are the same.

Of course, many other brokers do the same.
I just have to take their word for it. Once I open my account there then I'll be able to really validate their claims.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #505 (permalink)  
Old 11-05-2006, 01:07 PM
saltcafe's Avatar
Member
 
Join Date: Sep 2006
Posts: 34
saltcafe is on a distinguished road
Question Clarification

Quote:
Originally Posted by Hendrick
Fikko,

I'm not sure what you mean with "Phoenix may open 5 trades for 1 currency". If that's the case then I think you have more than 1 Mode set as True. You have to set only one of the three modes set as True.
I'm not quite sure if the "5 trades per currency" is valid, but I guess one of the reasons why I brought up the MM side of things is that "ideally" I'd like the Risk parameter to represent my potential for loss on one signal (wheatver it be 1 trade or 2 or 3 trades).

So for example in mode 1 if we have a signal and a setting of Risk of 1%, to me that would mean that I can loose at most 1% of my account value on this particular signal.

Another example, in mode 2 where there may be two trades as a result of the one signal, then most likelly it would be preferable to split the 1% into 2 parts and risk each part on each trade. (though this is a bit slippery in this case since if I'm not mistaken the second trade doesn't come into play untill the first trade is set at BE and in profit already)

Hopefully I'm not confusing things here, but that was my intention initially.

What do you guys think about it?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #506 (permalink)  
Old 11-05-2006, 03:38 PM
Junior Member
 
Join Date: Oct 2005
Location: Costa Rica
Posts: 5
lgvh is on a distinguished road
Cool

Quote:
Originally Posted by Hendrick
An updated version of Phoenix 5 (version 5.6.02).

- MicroAccount was still not working. Changed the code as suggested by lgvh.

Manual for Phoenix is updated.
The modifications I suggest had been tested with the competition version, now I review in full the new code, here follows the necesary modifications for thes new version:

1- There is some compatibility problem with the variable name "MicroAccount" with the compiler, I rename it to "Micro_Account" (must be done in all code)

2- In addition to the original sugested corrections it is necesary to change
int CheckOpenTradeMode123()
{
int Signal = 0, err = 0, total = OrdersTotal();
double lots123 = NormalizeDouble(LotsOptimized()/3,1);
if(lots123 < 0.1) {lots123=0.1;}
to
int CheckOpenTradeMode123()
{
int Signal = 0, err = 0, total = OrdersTotal();
double lots123 = NormalizeDouble(LotsOptimized()/3,1);
if(lots123 < 0.1 && Micro_Account==false) {lots123=0.1;}
if(lots123 < 0.01 && Micro_Account==true) {lots123=0.01;}
Now tested with Real Trader (Metatrader from www.RealTrader.lv)

I'm sorry to post the corrections without test the new version , I just saw the LotsOptimized() function that was the same (with the exception of the change of the variable name AccountIsMicro) and I posted in a hurry the code that worked for the previous version. Excuse my English, hope you understand
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #507 (permalink)  
Old 11-05-2006, 03:44 PM
Hendrick's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 501
Hendrick is on a distinguished road
Quote:
Originally Posted by lgvh
The modifications I suggest had been tested with the competition version, now I review in full the new code, here follows the necesary modifications for thes new version:

1- There is some compatibility problem with the variable name "MicroAccount" with the compiler, I rename it to "Micro_Account" (must be done in all code)
What was exactly the compatibility problem with the variable "MicroAccount"?

Thanks for your contribution!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #508 (permalink)  
Old 11-05-2006, 03:51 PM
Senior Member
 
Join Date: May 2006
Posts: 163
fikko is on a distinguished road
Quote:
Originally Posted by Hendrick
Fikko,

I'm not sure what you mean with "Phoenix may open 5 trades for 1 currency". If that's the case then I think you have more than 1 Mode set as True. You have to set only one of the three modes set as True.
Yes Hendrick,

It is true that Phoenix 5 can open up to 5 trades at once, if we switched on all the modes. But I guess it is not tested yet (?)

However I like when seeing combination of the modes, compare to combination of the currency pair. Seeing your success trade on championship, I think better to concentrate on USDJPY rather than concentrating on other pairs.

See this result? it is an amizing Phonex 5, can turn $1000 to $1 million within 6 months of trade. I am using mode 1 and mode 3.

The risk is 0.3, using 2 modes it will consume 60% of the free margin.

It is very great in backtest, but Let's see how it perform in forward test.
Attached Images
File Type: gif StrategyTester USDJPY Maximum.gif (6.5 KB, 203 views)
Attached Files
File Type: htm StrategyTester USDJPY Maximum.htm (640.0 KB, 164 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #509 (permalink)  
Old 11-05-2006, 03:57 PM
Hendrick's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 501
Hendrick is on a distinguished road
Smile

Quote:
Originally Posted by fikko
Yes Hendrick,

It is true that Phoenix 5 can open up to 5 trades at once, if we switched on all the modes. But I guess it is not tested yet (?)

However I like when seeing combination of the modes, compare to combination of the currency pair. Seeing your success trade on championship, I think better to concentrate on USDJPY rather than concentrating on other pairs.

See this result? it is an amizing Phonex 5, can turn $1000 to $1 million within 6 months of trade. I am using mode 1 and mode 3.

The risk is 0.3, using 2 modes it will consume 60% of the free margin.

It is very great in backtest, but Let's see how it perform in forward test.
Well Fikko. So you've just discovered how to become a millionaire in 6 months with Phoenix. Thought I could keep this a secret for myself .

Problem is, I just changed the code in version 5.6.02 to prevent this. So what should I do? Change it back to the old settings or what? Anyone?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #510 (permalink)  
Old 11-05-2006, 04:00 PM
Senior Member
 
Join Date: Sep 2006
Location: Slovenia
Posts: 114
SloForeX is on a distinguished road
make another mode that will use all 3 modes at the same time or something, if this is trully useful.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

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/phoenix/4012-phoenix-2007-new-thread.html
Posted By For Type Date
TSDのフォーラムへのリンク | 1万円から目指す原資回復 This thread Refback 02-20-2008 03:47 PM
Diskuzn frum Financnik.cz :: Se Sidem o Forexu :: MetaTrader 4 This thread Refback 02-07-2008 01:05 PM
forexinvestimentos.com :: Verificar tpico - Phoenix 2007 This thread Refback 02-05-2008 01:06 PM
Phoenix 2007 (new thread) - Page 44 This thread Refback 01-30-2008 07:38 AM
夏将 << axhc123議利大辺茄斜 << 挫利叔利大辺茄斜 This thread Refback 01-25-2008 02:22 AM
Campeonato de experts Metatrader 2006 This thread Refback 12-27-2007 04:51 AM
Phoenix 2007 This thread Refback 12-14-2007 09:43 AM
Phoenix 2007 (new thread) - Page 45 This thread Refback 12-07-2007 11:44 PM
Phoenix 2007 This thread Refback 11-27-2007 04:02 PM
Phoenix 2007 (new thread) - Page 59 This thread Refback 11-19-2007 12:25 AM
Forum De l'or en barre, impressionant !! sur Daily-Bourse.fr This thread Refback 11-13-2007 06:42 PM
仂于仂亳 - Automated Trading Championship 2006 This thread Refback 11-10-2007 04:26 PM
forexinvestimentos.com :: Verificar tpico - Phoenix 2007 This thread Refback 11-06-2007 12:18 PM
Phoenix 2007 This thread Refback 11-04-2007 12:29 PM
zykem's bookmarks tagged with This thread Refback 11-01-2007 08:44 AM
Phoenix 2007 (new thread) - Forex Trading << 挫利叔利大辺茄斜 This thread Refback 10-26-2007 03:04 AM
Phoenix 2007 This thread Refback 10-16-2007 11:03 AM
Profile Hendrick - Automated Trading Championship 2006 This thread Refback 10-05-2007 04:41 PM
Diskuzn frum Financnik.cz :: Se Sidem o Forexu :: MetaTrader 4 This thread Refback 09-29-2007 09:02 AM
仂亳仍 Hendrick - Automated Trading Championship 2006 This thread Refback 09-21-2007 03:45 PM
Phoenix 2007 (new thread) - Page 59 This thread Refback 09-17-2007 08:02 PM
Phoenix 2007 This thread Refback 09-11-2007 08:17 AM
forexinvestimentos.com :: Verificar tpico - Phoenix 2007 This thread Refback 09-07-2007 06:37 AM
forexinvestimentos.com :: Verificar tpico - Phoenix 2007 This thread Refback 08-15-2007 10:21 AM
forexinvestimentos.com :: Verificar tpico - Campeonato de experts Metatrader 2006 This thread Refback 07-24-2007 04:08 PM
Interview with Alexander Egorov (Aver) - Automated Trading Championship 2006 This thread Refback 07-23-2007 07:50 AM
Profile Hendrick - Automated Trading Championship 2006 This thread Refback 07-22-2007 01:56 AM
仂亳仍 Hendrick - Automated Trading Championship 2006 This thread Refback 07-19-2007 04:40 AM
仂亳仍 Hendrick - Automated Trading Championship 2006 This thread Refback 07-19-2007 04:39 AM
Profile Hendrick - Automated Trading Championship 2006 This thread Refback 07-18-2007 04:15 PM
Interview with Alexander Egorov (Aver) - Automated Trading Championship 2006 This thread Refback 07-17-2007 07:40 PM
Profile Hendrick - Automated Trading Championship 2006 This thread Refback 07-16-2007 07:59 AM
Profile Hendrick - Automated Trading Championship 2006 This thread Refback 07-14-2007 12:32 AM