MQL4 - automated forex trading   /  

Forum

Will create your Expert Advisor for Free!

Back to topics list  | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > >> To post a new topic, please log in or register

avatar
14
vriesde1 2008.05.19 20:49 
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!
article

MetaEditor:Templates as a Spot to Stand On

It may be news to many our readers that all preparations for writing an EA can be performed once and then used continuously.


avatar
128
Mehmet 2008.05.19 22:54 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Please send me a email adress. i will be a lot strategy.

mbastem@ttmail.com


avatar
2
kasoner 2008.05.20 02:22 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

if you could make an EA that automaticly closes 50% of each open position when the sum of all open positions reaches a certain profit that would be great ;)


avatar
1
forex18 2008.05.20 02:35 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Dear vriesde1

Any help with Expert Edvisor will be appreciated.

Thanks.

Ron.


avatar
11
netk 2008.05.20 12:26 
forex18 wrote:
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Dear vriesde1

Any help with Expert Edvisor will be appreciated.

Thanks.

Ron.

Yes i have an idea that you will find very useful and will want to follow through on. netkoala " at " iinet " dot" net " dot " au

It involves determining if heiken ashi bar has changed colour within a bar and rules on whether to ADD to position or to STOP and Reverse.


avatar
15
wasabiman 2008.05.21 11:08 
netk wrote:
forex18 wrote:
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Dear vriesde1

Any help with Expert Edvisor will be appreciated.

Thanks.

Ron.

Yes i have an idea that you will find very useful and will want to follow through on. netkoala " at " iinet " dot" net " dot " au

It involves determining if heiken ashi bar has changed colour within a bar and rules on whether to ADD to position or to STOP and Reverse.

Thanks for the invitation. Perhaps you can start off by looking at the following code and "debug" it to work so that it can adjust the Trailing Stop for both Symbols() that are used. Whilst testing the program, I found that only one Symbol was accepted at any time, clearly not the objective I'm seeking. Your assistance will be much appreciated.

//setup Stoploss parameters 
{  
   if (total>0)
   {
   for( int cnt=0;cnt<=total;cnt++ )
       {
        OrderSelect(cnt,SELECT_BY_POS, MODE_TRADES);                         
           {
            if((OrderType() == OP_BUY)&&(OrderSymbol()=="EURUSD"))
            // EUR Buy position was opened 
              {
               if(TrailingStop > 0)
                 {
                  if((Bid - OrderOpenPrice() > Point*TrailingStop)&&(OrderStopLoss() < Bid - Point*TrailingStop))
                     {
                      OrderModify(OrderTicket(), OrderOpenPrice(),Bid - Point*TrailingStop,OrderTakeProfit(), 0, Green);
                     }
                  }
               }
            }
            {
            if((OrderType() == OP_BUY)&&(OrderSymbol()=="GBPUSD"))
            // GBP Buy positions was opened 
              {
               if(TrailingStop > 0)
                 {
                  if((Bid - OrderOpenPrice() > Point*TrailingStop)&&(OrderStopLoss() < Bid - Point*TrailingStop))
                     {

                      OrderModify(OrderTicket(), OrderOpenPrice(),Bid - Point*TrailingStop,OrderTakeProfit(), 0, Green);
                    }
                  }
               }
            }
           {
            if((OrderType() == OP_SELL)&&(OrderSymbol()=="EURUSD"))
            // EUR Sell positions was opened
              {
               if(TrailingStop > 0)
                  {
                   if(((OrderOpenPrice() - Ask) > (Point*TrailingStop))&&((OrderStopLoss() > (Ask + Point*TrailingStop))))
                      {

                       OrderModify(OrderTicket(), OrderOpenPrice(),Ask + Point*TrailingStop,OrderTakeProfit(), 0, Red);
                      }
                      {
                      if((OrderType() == OP_SELL)&&(OrderSymbol()=="GBPUSD"))
            // GBP Sell positions was opened
              {
               if(TrailingStop > 0)
                  {
                   if(((OrderOpenPrice() - Ask) > (Point*TrailingStop))&&((OrderStopLoss() > (Ask + Point*TrailingStop))))
                      {

                       OrderModify(OrderTicket(), OrderOpenPrice(),Ask + Point*TrailingStop,OrderTakeProfit(), 0, Red);
                       }
                       }
                       }
                       }
                  }
              }
            }
         }
     }
  }

return(0);
}

avatar
29
Bamcoti 2008.06.02 09:00 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Please contact me Mike bamcoti@yahoo.com


avatar
11
mymql4 2008.06.06 03:42 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Please Contact me at alpha_bet@btconnect.com

Thanks


avatar
1
sreising 2008.06.06 05:59 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

I have some simple but effective strategies to program into a EA. Please contact me at: sreising@ix.netcom.com


avatar
1
rm1.forex 2008.06.06 08:19 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Hi Vriesde.


Please e-mail me "rm1.forex(at)gmail.com". replace "(at)" with "@".


I would pay you if this EA is successfull.



Thanks a ton



avatar
4
fgiovanardi 2008.06.06 11:26 
vriesde1 wrote:
Hi Guys,

I am a Computer Science student heading towards my masters, and very interested in Forex.

Basically, I offer to create a free Expert Advisor for whoever needs one. I just finished my own first Expert Advisor, it gave me a return of 100% over 2007-2008, but performs less good @ the years before 2007, some not even profitable. Therefor Im looking for more inspiration!

I am doing this for extra experience in both mq4 and forex trading systems themselves.

Oh and by the way, I am already working on the inside bar expert so do not come up with that one :D.

Send me a private message with your plan, and you can expect, if the EA is not too complicated, within one week.

Greetings!!

Dear Vriesde1,

I have been trading futures for many years using techical indicators, I have a few strategies that seem to be working fine, unfortunally I have no experience in writing programs and Expert Advisors, I desperately need some help from you!! My strategies work on simple indicators, nothing complicated or exotic...

Please get in touch, fgiovanardi@yahoo.com

Thank you. Franco

Back to topics list   | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 > >>  

To add comments, please log in or register