Showing posts with label forex autopilot. Show all posts
Showing posts with label forex autopilot. Show all posts

Thursday, January 15, 2009

Hidden Forex Autopilot or Real Amazing Forex Automated Robot

Forex Autopilot is a new automated forex trading system that has been used by many forex trader.

Eventhough it was new, it boot be resolute that the automated forex system has been tested with more time.

Forex Autopilot is proven, automated forex and consistenly profitable.
Now you can start using Forex Autopilot here!

Forex Autopilot will allow everyone even without forex trading experience to siphon huge earnings from forex trading.

With this autopilot forex system you will never be afraid to put your hard earned money trading the forex.

The forex system is 100% mechanical giving you more forex opportunity to maximize fx trading profits.

Forex Autopilot has been created by Marcus leary, a mathematician. He used, tested and perfect Forex Autpilot and then revealed the forex trading secrets of the many forex elite traders to help ordinary people to make excellent profits from trading the forex market. Forex Autopilot already remove the human errors, leaving you a 99.9% forex trading profits.

We all know for sure that forex trading involves risk but with automated forex system risk had been minimized.

Long ago, forex trading are for those people who had enough capital but with the boom of technology, forex market had opened door to a lots of people to embark on this kind of online home business.

Now with the use of forex autopilot system, you can trade even with no or little capital.
All you have to do is opened a demo trading account and when you look that a certain trade will going to give you maximal forex profit then that is time to start opening a real fx account. Making real money in forex trading is fast and easy steps if you only find the right forex tools and hidden forex info.

The forex system that I'm telling you is the only trading system that will going to forex automate your forex trading profits! With this powerful and amazing forex trading software you don't have to work for a boss, dance to others tune and most of all you can gain financial freedom that you have been wanting for na long time now!

So, what are you waiting for? Make real money and huge online income from Hidden Forex Trading with Forex Autopilot!

Learn How to tell Forex Experts from Forex Indicators

Wednesday, October 8, 2008

How to add a Magic Number to a FOREX AUTOPILOT EA

How to add a Magic Number to a FOREX AUTOPILOT EA
By Cubesteak
Hey ya’ll,
www.cubesteak.net/2006/10/adding-a-magic-number-to-an-ea/

Emre asked me if there was a manual on how to add a Magic Number to an Forex Autopilot EA. Since I haven’t seen one, I put together the following steps and thought that others may find it useful too. These steps can also be used to verify that an Forex Autopilot EA properly uses a Magic Number, as some don’t! Anyway, here you go:

1) On a global level in the Forex Autopilot EA add:

int MagicNumber = 233423; // where 233423 is any old number that is unique from any of your other running Forex Autopilot EA’s

The easiest way to describe declaring on the "global level" of the autopilot EA is a variable that is declared outside of the Start, Init and Deinit functions. The easiest way to ensure that you are on the global level of the Forex Autopilot EA is to put the MagicNumber declaration immediately after the top comments and any #property, #include or #import statements and BEFORE the Init, Deinit and Start functions.

2) Next, make sure that the OrderSend function uses this magic number. OrderSend uses the following form:

int OrderSend( string symbol, int cmd, double volume, double price, int slippage, double stoploss, double takeprofit, string comment=NULL, int magic=0, datetime expiration=0, color arrow_color=CLR_NONE)

So, you want to make sure that it is called with the MagicNumber in it, e. g:

OrderSend(Symbol(), OP_BUY, 1. 0, Ask, 2, 10, 20, "My Buy", MagicNumber, 0, Lime)

3) Then, search the Forex Autopilot EA for each instance of OrderClose, OrderModify or OrderDelete. Usually these are sandwiched by at least one IF statement. Add to that IF statement the following condition: (OrderMagicNumber() == MagicNumber)

So, something like this:

if (OrderSymbol == Symbol())

{

OrderClose(blah blah. . . );

}

Becomes:

if (OrderSymbol == Symbol() && OrderMagicNumber() == MagicNumber)

{

OrderClose(blah blah blah);

}

Voila! Your Forex Autopilot EA now uses a magic number and should be able to trade with other Forex Autopilot EAs.

Please note that any money management that an Forex Autopilot EA uses, like lot optimization based on available margin or equity, etc. will also "interfere" with each other. This is either desirable or undesirable based upon how you want to trade with the specific Forex Autopilot EA's.

Hope that helps for Forex Autopilot!

Cheers,

CS

If you look at many of the Forex Autopilot EAs I post you will find that I use several functions to calculate the MagicNumber. Just copy and paste into your Forex Autopilot EA. You still need to add the declaration at the global level using

int MagicNumber;
int BaseMagic = 4000; // Make this one unique to each forex EA

I plan to make that a complete function eventually so it just becomes a single funtion call like

MagicNumber = GetMagicNumber(BaseMagic);

That way you can test the same expert live on different timeframes without interference.

An assignment is made in the init function that calls other functions that use a base number, the Symbol and the Period to calculate the number. This gives a unique number for each currency pair and timeframe.
Robert

Searches: Forex Autopilot Forex Automated