View Single Post
  #3 (permalink)  
Old 02-16-2006, 03:44 AM
mj10 mj10 is offline
Member
 
Join Date: Oct 2005
Posts: 39
mj10 is on a distinguished road
Code:
//+------------------------------------------------------------------+
//|                                                      Eurobuy.mq4 |
//|                                         http://www.forex-tsd.com |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2006, Metaqoute.com"
#property link      ""
void deinit() {
   Comment("");
}
int start()
  {
if ((Open[5]<=Close[0]) && (Close[1]>High[4]))
    OrderSend(Symbol(),OP_SELL,0.1,Bid,2,Bid+30*Point,Bid-6*Point,"Euroisselling",0,0,Red);
   
    return(0);
  }
ok people i made the short one to
well testing shows that no loss As i am not always On and the profit are still good

update on eurobuy i had losses but than retain back the losses and it was due to stoploss if it would not there it would be in profit
Reply With Quote