Forex



Go Back   Forex Trading > Trading systems > Phoenix
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
  #41 (permalink)  
Old 11-21-2006, 03:05 AM
Junior Member
 
Join Date: Sep 2006
Posts: 18
corner_h is on a distinguished road
FXDD data

Quote:
Originally Posted by daraknor
Thank you very much Georgiy. FXDD was recommended to me, but I was skeptical. If you have both demo and live data feeds (recorded not downloaded) I would greatly appreciate them. I would like to compare live vs real for FXDD especially and see how different the two data feeds are.

Would you mind sharing your full trading history? I would like to evaluate it. You can PM if you don't feel like posting.
sorry, this is off topic...
I was looking at datafeeds for live and demo and this what I found..

Just quick look shows very much a difference here!!??

I has opened live account but this examination of data difference
probably has to be a concern to run EA
So I am still thinking what to do..
Attached Images
File Type: jpg REAL DEMO FXDD.JPG (129.3 KB, 589 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
  #42 (permalink)  
Old 11-21-2006, 03:41 AM
Junior Member
 
Join Date: Sep 2006
Posts: 18
corner_h is on a distinguished road
ALPARI UK DEMOvs REAL

Here is comparison of ALPARI UK real vs demo data
I just opened real account and looking at the data feeds visually.
This one is at least looks more alike
Attached Images
File Type: jpg REAL DEMO ALPARI UK.JPG (149.1 KB, 475 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
  #43 (permalink)  
Old 11-21-2006, 07:19 AM
Member
 
Join Date: Jan 2006
Posts: 70
ericbach is on a distinguished road
Quote:
Originally Posted by daraknor
As post 34 says, we are still working on settings for EURUSD. You are welcome to work on CFD/Gold settings and contribute them!
The settings below look pretty clean on 30min Euro/usd chart.
Still not sure what the TP or SL values should be.

Lots = 1;
extern double MaximumRisk = 0.05;
extern double DecreaseFactor = 3;
extern bool PrefSettings = true;
extern bool MM = false;
extern bool AccountIsMicro = false;

extern int TakeProfit = 10;
extern int StopLoss = 10;
extern int TrailingStop = 0;
extern int SMAPeriod = 11;
extern int SMA2Bars = 50;

extern double Percent = 0.001;
extern int EnvelopePeriod = 20;

extern int OSMAFast = 8;
extern int OSMASlow = 40;
extern double OSMASignal = 10;

extern int TradeFrom1 = 0;
extern int TradeUntil1 = 24;
extern int TradeFrom2 = 0;
extern int TradeUntil2 = 0;
extern int TradeFrom3 = 0;
extern int TradeUntil3 = 0;
extern int TradeFrom4 = 0;
extern int TradeUntil4 = 0;

extern int Fast_Period = 4;
extern int Fast_Price = PRICE_OPEN;
extern int Slow_Period = 15;
extern int Slow_Price = PRICE_OPEN;
extern double DVBuySell = 0.0003;
extern double DVStayOut = 0.006;
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
  #44 (permalink)  
Old 11-21-2006, 10:03 PM
daraknor's Avatar
Senior Member
 
Join Date: Oct 2006
Location: Portland, OR USA
Posts: 996
daraknor is on a distinguished road
Quote:
Originally Posted by corner_h
Here is comparison of ALPARI UK real vs demo data
I just opened real account and looking at the data feeds visually.
This one is at least looks more alike
It looks the bar open/close times are slightly skewed, like the demo data is a few seconds behind. There are also different prices in the high/low data as well. If you email me exported log files, I will load them into SQL and hunt for different high/low data. ian at bestforextools dot com.
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
  #45 (permalink)  
Old 11-21-2006, 11:26 PM
Denkhaus's Avatar
Junior Member
 
Join Date: Oct 2005
Posts: 6
Denkhaus is on a distinguished road
Quote:
Originally Posted by daraknor
I agree, Error Handling is better than Error Reporting only.
The fix for this issue is to call RefreshRates(); then immediately set the SL at current price+ MarketInfo(Symbol(), MODE_STOPLEVEL) for sell orders and Current Price - MarketInfo(Symbol(), MODE_STOPLEVEL) for buy orders.

I'll code this for release end of week if nobody else does. If you do make the change, please post it as a code snippet here.
Hi daraknor, I would like to help you coding, but few parts of the code seem strangely to me, so I dont know if i am wrong or it's so intended.
Why we use GlobalVariables to determine if Mode 3s second and third trades have SL.
When you trade another pair in another EA these variables will affect the second EA and its SL will never modified.

The SL used in Mode3_MoveSL_Trade_2_3() is a simple BreakEvenStop isn't it?
And what's the meaning of SL in Mode3_MoveSL_Trade_3()?
It sets 2:1 Win/loss ratio?

In each case we should change

PHP Code:
  if(OrderType()<=OP_SELL && OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber)
        {
          if(
OrderProfit()>0FirstOrSecondTrade=true;
          break;
        } 
to

PHP Code:
  if(OrderType()<=OP_SELL && OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber)
        {
          if((
OrderProfit() + OrderSwap() + OrderCommission())>0FirstOrSecondTrade=true;
          break;
        } 
to calculate the real profit.
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
  #46 (permalink)  
Old 11-22-2006, 04:05 AM
alamanjani's Avatar
Senior Member
 
Join Date: Nov 2006
Location: USA WY & EU Slo
Posts: 144
alamanjani is on a distinguished road
Buy Sell signals Indicator

See attached Buy/Sell indicator for Phoenix.
I've also uploaded it into msg#4 on FAQ thread.

Now we can (almost) see it's soul
Attached Files
File Type: mq4 Phoenix5_plotting_buy_sell_signals.mq4 (7.1 KB, 263 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
  #47 (permalink)  
Old 11-22-2006, 05:47 AM
alamanjani's Avatar
Senior Member
 
Join Date: Nov 2006
Location: USA WY & EU Slo
Posts: 144
alamanjani is on a distinguished road
Diferences

This Buy/Sell plotting signal Indicator is really usefull. Look at attached picture. On left side is Demo account with FXDD and on the right side is demo account with Crown Forex. Look, signals aren't the same. (Ignore those blue and purple dots on the left side - those belong to some other indicator)

All settings are the same. And I'm using the same version of Phoenix - default settings - but risk factor 0.3 as real contest version.

While speaking about differences, there is more. I have Phoenix v5_6_04 mode2 on pair GBPJPY - on both demo accounts. All is the same and all are default settings.

EA openned one buy position on FXDD account (so far profitable) and two buy positions with Crown account (both in red) - so here we have big diference. no wonder, our statements don't match.

One more thing. I have Live account with Interactive Brokers (no MT4 support grrr) and I was comparing live data with Crown Demo data. There are big diferences from time to time. Crown was off up to 2.5 pips and you didn't see any trade with Crown, while IB ticker was very bussy.

But then again, IB is not really broker but more ECN and we know there are diferences betwen ECN's and Brokers.
Daraknor, somewhere you posted, that we may be forced to do separate settings for different brokers. Then different settings for different pairs. Man, do you see where this may go - all possible combinations. This may lead into task overflow lol

So, just my two cents, I would keep looking to reduce possible tasks:

- Let's find out which broker perform the best and then let's optimize EA only for that broker. If Phoenix will generate pips I doubt we will have hard time start opening account there lol

- Let's only focus on few pairs. Even only one would be good for start. That way we could direct more time/energy/resources into main projects IMHO

And, one last thing, Daraknor, don't answer on this (and some other) msgs. If you find something usefull from this one, just make mental note.
Don't get burned up and side tracked with keep answering every msg.

Mario
Attached Images
File Type: gif USDJPY diferences.gif (37.1 KB, 447 views)

Last edited by alamanjani; 11-22-2006 at 05:52 AM.
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
  #48 (permalink)  
Old 11-22-2006, 06:05 AM
alamanjani's Avatar
Senior Member
 
Join Date: Nov 2006
Location: USA WY & EU Slo
Posts: 144
alamanjani is on a distinguished road
Quote:
Originally Posted by alamanjani

- Let's find out which broker perform the best and then let's optimize EA only for that broker. If Phoenix will generate pips I doubt we will have hard time start opening account there lol

- Let's only focus on few pairs. Even only one would be good for start. That way we could direct more time/energy/resources into main projects IMHO
Once we find out which broker is the most desirable, we can open there Live account with our sponsored money. I also support this idea. I also suggest to stay moderate (and preferably the same amount for everyone interested) with participations.

We can start with mini account if needed. If EA is (or will be) good we will later switch to regular account anyway, by organic growth

Mario
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
  #49 (permalink)  
Old 11-22-2006, 06:24 AM
alamanjani's Avatar
Senior Member
 
Join Date: Nov 2006
Location: USA WY & EU Slo
Posts: 144
alamanjani is on a distinguished road
Quote:
Originally Posted by alamanjani

So, just my two cents, I would keep looking to reduce possible tasks:

- Let's find out which broker perform the best and then let's optimize EA only for that broker. If Phoenix will generate pips I doubt we will have hard time start opening account there lol

- Let's only focus on few pairs. Even only one would be good for start. That way we could direct more time/energy/resources into main projects IMHO
English is not my primary language and I have hard time to express myself, so one more try lol:

My point is, instead of trying to create EA which would work everywhere with all pairs, let's rather focus into those areas, where EA perform better and just use them for making pips. If (for example) It can make decent profit with one pair, who care if can also make decent profit with another pair....kinda

So, that way, maitenance/development can focus more into:

1 - bug free
2 - trying to improve EA for different market conditions so it is not loosing when unfavorable.
3 - optimizing, of course

And once, we achieve first three points, then later if there will still be enough will and energy, we can try to work on other tasks (more brokers, more pairs...)

But, I may be 100% wrong. So take this as thoughts from someone with limited knowledge. I will be glad and happy, whatever road/decission we will take. As long as we go on

Mario
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
  #50 (permalink)  
Old 11-22-2006, 06:59 AM
alamanjani's Avatar
Senior Member
 
Join Date: Nov 2006
Location: USA WY & EU Slo
Posts: 144
alamanjani is on a distinguished road
Quote:
Originally Posted by ericbach

The settings below look pretty clean on 30min Euro/usd chart.
Still not sure what the TP or SL values should be.
Cool! Which mode?

Mario
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
mq4 profitable tested, phoenix, phoenix ea, phoenix mq4, Phoenix_5_6_03.mq4, phoenix_ea_v5_6_03.mq4, Price Action Channel mq4


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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 Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
"Phoenix - FAQ, Stable, User support -Read Post #1" depictureboy Phoenix 189 04-11-2009 05:23 PM
Phoenix 6 - Development, Download, Bugs - See Post#1 daraknor Phoenix 88 12-20-2008 12:50 AM
Suggestions for a 4 hr. Trading System? marcf Suggestions for Trading Systems 2 05-23-2007 08:20 PM


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



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