Forex



Go Back   Forex Trading > Trading systems > Phoenix
Forex Forum Register More recent 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
  #481 (permalink)  
Old 11-04-2006, 04:38 PM
Senior Member
 
Join Date: May 2006
Posts: 167
fikko is on a distinguished road
Number of Lots

Quote:
Originally Posted by Hendrick
Hi Salty!

Yes, I think your idea makes sense. Anyone else has opinion about this?
Dear Hendrick,

About the lot calculation for Money Management, I think if Phoenix run for USDJPY for risk 0.3 and GBPJPY for risk 0.3, then the trade amount for $10,000 account is 3 Lot for each. Currently Phoenix 5 doesn't open the same lot for second trade. It is true, it is not based on free margin.

But there is one thing should be taken into consideration is Leverage.

I copy and paste the code from Cyberia EA, which is actually quite good in determining number of lots open. You can place Phoenix into many Currencies, but perhaps only 2 order open at the same time. (SymbolCounts=2)

PHP Code:
           S = (AccountBalance()* Risk AccountMargin()) * AccountLeverage() / 
                (
SymbolsCount OrdersTotal()); 
The code is using OrderTotal(), however this may need to be changed, because Phoenix may open 5 trades for 1 currency!!

And I think you may need more "Risk" variables for each of classic, double trade and 123.

PHP Code:
int CyberiaLots()
  {
   
GetMarketInfo();
   
// Sum of the calculation
   
double S;
   
// Cost of the lot
   
double L;
   
// Lot quantity
   
double k;
   
// Cost of one pip
   
if( AutoLots == true )
     {
       if(
SymbolsCount != OrdersTotal())
         {
           
= (AccountBalance()* Risk AccountMargin()) * AccountLeverage() / 
                (
SymbolsCount OrdersTotal());
         }
       else
         {
           
0;
         }
       
// We check, does currency appear to be EURUSD?
       
if(StringFindSymbol(), "USD") == -1)
         {
           if(
StringFindSymbol(), "EUR") == -1)
             {
               
0;
             }
           else
             {
               
iClose ("EURUSD"00);
               if(
StringFindSymbol(), "EUR") != 0)
                  {
                  
/= Bid;
                  }
             }
         }
       else
         {
           if(
StringFind(Symbol(), "USD") != 0)
             {
               
/= Bid;
             }
         }
       
/= ModeLotSize;
       
-= ModeMinLot;
       
/= ModeLotStep;
       
NormalizeDouble(S0);
       
*= ModeLotStep;
       
+= ModeMinLot;
       
Lots S;
       if (
Lots>MAXLots){ Lots=MAXLots; }
       if(
ShowLots == True)
           Print (
"Lots:"Lots);
     }
   return (
0);
  }




int GetMarketInfo()
  {
   
ModeLow MarketInfo(Symbol(), MODE_LOW);
   
ModeHigh MarketInfo(Symbol(), MODE_HIGH);
   
ModeTime MarketInfo(Symbol(), MODE_TIME);
   
ModeBid MarketInfo(Symbol(), MODE_BID);
   
ModeAsk MarketInfo(Symbol(), MODE_ASK);
   
ModePoint MarketInfo(Symbol(), MODE_POINT);
   
ModeDigits MarketInfo(Symbol(), MODE_DIGITS);
   
ModeSpread MarketInfo(Symbol(), MODE_SPREAD);
   
ModeStopLevel MarketInfo(Symbol(), MODE_STOPLEVEL);
   
ModeLotSize MarketInfo(Symbol(), MODE_LOTSIZE);
   
ModeTickValue MarketInfo(Symbol(), MODE_TICKVALUE);
   
ModeTickSize MarketInfo(Symbol(), MODE_TICKSIZE);
   
ModeSwapLong MarketInfo(Symbol(), MODE_SWAPLONG);
   
ModeSwapShort MarketInfo(Symbol(), MODE_SWAPSHORT);
   
ModeStarting MarketInfo(Symbol(), MODE_STARTING);
   
ModeExpiration MarketInfo(Symbol(), MODE_EXPIRATION);
   
ModeTradeAllowed MarketInfo(Symbol(), MODE_TRADEALLOWED);
   
ModeMinLot MarketInfo(Symbol(), MODE_MINLOT);
   
ModeLotStep MarketInfo(Symbol(), MODE_LOTSTEP);

   return (
0);
  } 
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
  #482 (permalink)  
Old 11-04-2006, 05:03 PM
wilson1668's Avatar
Member
 
Join Date: Nov 2006
Location: Hong Kong
Posts: 70
wilson1668 is on a distinguished road
Question

Hi Hendrick,

I have read the the thread of the old version of the Phoenix which you mentioned "It's no use to backward test Phoenix for a longer period than 6 months. During the course of time the behaviour of pairs can change a lot. That's why we have to change the settings from time to time. I found that testing for 6 months is just the right period".

Does it also apply to Phoenix 2007?

Thanks!
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
  #483 (permalink)  
Old 11-04-2006, 05:45 PM
Hendrick's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 501
Hendrick is on a distinguished road
Quote:
Originally Posted by wilson1668
Hi Hendrick,

I have read the the thread of the old version of the Phoenix which you mentioned "It's no use to backward test Phoenix for a longer period than 6 months. During the course of time the behaviour of pairs can change a lot. That's why we have to change the settings from time to time. I found that testing for 6 months is just the right period".

Does it also apply to Phoenix 2007?

Thanks!
Hi Wilson!

I still think we have to change the settings from time to time, but looking at the Contest version of Phoenix, it's still doing great with "the old settings"! So maybe we can hold on longer to the original settings than I first assumed.
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
  #484 (permalink)  
Old 11-04-2006, 05:47 PM
Hendrick's Avatar
Senior Member
 
Join Date: Feb 2006
Posts: 501
Hendrick is on a distinguished road
Quote:
Originally Posted by fikko
Dear Hendrick,

About the lot calculation for Money Management, I think if Phoenix run for USDJPY for risk 0.3 and GBPJPY for risk 0.3, then the trade amount for $10,000 account is 3 Lot for each. Currently Phoenix 5 doesn't open the same lot for second trade. It is true, it is not based on free margin.


[/php]
Hi Fikko!

Please give me some time to think this over. Your contribution is much appreciated!
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
  #485 (permalink)  
Old 11-04-2006, 05:51 PM
Junior Member
 
Join Date: Jun 2006
Posts: 11
payal is on a distinguished road
this is not an indicator. you need to put this under your demo account experts folder (C:\Program Files\MetaTrader 4\experts). open the file and compile it and then attach this expert to the pair chart your are testing. good luck

Quote:
Originally Posted by maria77
Hi all

I've tried to copy the Phoenix_EA_v4_2_03.mq4 to C:\Program Files\MetaTrader 4\experts\indicators.. tried to click the indicator but nothing happened.

Please help. Thanks!

* I'm testing it on a demo with InterbankFx.
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
  #486 (permalink)  
Old 11-04-2006, 06:14 PM
Junior Member
 
Join Date: Jun 2006
Posts: 11
payal is on a distinguished road
Thumbs up Atc

I checked the ATC and found that you are in first place.
Congrats Hendrick. A job well done. For all the tireless work you are doing, you deserve the first place.

Will be forward testing version 5 starting Monday and post the results here.

Cheers,
Payal

Last edited by payal; 11-04-2006 at 09:33 PM.
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
  #487 (permalink)  
Old 11-04-2006, 08:39 PM
Member
 
Join Date: Jun 2006
Posts: 42
uagadugu is on a distinguished road
Backtesting

Hi Hendrick.. I have datas with 90% quality at USD/JPY.I 'm try to make a backtesting this pair with PrefSettings == false at M15.. but don't show me any results ...What is wrong?

Thank you
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
  #488 (permalink)  
Old 11-04-2006, 09:25 PM
Member
 
Join Date: Nov 2006
Posts: 46
SteveBrown is on a distinguished road
Quote:
Originally Posted by eooojj
Why should it be "Friendly"? I don't use Ebay....but if i were you ....i will forward some excerpts of this thread to Ebay and stop him before he even mades it available.

This is a friendly reply to u.
It was actually a very stern warning. Saying it was "friendly" implies that an unfriendly warning would be much stronger.
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
  #489 (permalink)  
Old 11-05-2006, 02:11 AM
Member
 
Join Date: Aug 2006
Location: singapore
Posts: 39
eooojj is on a distinguished road
sit infront of the computer 24hrs a day?

Quote:
Originally Posted by scout
manuel operation,hehe. it seems that only fxdirectdealer support MetaTrader
manual? wow...that means you sit infront of the computer 24hrs for 6 days ?
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
  #490 (permalink)  
Old 11-05-2006, 02:22 AM
Member
 
Join Date: Oct 2006
Posts: 73
AdamDuritz99 is on a distinguished road
MaximumRisk = Leverage?

Sorry for being a continued annoyance, but how does the MaximumRisk effect the leverage?

I'm new at this and I've read numerous times that a high leverage is a dangerous thing for beginners. So does a MaximumRisk of 0.1 = 10:1 leverage or a 100:1 leverage? Or do I have this whole idea all mixed up?

Thanks for your help.

-Sean
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
MasterMartingale, forex, phoenix


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 is here! Hendrick Phoenix 374 02-06-2008 04:26 PM
Phoenix optimization Prankie Phoenix 173 10-17-2007 08:24 AM
about gbp/usd chart 10 May 2007 raden mas Post and compare Trades 6 05-10-2007 12:20 PM
AUDJPY History file for 2006-2007 gee Metatrader 4 0 02-24-2007 05:54 PM


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



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