Forex
Google
New signals service!

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
 
LinkBack Thread Tools Display Modes
  #21 (permalink)  
Old 09-11-2006, 10:59 AM
Member
 
Join Date: Nov 2005
Posts: 48
barry is on a distinguished road
e-Monday goes in different directions in 2 ac's

I just had a strange thing happen. I had e-Monday open a long position in eur at 1.2710 in a live ac, and at the same time in a demo ac it opened a short position at 1.2708. Allowing for spread, that's exactly the same price - I'm using MIG, which has a 2 pip spread on eur.

Does anyone understand e-Monday well enough to see how it could be going long in one account and short in another at the same time at the same price? I don't understand how that could happen. I checked settings, and they are identical in both accounts. TIA.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #22 (permalink)  
Old 09-11-2006, 11:06 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,311
Blog Entries: 106
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by barry
I just had a strange thing happen. I had e-Monday open a long position in eur at 1.2710 in a live ac, and at the same time in a demo ac it opened a short position at 1.2708. Allowing for spread, that's exactly the same price - I'm using MIG, which has a 2 pip spread on eur.

Does anyone understand e-Monday well enough to see how it could be going long in one account and short in another at the same time at the same price? I don't understand how that could happen. I checked settings, and they are identical in both accounts. TIA.
It is very strange.
Seems you had disconnection of MetaTrader on demo or live some sometime.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #23 (permalink)  
Old 09-11-2006, 12:53 PM
Member
 
Join Date: Nov 2005
Posts: 48
barry is on a distinguished road
Newdigital,
Both accounts took the trade at the same time and price so they both seem to have been connected. It's very strange.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #24 (permalink)  
Old 09-11-2006, 03:23 PM
Administrator
 
Join Date: Sep 2005
Posts: 16,311
Blog Entries: 106
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by barry
Newdigital,
Both accounts took the trade at the same time and price so they both seem to have been connected. It's very strange.
barry],

I will come tomorrow at hme and will look at MetaTrader and will see the code in MetaEditor.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #25 (permalink)  
Old 09-13-2006, 10:18 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,311
Blog Entries: 106
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by barry
Newdigital,
Both accounts took the trade at the same time and price so they both seem to have been connected. It's very strange.
I looked inside the code of e-Monday and it is written the following:

Code:
int GetSignal() {
  double op1=iOpen (NULL, PERIOD_D1, 1);
  double cl1=iClose(NULL, PERIOD_D1, 1);
  int    bs=0;

  if (MathAbs(op1-cl1)>RangeFriday*Point) {
    if (op1>Ask) bs=1;
    if (op1<Bid) bs=-1;
  }
  return(bs);
}
and

Code:
if (bs>0)
..........
SetOrder(OP_BUY, Ask, ldStop, ldTake);

if (bs<0)
..........
SetOrder(OP_SELL, Bid, ldStop, ldTake);
What does it mean? It means that bs is the direction of the trend. If bs >0 - uptrend, below zero is for downtrend. Direction is taking from D1 timeframe 1st bar.

If open price on D1 timeframe (first close D1 bar) is more than ask price on M15 (at 11 o'clock Metarader's time according to my pre-set) - EA may open buy. If open price on D1 timeframe (first close D1 bar) is less than bid price on M15 (at 11 o'clock Metarader's time according to my pre-set) - EA may open sell.

There are the other condition for buy and sell and it is main ones.

So all you need to do it to check the price in your broker with this condition for demo and real account. Seems the data was different.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #26 (permalink)  
Old 11-27-2006, 08:45 PM
Junior Member
 
Join Date: Nov 2006
Posts: 18
hksweeper is on a distinguished road
Hello guys,

eMonday didn't open trade for EURUSD today (Monday). Is this normal? Please kindly advise.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #27 (permalink)  
Old 11-27-2006, 10:33 PM
Senior Member
 
Join Date: Aug 2006
Posts: 104
tururo is on a distinguished road
Quote:
Originally Posted by barry
I just had a strange thing happen. I had e-Monday open a long position in eur at 1.2710 in a live ac, and at the same time in a demo ac it opened a short position at 1.2708. Allowing for spread, that's exactly the same price - I'm using MIG, which has a 2 pip spread on eur.

Does anyone understand e-Monday well enough to see how it could be going long in one account and short in another at the same time at the same price? I don't understand how that could happen. I checked settings, and they are identical in both accounts. TIA.
Are the brokers different? If one has Sunday bars then the direction can easily be the opposite.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #28 (permalink)  
Old 11-28-2006, 08:17 AM
Administrator
 
Join Date: Sep 2005
Posts: 16,311
Blog Entries: 106
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by hksweeper
Hello guys,

eMonday didn't open trade for EURUSD today (Monday). Is this normal? Please kindly advise.
eMonday opened the order on GBPUSD at 11 am on Monday (sell) and closed at 11:39 am with -55 pips loss.

EURUSD: it was sell at 11:00 am in 27th of November (Monday) and was closed at 17:26 in the same day with -40 pips loss.

But this EA is still profitable. See the statements.
Attached Files
File Type: htm 127827_e-Monday_LS.mq4_#11.htm (23.0 KB, 50 views)
File Type: htm 127827_e-Monday_LS.mq4_#12.htm (23.0 KB, 33 views)

Last edited by newdigital; 11-28-2006 at 08:20 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

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
To trade or not to trade Indicators? yaniv_av Indicators - Metatrader 4 1 03-27-2007 01:01 PM


All times are GMT. The time now is 11:32 PM.



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