Forex
Google

Go Back   Forex Trading > Trading systems > Phoenix
Forex Forum Register FAQ Members List Calendar Today's Posts


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 Thread Tools Display Modes
  #1 (permalink)  
Old 03-14-2007, 04:11 AM
daraknor's Avatar
daraknor daraknor is offline
Senior Member
 
Join Date: Oct 2006
Location: Portland, OR USA
Posts: 996
daraknor is on a distinguished road
Phoenix 6 Expert vs Simple

We have a lot of great ideas expressed on this forum. The great ideas turn into code and settings, offering more and more options to users. So many options, most are simply turned off by how much information is present and how confusing the system appears.

Phoenix has a lot of ideas that have turned to settings. Some people like them and some people don't. Phoenix 6 is built around a very extensible code base, with lots of places to insert other more complex strategies present in some commercial EA. Many of these code extensions aren't really useful for Phoenix, and I plan to trim them out. (Phoenix doesn't use any pending trades for example.)

A simple EA lacks the features that many experts desire. I want things like delayed trailing stops and delayed protection of winning trades. Months ago, I made a post about creating an EA that only did one thing: manage exit strategies. I'd like to incorporate many useful aspects of that design into Phoenix 6 over time. In Phoenix 5, the exit logic was married to magic numbers and modes. In Phoenix 6, I'm separating them clearly but still keeping magic number tracking. In Phoenix 5, we really lacked the ability to monitor what was going on. In Phoenix 6, we have signal debugging separate from code debugging (for programmers vs optimizers). All of these options create a formidable wall to new users.

Phoenix in the contest brought many people over to the idea that automated trading could be viable. Phoenix as an experts system is a horrible way to introduce it. Phoenix as a simple system doesn't meet my needs, and I imagine many others as well.

Here is my proposal: fork development into two versions. A simple system has only a single trade, only the most basic common exit strategies, but full signal use. (If nothing else, a fast and lightweight EA useful for signal optimization.) The expert system would use the complete template, but not all possible functions are programmed at release. Settings similar to mode 3 will be available, multiple simultaneous trades, confirmation signals to adjust lot size based on signal data, etc.

Both expert and simple systems will come with optimized by default settings for a single currency. PhoenixSimple would be mostly compatible with PhoenixExpert for settings, but Expert would have more settings available. We should have tools to convert between one and the other, but performance will be different with some expert settings (changing the exit definitely changes the performance).

I have been thinking of "how do I satisfy as many users as possible?" and I think this is the best way. I'm interested in any and all reactions to this separation. I welcome flames and constructive suggestions.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 03-14-2007, 11:27 AM
daraknor's Avatar
daraknor daraknor is offline
Senior Member
 
Join Date: Oct 2006
Location: Portland, OR USA
Posts: 996
daraknor is on a distinguished road
Here is an early alpha. Most of the neat features are still "TODO", and there are many TODO comments in the file. Right now it is very similar to Phoenix 5.7 but done in the new style. It still has a lot of extra unused stuff inside it slowing the EA down as well. After I add a few more indicators I'll gut it to make a much faster "Phoenix 6 Simple" as a beta version.

One reason to use this file is to learn how Phoenix signals work, and look at all of the debugging signal information. Don't have debug turned on with backtest, 1 month of data = 10MB or so. 1000 test on 3 months data would be about 30G of data.
Attached Files
File Type: mq4 Phoenix6 ALPHA.mq4 (21.6 KB, 281 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 03-14-2007, 01:38 PM
autumnleaves autumnleaves is offline
Senior Member
 
Join Date: Nov 2006
Posts: 275
autumnleaves is on a distinguished road
Extra Signal for Phoenix

I would like to add extra signals from EASY (see Malone EASY document) to Phoenix. When I try to add the Price Action Channel, the result is exclusively sell transactions. Can you suggest why this might be happening? See the code below.

Perhaps these signals could be included in Phoenix 6.

bool BuySignal6=false, SellSignal6=false;

double HighPAC1 = iMA(NULL,0,P_PACPer,P_PACShift,MODE_SMMA,PRICE_HIG H,0);
double LowPAC1 = iMA(NULL,0,P_PACPer,P_PACShift,MODE_SMMA,PRICE_LOW ,0);
double haClose1 = (PRICE_OPEN + PRICE_HIGH + PRICE_LOW + PRICE_CLOSE)*(0.25);

if(U_UseSig6)
{
if(haClose1 > HighPAC1) {BuySignal6 = true;}
if(haClose1 < LowPAC1) {SellSignal6 = true;}
}
else
{
SellSignal6=true;
BuySignal6 =true;
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-14-2007, 01:44 PM
bertbin bertbin is offline
Senior Member
 
Join Date: Oct 2006
Location: Margarita Island - Venezuela
Posts: 315
bertbin is on a distinguished road
Another "hat off " to you Darak
I suggest that you, we have to "organize" the test of P6. And strongly organized like
- 10 guys
- 1 brooker
- same settings for one week to see eventual bugs
- TF 15
-24/24, 5/5
- full auto, no touch
One guy staying on P570 to compare trades...
Any "irregularities" reported immediatly to you (wth all sttuf : reports, alert, etc...)
At beginning If everybody goes everywhere with no rules it will be very, very, confusing..
After one week (or more) ok guys : test what you want to test but note precsily what you have done...


I am here waiting instructions...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 03-14-2007, 01:56 PM
autumnleaves autumnleaves is offline
Senior Member
 
Join Date: Nov 2006
Posts: 275
autumnleaves is on a distinguished road
Structured testing

Great Idea Bert. I suggest that you organize the testing campaign. I and my friends can run 5 or 6 brokers.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 03-14-2007, 03:17 PM
wujun122 wujun122 is offline
Member
 
Join Date: Jan 2007
Posts: 55
wujun122 is on a distinguished road
Daraknor,I will forward test Phoenix 6 Alpha.Oh,I saw the code:extern string U_Trade_CURRENCY = "USDCHF".Could I change it to "USDCHFm"?The reason is that now I forward test Phoenix 5.7.2a in a IBFX Demo mini account,and want to test Phoenix 6 in this account.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-14-2007, 03:25 PM
bertbin bertbin is offline
Senior Member
 
Join Date: Oct 2006
Location: Margarita Island - Venezuela
Posts: 315
bertbin is on a distinguished road
Quote:
Originally Posted by autumnleaves
Great Idea Bert. I suggest that you organize the testing campaign. I and my friends can run 5 or 6 brokers.
Thks Autunm
Let's see what Darak want to do...
If we want a strong and valuable test, we need to have strong rules
Then XX guys have to agree that we are not here to make pips (or loose them) but to improve a new motor = we don't care about speed but about parameters to at least... increase speed ... = pips
a/ First part : test P6Alpha during x weeks to see stability, bugs etc...
b/ Second part : after these first week(s) : open fields but with rules : X guy(s) testing one setting, Y guy(s) testing another one and so on...
To see methodically where we can go...
c/ Z guy(s) do some backstesting with good data base (alpari ? FXDD ?) You ?
d/ All info have to go back to Darak (or Pcountour if he want)

After opinion of Darak, ten (or more) have to show up to be "Official Testers (Hu ! Hu !) and fully agree with that rules. Perhaps Darak and/or other people have any ideas ?

For my part I don't care to be the "trailing guy" on P570 to be the "base"

Last edited by bertbin : 03-14-2007 at 03:28 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 03-14-2007, 03:37 PM
alamanjani's Avatar
alamanjani alamanjani is offline
Senior Member
 
Join Date: Nov 2006
Location: USA WY & EU Slo
Posts: 144
alamanjani is on a distinguished road
Quote:
Originally Posted by daraknor
Here is an early alpha.
Here is probably typo, should be 'case 240:', right?

case 2400:
W_Trade_PERIOD="H4";
break;

As of Simple Phoenix - I think this is excellent idea!

I had a problem trying to find better settings on latest versions. Probably too much parameters and not enough experience.

Modifying simple Phoenix will mean, modifying signals only. Great! Signals should be the most important and main focus with combination of one trade (mode1). Simple and clean! Also optimization process will be faster. Cool!

Once we have signals optimized, some more experienced can play with advanced settings and fine tune it further.

I'm sure this way will allow us, less experienced to again participate with optimization process. Great!

About alfa, quick question, is it OK, that can't be attached to the chart (stays gray)? Compiling shows no errors.

I like Authumleaves idea, to see the signals and buy/sell points if this is possible.

I also agree with Bertbin.

Mario

Last edited by alamanjani : 03-14-2007 at 03:58 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 03-14-2007, 07:03 PM
daraknor's Avatar
daraknor daraknor is offline
Senior Member
 
Join Date: Oct 2006
Location: Portland, OR USA
Posts: 996
daraknor is on a distinguished road
Quote:
Originally Posted by wujun122
Daraknor,I will forward test Phoenix 6 Alpha.Oh,I saw the code:extern string U_Trade_CURRENCY = "USDCHF".Could I change it to "USDCHFm"?The reason is that now I forward test Phoenix 5.7.2a in a IBFX Demo mini account,and want to test Phoenix 6 in this account.
It is just a string, you can change it to anything, including GOLD or IBM. The reason I made this string and check is so we know what currency and timeframe settings are created for. If someone wants to use nonstandard timeframe and currency, it probably won't work so we toss up an error. To fix the error, change the settings to your current values. I think I report "current values" to make that easier, but I just woke up. Late night debug sessions kill my sleep schedule. *yawn*

Edit: now that I'm awake, I realized the intent of the question better. Next version (release time later today) should treat USDCHF and USDCHFm the same.

Last edited by daraknor : 03-14-2007 at 08:06 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 03-14-2007, 07:09 PM
ejlamarque ejlamarque is offline
Junior Member
 
Join Date: Oct 2006
Posts: 12
ejlamarque is on a distinguished road
I am waiting for intruction too...
this is the "WAY", one team, one thing.
Thank you Daka for a lot and sorry for so less.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Phoenix - Development+Suggestions - MQ4 in Post#1 daraknor Phoenix 421 04-17-2008 10:29 AM
Phoenix 2007 (new thread) Hendrick Phoenix 1326 03-27-2008 10:34 PM
Phoenix is here! Hendrick Phoenix 374 02-06-2008 03:26 PM
Phoenix optimization Prankie Phoenix 173 10-17-2007 07:24 AM
Expert Advisor Upgrader - Turn Simple Into Superb Scorpion Tools and utilities 7 04-13-2007 01:01 AM


All times are GMT. The time now is 04:49 PM.