
04-06-2008, 02:42 PM
|
 |
Member
|
|
Join Date: Dec 2007
Posts: 98
|
|
Quote:
Originally Posted by timebandit
Thanks newdigital for trying to help. I've made sure everything as is you show in your pics. The situation is that these EA's worked fine before the new build came out. I did recompile the ones I was working with, but still no joy. I made a completely new EA, this is the code:
int start()
{
Comment(" TICK");
OrderSend(Symbol(),OP_SELL,1,Ask,3,0,0,"Comment",5 ,0,Green);
return(0);
}
Real basic, just to test. Nothing happens but the "TICK" comment shows up, no order is placed. There are no errors, nothing. Any ideas.
Thanks
Bob
|
try to
OrderSend(Symbol(),OP_SELL,1,Bid,3,0,0,"Comment",5 ,0,Green);
__________________
Peace, Love, and Friendship, this is true life
|