Forex



Go Back   Forex Trading > Downloads > Expert Advisors - Metatrader 4






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
 
Thread Tools Display Modes
  #541 (permalink)  
Old 12-22-2008, 12:29 PM
Member
 
Join Date: Nov 2007
Posts: 37
at120 is on a distinguished road
hi guys!

I wanted to open an live account at ATC brokers... I tested demo account, good, when I went to open live account I got the info from ATC, that they already have some live accounts, but testing for the moment and so it wasn't for me to open an live account there. When they're (ATC) finished with test, they contact everybody. So live trading @ATC is not possible at the moment.
just for info.

bye, Alex
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
  #542 (permalink)  
Old 12-22-2008, 01:13 PM
Senior Member
 
Join Date: Aug 2006
Posts: 139
ruparaw is on a distinguished road
Spread Monitor

Quote:
Originally Posted by servaldsl View Post
HI,

I think everybody who search a low spread broker now, are wasting their time.
This is the end of the year, hollydays,...Many brokers enlarge their spreads.
So wait since january....And test only on demo account to find YOUR settings.
This is time, relax and wait.

Have good xmas and happy new year
If you wanted to monitor the max spread happened at what time just attach this simple ea
Attached Files
File Type: ex4 SpreadMonitor.ex4 (3.6 KB, 229 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
  #543 (permalink)  
Old 12-22-2008, 01:28 PM
Senior Member
 
Join Date: Dec 2008
Location: Switzerland
Posts: 165
dagolard is on a distinguished road
If you could attach to the Monitor a graph line instead your Ad, it would be much more helpful.
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
  #544 (permalink)  
Old 12-22-2008, 03:53 PM
Junior Member
 
Join Date: Mar 2007
Posts: 20
quietmoney is on a distinguished road
Do you need the template file installed in order to operate the EA?
What is purpose of the template file?
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
  #545 (permalink)  
Old 12-22-2008, 04:42 PM
Senior Member
 
Join Date: Dec 2008
Location: Switzerland
Posts: 165
dagolard is on a distinguished road
I'm angry today. Someone has stolen my CC Number (visa) and ordered goods by internet.
I'm so happy, that my Visa Center found it out at once and disabled my CC...

Now i have to wait for a new card, and change some orders I made the last few 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
  #546 (permalink)  
Old 12-22-2008, 05:04 PM
Member
 
Join Date: Jul 2008
Posts: 71
crossy is on a distinguished road
Standart or MINI account

hello freinds,

First for Holger, Don't worry, you have an insurence for that, and
i'm happy that it was coucht fast enough.

second, I need help, I'm was using MINI account and the EA
worked nice, but now I'm checking a new broker, which workes
with only Standarts accounts. I got an error (131) "the order volume is bad".

I think that there is a problem with the following function, which is a part
of v1E.

Can someone help me, Thankes



double GetLots()
{
double lots,MD,RM,FMM,MinLots,LotSize; int lotsdigit;
LotSize = MarketInfo(Symbol(), MODE_LOTSIZE);
MD = NormalizeDouble(MarketInfo(Symbol(), MODE_LOTSTEP), 2);
RM = NormalizeDouble(MarketInfo(Symbol(), MODE_MARGINREQUIRED), 4);
FMM = (RM+5)*100;
if(LotsDigit==0)
{
if (MD==0.01) lotsdigit=2;
else lotsdigit=1;
LotsDigit=lotsdigit;
}
if (MM==true) lots = NormalizeDouble((AccountFreeMargin()*Risk/LotSize)/MaxTrades,LotsDigit);
else lots=Lots;
MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_M INLOT),2);
if (lots < MinLots) lots = MinLots;
if (lots > MaxLots) lots = MaxLots;
return (lots);
}
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
  #547 (permalink)  
Old 12-22-2008, 05:09 PM
Senior Member
 
Join Date: Dec 2008
Location: Switzerland
Posts: 165
dagolard is on a distinguished road
Use Lots digits = 0, and it will work.
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
  #548 (permalink)  
Old 12-22-2008, 05:28 PM
Senior Member
 
Join Date: Aug 2008
Location: INDONESIA
Posts: 294
_rdb_ is on a distinguished road
Quote:
Originally Posted by crossy View Post
hello freinds,

First for Holger, Don't worry, you have an insurence for that, and
i'm happy that it was coucht fast enough.

second, I need help, I'm was using MINI account and the EA
worked nice, but now I'm checking a new broker, which workes
with only Standarts accounts. I got an error (131) "the order volume is bad".

I think that there is a problem with the following function, which is a part
of v1E.

Can someone help me, Thankes
code on v1e :
PHP Code:
//==========================================================================
double GetLots() 
{
   
double lots,MD,RM,FMM,MinLots,maxlot,maximlot,LotSizeint lotsdigit,LotsDigit;
   
LotSize MarketInfo(Symbol(), MODE_LOTSIZE);
   
MD NormalizeDouble(MarketInfo(Symbol(), MODE_LOTSTEP), 2); 
   
RM NormalizeDouble(MarketInfo(Symbol(), MODE_MARGINREQUIRED), 4);
//==========================================================================
   
if (MD==0.01lotsdigit=2;
   else
   if (
MD==0.10lotsdigit=1;
   else 
lotsdigit=0;
   
LotsDigit=lotsdigit;
//==========================================================================
   
if (LotsOptimized==truelots NormalizeDouble((AccountFreeMargin()*Risk/LotSize)/MaxTrades,LotsDigit);
   else 
lots=Lots;
   
MinLots=NormalizeDouble(MarketInfo(Symbol(),MODE_MINLOT),2);    
   
maxlot=NormalizeDouble(MarketInfo(Symbol(),MODE_MAXLOT),2);    
   if (
LotsDigit == 2MinLots 0.01
   if (
LotsDigit == 1MinLots 0.1
   if (
LotsDigit == 0MinLots 1
   if (
lots MinLotslots MinLots;  
   if (
maxlot MaxLotsmaximlot MaxLots;  else maximlot=maxlot;   
   if (
lots maximlotlots maximlot;     
   return (
lots);      
}
//========================================================================== 
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
  #549 (permalink)  
Old 12-22-2008, 07:29 PM
Member
 
Join Date: Jul 2008
Posts: 71
crossy is on a distinguished road
Yes, RDB is alive

Hello freind,

I'm very glade to hear you....

Be in touch.

OURS
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
  #550 (permalink)  
Old 12-22-2008, 07:48 PM
Rico01's Avatar
Junior Member
 
Join Date: Dec 2008
Location: Germany
Posts: 3
Rico01 is on a distinguished road
Thunder4WD

Hello,

after one week i have spend donation to Abdul.
At the next day i have received the thunder4wd ea.
I have test it more days but it will not work (Spread is ok).

Abdul will no answer at the emails.

I think it`s just a trick to get money.


Have anyone the same experience make with Abdul?
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
abeiks, abeiks EA, best free ea, best free forex ea, Damiani_Volt, ea forex, fap turbo, fapturbo, forex, forex Thunder, free ea, free ea forex, free forex ea, fxprometatrader, lucky EA, lucky ea forum, mylucky EA, MyLuckyPro, Nauris Zukas, pipforia, PrizmaL, prizmal ea, rdb ea, The Best Free EA, thunder, Thunder 4WD, Thunder 4WD ea, thunder ea, Thunder4WD, thunder4wd ea, Thunder4WD v2, Thunder4WD_v2c, Thunder_4WD, your lucky, your lucky ea, your lucky ea forextsd, yourlucky ea, your_lucky, your_lucky ea, Your_Lucky V1e, your_lucky v2, Your_Lucky_EURGBP, your_lucky_eurgbp_v2, Your_Lucky_EURGBP_v2.ex4, Your_Lucky_EURGBP_v2b, Your_Lucky_EURGBP_v2b.ex4, YOUR_LUCKY_v1E, your_lucky_v2, _rdb_, _rdb_ The Best Free EA, _rdb_ The Best Free EA (Update Jan 1 2009), _rdb_The Best Free EA

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
Free EA from Pro-Fx-Experts Roets Expert Advisors - Metatrader 4 111 10-13-2009 08:40 PM
I will make 2 EAs for free InTrance Expert Advisors - Metatrader 4 72 07-21-2009 05:46 PM
Great EA for free!!! iTradeTheForex Expert Advisors - Metatrader 4 14 07-05-2009 09:12 AM
Hercules EA (Free Usage) something_witty Raw Commercial Ideas 17 02-13-2009 03:30 AM
Free videos christopher Documentation 46 12-03-2007 03:06 AM


All times are GMT. The time now is 12:10 AM.



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