Jump to content

Recommended Posts

  • Replies 125
  • Created
  • Last Reply

Top Posters In This Topic

Posted

Re: (Req) USDBot

 

Were links/files posted?

If not, can someone repost?

 

Here is it

 

hxxp://rapidshare-dot-com/files/341485625/USDBOT.zip

hxxp://www.4sh@red-dot-com/file/208188116/6de8839/USDBOT.html

hxxp://www.4sh@red-dot-com/file/208202348/46cc5c1e/ZigZag.html

Posted

Re: USDBot EA

 

#property copyright "www.USDBOT.com"
#property link      "http://www.USDBOT.com"

extern string Remark1 = "== USDBOT Settings ==";
extern int MagicNumber = 14995;
extern bool SignalsOnly = FALSE;
extern bool Alerts = FALSE;
extern bool SignalMail = FALSE;
extern bool PlaySounds = FALSE;
extern bool ECNBroker = FALSE;
extern int PipBuffer = 0;
extern bool EachTickMode = TRUE;
extern double Lots = 1.0;
extern bool MoneyManagement = FALSE;
extern int Risk = 0;
extern int Slippage = 5;
extern bool UseStopLoss = TRUE;
extern int StopLoss = 100;
extern bool UseTakeProfit = TRUE;
extern int TakeProfit = 100;
extern bool UseTrailingStop = FALSE;
extern int TrailingStop = 30;
extern bool MoveStopOnce = FALSE;
extern int MoveStopWhenPrice = 50;
extern int MoveStopTo = 1;
extern string Remark2 = "";
extern string Remark3 = "== Other Settings (ZIG ZAG SYSTEM)  ==";
extern int ExtDepth = 2;
extern int ExtDeviation = 1;
extern int ExtBackstep = 1;
extern string Remark4 = "== Partial close lot management ==";
extern string Remark5 = "== Two options for Partial closing; ==";
extern string Remark6 = "== Close Percent of Initial Lotsize ==";
extern string Remark7 = "== or Close Percent of Remaining Lotsize ==";
extern bool Use_Partial_Close = TRUE;
extern bool CloseFromInitialLotsize = TRUE;
extern int PipsTarget_1 = 10;
extern double CloseLotsPercentage_1 = 10.0;
extern int Move_SL_1 = 1;
extern int PipsTarget_2 = 20;
extern double CloseLotsPercentage_2 = 10.0;
extern int Move_SL_2 = 0;
extern int PipsTarget_3 = 40;
extern double CloseLotsPercentage_3 = 10.0;
extern int Move_SL_3 = 0;
extern int PipsTarget_4 = 60;
extern double CloseLotsPercentage_4 = 10.0;
extern int Move_SL_4 = 0;
extern string Remark8 = "== Partial close lot management END ==";
int gi_312 = 1;
int g_count_316 = 0;
int g_bars_320 = 0;
int g_bars_324;
int g_bars_328;
string gs_332 = "4-Digit Broker";
double gd_340 = 1.0;
int gi_348;
bool gi_352 = FALSE;
int gi_356 = 1;
double g_lots_360;
double g_lots_368;
double g_lots_376;
double g_lots_384;
double gd_392;
double gd_400;
double gd_408;
string g_comment_416;
string g_comment_424;

int init() {
  g_bars_324 = Bars;
  g_bars_328 = Bars;
  if (Digits == 3 || Digits == 5) {
     gs_332 = "5-Digit Broker";
     gd_340 = 10;
  }
  if (MarketInfo(Symbol(), MODE_MINLOT) == 0.01) gi_356 = 2;
  if (EachTickMode) gi_348 = 0;
  else gi_348 = 1;
  return (0);
}

int deinit() {
  return (0);
}

int start() {
  int l_ticket_8;
  double l_price_12;
  double l_price_20;
  double l_ord_stoploss_28;
  double ld_36;
  double ld_44;
  double l_icustom_72;
  double l_icustom_92;
  double l_icustom_112;
  if (!IsExpertEnabled()) {
     Alert("You did not allow your expert to run live, change your settings and apply the expert again");
     return (0);
  }
  int li_0 = 0;
  g_comment_416 = "123 Sell(#" + MagicNumber + ")";
  g_comment_424 = "123 Buy(#" + MagicNumber + ")";
  if (EachTickMode && Bars != g_bars_328) gi_352 = FALSE;
  int l_ord_total_4 = OrdersTotal();
  li_0 = 0;
  if (MoneyManagement) {
     if (Risk < 1 || Risk > 100) {
        Comment("Invalid Risk Value.");
        return (0);
     }
     Lots = MathFloor(100.0 * (AccountFreeMargin() * AccountLeverage() * Risk * Point * gd_340) / (Ask * MarketInfo(Symbol(), MODE_LOTSIZE) * MarketInfo(Symbol(), MODE_MINLOT))) * MarketInfo(Symbol(), MODE_MINLOT);
  }
  if (CloseFromInitialLotsize == FALSE) {
     g_lots_360 = NormalizeDouble(Lots * CloseLotsPercentage_1 / 100.0, gi_356);
     gd_392 = NormalizeDouble(Lots - g_lots_360, gi_356);
     g_lots_368 = NormalizeDouble(gd_392 * CloseLotsPercentage_2 / 100.0, gi_356);
     gd_400 = NormalizeDouble(gd_392 - g_lots_368, gi_356);
     g_lots_376 = NormalizeDouble(gd_400 * CloseLotsPercentage_3 / 100.0, gi_356);
     gd_408 = NormalizeDouble(gd_400 - g_lots_376, gi_356);
     g_lots_384 = NormalizeDouble(gd_408 * CloseLotsPercentage_4 / 100.0, gi_356);
  }
  if (CloseFromInitialLotsize == TRUE) {
     g_lots_360 = NormalizeDouble(Lots * CloseLotsPercentage_1 / 100.0, gi_356);
     gd_392 = NormalizeDouble(Lots - g_lots_360, gi_356);
     g_lots_368 = NormalizeDouble(Lots * CloseLotsPercentage_2 / 100.0, gi_356);
     gd_400 = NormalizeDouble(Lots - (g_lots_368 + g_lots_360), gi_356);
     g_lots_376 = NormalizeDouble(Lots * CloseLotsPercentage_3 / 100.0, gi_356);
     gd_408 = NormalizeDouble(Lots - (g_lots_376 + g_lots_368 + g_lots_360), gi_356);
     g_lots_384 = NormalizeDouble(Lots * CloseLotsPercentage_4 / 100.0, gi_356);
  }
  if (Use_Partial_Close) ManageOrders();
  if (g_bars_320 != Bars) {
     g_bars_320 = Bars;
     g_count_316 = 0;
  }
  int li_52 = 1;
  string ls_56 = "Not Found";
  string ls_64 = "None";
  while (ls_56 != "Found") {
     l_icustom_72 = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, li_52);
     if (iHigh(NULL, 0, li_52) == l_icustom_72 || iLow(NULL, 0, li_52) == l_icustom_72) {
        ls_56 = "Found";
        if (iHigh(NULL, 0, li_52) == l_icustom_72) {
           ls_64 = "High";
           break;
        }
        if (iLow(NULL, 0, li_52) == l_icustom_72) {
           ls_64 = "Low";
           break;
        }
     }
     li_52++;
  }
  int li_80 = li_52;
  string ls_84 = "Not Found";
  while (ls_84 != "Found") {
     l_icustom_92 = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, li_80);
     if (iHigh(NULL, 0, li_80) == l_icustom_92 && ls_64 == "Low") {
        ls_84 = "Found";
        break;
     }
     if (iLow(NULL, 0, li_80) == l_icustom_92 && ls_64 == "High") {
        ls_84 = "Found";
        break;
     }
     li_80++;
  }
  int li_100 = li_80;
  string ls_104 = "Not Found";
  while (ls_104 != "Found") {
     l_icustom_112 = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, li_100);
     if (iHigh(NULL, 0, li_100) == l_icustom_112 && ls_64 == "High") {
        ls_104 = "Found";
        break;
     }
     if (iLow(NULL, 0, li_100) == l_icustom_112 && ls_64 == "Low") {
        ls_104 = "Found";
        break;
     }
     li_100++;
  }
  double l_icustom_120 = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, li_52);
  double l_icustom_128 = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, li_80);
  double l_icustom_136 = iCustom(NULL, 0, "ZigZag", ExtDepth, ExtDeviation, ExtBackstep, 0, li_100);
  double l_price_144 = 0;
  double l_price_152 = 0;
  if (l_icustom_136 < l_icustom_128 && l_icustom_128 > l_icustom_120 && l_icustom_120 > l_icustom_136) {
     l_price_144 = l_icustom_128 + PipBuffer * Point;
     l_price_152 = 0;
  }
  if (l_icustom_136 > l_icustom_128 && l_icustom_128 < l_icustom_120 && l_icustom_120 < l_icustom_136) {
     l_price_144 = 0;
     l_price_152 = l_icustom_128 - PipBuffer * Point;
  }
  string ls_160 = "None";
  if (g_count_316 < gi_312 && iOpen(NULL, 0, gi_348 + 0) < l_price_144 && iClose(NULL, 0, gi_348 + 0) >= l_price_144) ls_160 = "Open Long";
  if (g_count_316 < gi_312 && iOpen(NULL, 0, gi_348 + 0) > l_price_152 && iClose(NULL, 0, gi_348 + 0) <= l_price_152) ls_160 = "Open Short";
  Comment("Broker Type: ", gs_332, 
     "\n", "Long Entry: ", l_price_144, 
     "\n", "Short Entry: ", l_price_152, 
  "\n", "Trade Trigger: ", ls_160);
  ObjectDelete("Point1");
  ObjectCreate("Point1", OBJ_VLINE, 0, Time[li_52], 0);
  ObjectSet("Point1", OBJPROP_COLOR, Aqua);
  ObjectSet("Point1", OBJPROP_STYLE, STYLE_DASH);
  ObjectSet("Point1", OBJPROP_BACK, TRUE);
  ObjectDelete("Point2");
  ObjectCreate("Point2", OBJ_VLINE, 0, Time[li_80], 0);
  ObjectSet("Point2", OBJPROP_COLOR, Aqua);
  ObjectSet("Point2", OBJPROP_STYLE, STYLE_DASHDOT);
  ObjectSet("Point2", OBJPROP_BACK, TRUE);
  ObjectDelete("Point3");
  ObjectCreate("Point3", OBJ_VLINE, 0, Time[li_100], 0);
  ObjectSet("Point3", OBJPROP_COLOR, Aqua);
  ObjectSet("Point3", OBJPROP_STYLE, STYLE_DASHDOTDOT);
  ObjectSet("Point3", OBJPROP_BACK, TRUE);
  ObjectDelete("LongEntry");
  ObjectCreate("LongEntry", OBJ_HLINE, 0, 0, l_price_144);
  ObjectSet("LongEntry", OBJPROP_COLOR, Lime);
  ObjectSet("LongEntry", OBJPROP_STYLE, STYLE_DASHDOTDOT);
  ObjectSet("LongEntry", OBJPROP_BACK, TRUE);
  ObjectDelete("ShortEntry");
  ObjectCreate("ShortEntry", OBJ_HLINE, 0, 0, l_price_152);
  ObjectSet("ShortEntry", OBJPROP_COLOR, Red);
  ObjectSet("ShortEntry", OBJPROP_STYLE, STYLE_DASHDOTDOT);
  ObjectSet("ShortEntry", OBJPROP_BACK, TRUE);
  bool li_168 = FALSE;
  for (int l_pos_172 = 0; l_pos_172 < l_ord_total_4; l_pos_172++) {
     OrderSelect(l_pos_172, SELECT_BY_POS, MODE_TRADES);
     if (OrderType() <= OP_SELL && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        li_168 = TRUE;
        if (OrderType() == OP_BUY) {
           if (li_0 == 3 && (EachTickMode && !gi_352) || (!EachTickMode && Bars != g_bars_328)) {
              OrderClose(OrderTicket(), OrderLots(), Bid, Slippage, MediumSeaGreen);
              if (SignalMail) SendMail("[signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + " Close Buy");
              if (!EachTickMode) g_bars_328 = Bars;
              li_168 = FALSE;
           } else {
              l_ord_stoploss_28 = OrderStopLoss();
              ld_36 = BreakEvenValue(MoveStopOnce, OrderTicket(), MoveStopTo, MoveStopWhenPrice);
              ld_44 = TrailingStopValue(UseTrailingStop, OrderTicket(), TrailingStop);
              if (ld_36 > l_ord_stoploss_28 && ld_36 != 0.0) l_ord_stoploss_28 = ld_36;
              if (ld_44 > l_ord_stoploss_28 && ld_44 != 0.0) l_ord_stoploss_28 = ld_44;
              if (l_ord_stoploss_28 != OrderStopLoss()) OrderModify(OrderTicket(), OrderOpenPrice(), l_ord_stoploss_28, OrderTakeProfit(), 0, MediumSeaGreen);
           }
        } else {
           if (li_0 == 4 && (EachTickMode && !gi_352) || (!EachTickMode && Bars != g_bars_328)) {
              OrderClose(OrderTicket(), OrderLots(), Ask, Slippage, DarkOrange);
              if (SignalMail) SendMail("[signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + " Close Sell");
              if (!EachTickMode) g_bars_328 = Bars;
              li_168 = FALSE;
           } else {
              l_ord_stoploss_28 = OrderStopLoss();
              ld_36 = BreakEvenValue(MoveStopOnce, OrderTicket(), MoveStopTo, MoveStopWhenPrice);
              ld_44 = TrailingStopValue(UseTrailingStop, OrderTicket(), TrailingStop);
              if ((ld_36 < l_ord_stoploss_28 && ld_36 != 0.0) || l_ord_stoploss_28 == 0.0) l_ord_stoploss_28 = ld_36;
              if ((ld_44 < l_ord_stoploss_28 && ld_44 != 0.0) || l_ord_stoploss_28 == 0.0) l_ord_stoploss_28 = ld_44;
              if (l_ord_stoploss_28 != OrderStopLoss() || OrderStopLoss() == 0.0) OrderModify(OrderTicket(), OrderOpenPrice(), l_ord_stoploss_28, OrderTakeProfit(), 0, DarkOrange);
           }
        }
     }
  }
  if (ls_160 == "Open Long") li_0 = 1;
  if (ls_160 == "Open Short") li_0 = 2;
  li_168 = FALSE;
  if (li_0 == 1 && (EachTickMode && !gi_352) || (!EachTickMode && Bars != g_bars_324)) {
     if (SignalsOnly) {
        if (SignalMail) SendMail("[signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + "Buy Signal");
        if (Alerts) Alert("[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + "Buy Signal");
        if (PlaySounds) PlaySound("alert.wav");
     }
     if (!li_168 && !SignalsOnly) {
        if (AccountFreeMargin() < 1.0 * Lots) {
           Print("We have no money. Free Margin = ", AccountFreeMargin());
           return (0);
        }
        if (UseStopLoss) l_price_12 = Ask - StopLoss * Point;
        else l_price_12 = 0.0;
        if (UseTakeProfit) l_price_20 = Ask + TakeProfit * Point;
        else l_price_20 = 0.0;
        if (ECNBroker) l_ticket_8 = OrderModify(OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, 0, 0, g_comment_424, MagicNumber, 0, DodgerBlue), OrderOpenPrice(), l_price_12, l_price_20, 0, CLR_NONE);
        if (!ECNBroker) l_ticket_8 = OrderSend(Symbol(), OP_BUY, Lots, Ask, Slippage, l_price_12, l_price_20, g_comment_424, MagicNumber, 0, DodgerBlue);
        if (l_ticket_8 > 0) {
           if (OrderSelect(l_ticket_8, SELECT_BY_TICKET, MODE_TRADES)) {
              Print("BUY order opened : ", OrderOpenPrice());
              if (SignalMail) SendMail("[signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + "Buy Signal");
              if (Alerts) Alert("[" + Symbol() + "] " + DoubleToStr(Ask, Digits) + "Buy Signal");
              if (PlaySounds) PlaySound("alert.wav");
              g_count_316++;
           } else Print("Error opening BUY order : ", GetLastError());
        }
        if (EachTickMode) gi_352 = TRUE;
        if (!EachTickMode) g_bars_324 = Bars;
        return (0);
     }
  }
  if (li_0 == 2 && (EachTickMode && !gi_352) || (!EachTickMode && Bars != g_bars_324)) {
     if (SignalsOnly) {
        if (SignalMail) SendMail("[signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + "Sell Signal");
        if (Alerts) Alert("[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + "Sell Signal");
        if (PlaySounds) PlaySound("alert.wav");
     }
     if (!li_168 && !SignalsOnly) {
        if (AccountFreeMargin() < 1.0 * Lots) {
           Print("We have no money. Free Margin = ", AccountFreeMargin());
           return (0);
        }
        if (UseStopLoss) l_price_12 = Bid + StopLoss * Point;
        else l_price_12 = 0.0;
        if (UseTakeProfit) l_price_20 = Bid - TakeProfit * Point;
        else l_price_20 = 0.0;
        if (ECNBroker) l_ticket_8 = OrderModify(OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, 0, 0, g_comment_416, MagicNumber, 0, DeepPink), OrderOpenPrice(), l_price_12, l_price_20, 0, CLR_NONE);
        if (!ECNBroker) l_ticket_8 = OrderSend(Symbol(), OP_SELL, Lots, Bid, Slippage, l_price_12, l_price_20, g_comment_416, MagicNumber, 0, DeepPink);
        if (l_ticket_8 > 0) {
           if (OrderSelect(l_ticket_8, SELECT_BY_TICKET, MODE_TRADES)) {
              Print("SELL order opened : ", OrderOpenPrice());
              if (SignalMail) SendMail("[signal Alert]", "[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + "Sell Signal");
              if (Alerts) Alert("[" + Symbol() + "] " + DoubleToStr(Bid, Digits) + "Sell Signal");
              if (PlaySounds) PlaySound("alert.wav");
              g_count_316++;
           } else Print("Error opening SELL order : ", GetLastError());
        }
        if (EachTickMode) gi_352 = TRUE;
        if (!EachTickMode) g_bars_324 = Bars;
        return (0);
     }
  }
  if (!EachTickMode) g_bars_328 = Bars;
  return (0);
}

double BreakEvenValue(int ai_0, int a_ticket_4, int ai_8, int ai_unused_12) {
  OrderSelect(a_ticket_4, SELECT_BY_TICKET, MODE_TRADES);
  if (OrderType() == OP_BUY) {
     if (ai_0 && MoveStopWhenPrice > 0)
        if (Bid - OrderOpenPrice() >= Point * MoveStopWhenPrice) return (OrderOpenPrice() + Point * ai_8);
  }
  if (OrderType() == OP_SELL) {
     if (ai_0 && MoveStopWhenPrice > 0)
        if (OrderOpenPrice() - Ask >= Point * MoveStopWhenPrice) return (OrderOpenPrice() - Point * ai_8);
  }
  if (OrderType() != OP_BUY || OrderType() != OP_SELL) return (0);
  return (0.0);
}

double TrailingStopValue(int ai_0, int a_ticket_4, int ai_8) {
  OrderSelect(a_ticket_4, SELECT_BY_TICKET, MODE_TRADES);
  if (OrderType() == OP_BUY) {
     if (ai_0 && ai_8 > 0)
        if (Bid - OrderOpenPrice() > Point * ai_8) return (Bid - Point * ai_8);
  }
  if (OrderType() == OP_SELL) {
     if (ai_0 && ai_8 > 0)
        if (OrderOpenPrice() - Ask > Point * ai_8) return (Ask + Point * ai_8);
  }
  if (OrderType() != OP_BUY || OrderType() != OP_SELL) return (0);
  return (0.0);
}

void ManageOrders() {
  for (int l_count_0 = 0; l_count_0 < OrdersTotal(); l_count_0++) {
     if (OrderType() == OP_BUY && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Bid >= OrderOpenPrice() + PipsTarget_1 * Point && OrderLots() == Lots) {
           RefreshRates();
           if (Move_SL_1 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() + Move_SL_1 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_360, MarketInfo(OrderSymbol(), MODE_BID), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_SELL && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Ask <= OrderOpenPrice() - PipsTarget_1 * Point && OrderLots() == Lots) {
           RefreshRates();
           if (Move_SL_1 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() - Move_SL_1 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_360, MarketInfo(OrderSymbol(), MODE_ASK), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_BUY && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Bid >= OrderOpenPrice() + PipsTarget_2 * Point && OrderLots() == gd_392) {
           RefreshRates();
           if (Move_SL_2 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() + Move_SL_2 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_368, MarketInfo(OrderSymbol(), MODE_BID), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_SELL && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Ask <= OrderOpenPrice() - PipsTarget_2 * Point && OrderLots() == gd_392) {
           RefreshRates();
           if (Move_SL_2 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() - Move_SL_2 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_368, MarketInfo(OrderSymbol(), MODE_ASK), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_BUY && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Bid >= OrderOpenPrice() + PipsTarget_3 * Point && OrderLots() == gd_400) {
           RefreshRates();
           if (Move_SL_3 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() + Move_SL_3 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_376, MarketInfo(OrderSymbol(), MODE_BID), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_SELL && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Ask <= OrderOpenPrice() - PipsTarget_3 * Point && OrderLots() == gd_400) {
           RefreshRates();
           if (Move_SL_3 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() - Move_SL_3 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_376, MarketInfo(OrderSymbol(), MODE_ASK), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_BUY && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Bid >= OrderOpenPrice() + PipsTarget_4 * Point && OrderLots() == gd_408) {
           RefreshRates();
           if (Move_SL_4 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() + Move_SL_4 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_384, MarketInfo(OrderSymbol(), MODE_BID), 0, CLR_NONE);
        }
     }
     if (OrderType() == OP_SELL && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) {
        if (Ask <= OrderOpenPrice() - PipsTarget_4 * Point && OrderLots() == gd_408) {
           RefreshRates();
           if (Move_SL_4 > 0) OrderModify(OrderTicket(), OrderOpenPrice(), OrderOpenPrice() - Move_SL_4 * Point, OrderTakeProfit(), 0, CLR_NONE);
           RefreshRates();
           OrderClose(OrderTicket(), g_lots_384, MarketInfo(OrderSymbol(), MODE_ASK), 0, CLR_NONE);
        }
     }
  }
}

 

indicator :

//+------------------------------------------------------------------+
//|                                                       Zigzag.mq4 |
//|                 Copyright © 2005-2007, MetaQuotes Software Corp. |
//|                                       [url]http://www.metaquotes.net/[/url] |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2007, MetaQuotes Software Corp."
#property link      "http://www.metaquotes.net/"

#property indicator_chart_window
#property indicator_buffers 1
#property indicator_color1 Red
//---- indicator parameters
extern int ExtDepth=12;
extern int ExtDeviation=5;
extern int ExtBackstep=3;
//---- indicator buffers
double ZigzagBuffer[];
double HighMapBuffer[];
double LowMapBuffer[];
int level=3; // recounting's depth 
bool downloadhistory=false;
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
 {
  IndicatorBuffers(3);
//---- drawing settings
  SetIndexStyle(0,DRAW_SECTION);
//---- indicator buffers mapping
  SetIndexBuffer(0,ZigzagBuffer);
  SetIndexBuffer(1,HighMapBuffer);
  SetIndexBuffer(2,LowMapBuffer);
  SetIndexEmptyValue(0,0.0);

//---- indicator short name
  IndicatorShortName("ZigZag("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")");
//---- initialization done
  return(0);
 }
//+------------------------------------------------------------------+
//|                                                                  |
//+------------------------------------------------------------------+
int start()
 {
  int i, counted_bars = IndicatorCounted();
  int limit,counterZ,whatlookfor;
  int shift,back,lasthighpos,lastlowpos;
  double val,res;
  double curlow,curhigh,lasthigh,lastlow;

  if (counted_bars==0 && downloadhistory) // history was downloaded
    {
     ArrayInitialize(ZigzagBuffer,0.0);
     ArrayInitialize(HighMapBuffer,0.0);
     ArrayInitialize(LowMapBuffer,0.0);
    }
  if (counted_bars==0) 
    {
     limit=Bars-ExtDepth;
     downloadhistory=true;
    }
  if (counted_bars>0) 
    {
     while (counterZ<level && i<100)
       {
        res=ZigzagBuffer[i];
        if (res!=0) counterZ++;
        i++;
       }
     i--;
     limit=i;
     if (LowMapBuffer[i]!=0) 
       {
        curlow=LowMapBuffer[i];
        whatlookfor=1;
       }
     else
       {
        curhigh=HighMapBuffer[i];
        whatlookfor=-1;
       }
     for (i=limit-1;i>=0;i--)  
       {
        ZigzagBuffer[i]=0.0;  
        LowMapBuffer[i]=0.0;
        HighMapBuffer[i]=0.0;
       }
    }
     
  for(shift=limit; shift>=0; shift--)
    {
     val=Low[iLowest(NULL,0,MODE_LOW,ExtDepth,shift)];
     if(val==lastlow) val=0.0;
     else 
       { 
        lastlow=val; 
        if((Low[shift]-val)>(ExtDeviation*Point)) val=0.0;
        else
          {
           for(back=1; back<=ExtBackstep; back++)
             {
              res=LowMapBuffer[shift+back];
              if((res!=0)&&(res>val)) LowMapBuffer[shift+back]=0.0; 
             }
          }
       } 
     if (Low[shift]==val) LowMapBuffer[shift]=val; else LowMapBuffer[shift]=0.0;
     //--- high
     val=High[iHighest(NULL,0,MODE_HIGH,ExtDepth,shift)];
     if(val==lasthigh) val=0.0;
     else 
       {
        lasthigh=val;
        if((val-High[shift])>(ExtDeviation*Point)) val=0.0;
        else
          {
           for(back=1; back<=ExtBackstep; back++)
             {
              res=HighMapBuffer[shift+back];
              if((res!=0)&&(res<val)) HighMapBuffer[shift+back]=0.0; 
             } 
          }
       }
     if (High[shift]==val) HighMapBuffer[shift]=val; else HighMapBuffer[shift]=0.0;
    }

  // final cutting 
  if (whatlookfor==0)
    {
     lastlow=0;
     lasthigh=0;  
    }
  else
    {
     lastlow=curlow;
     lasthigh=curhigh;
    }
  for (shift=limit;shift>=0;shift--)
    {
     res=0.0;
     switch(whatlookfor)
       {
        case 0: // look for peak or lawn 
           if (lastlow==0 && lasthigh==0)
             {
              if (HighMapBuffer[shift]!=0)
                {
                 lasthigh=High[shift];
                 lasthighpos=shift;
                 whatlookfor=-1;
                 ZigzagBuffer[shift]=lasthigh;
                 res=1;
                }
              if (LowMapBuffer[shift]!=0)
                {
                 lastlow=Low[shift];
                 lastlowpos=shift;
                 whatlookfor=1;
                 ZigzagBuffer[shift]=lastlow;
                 res=1;
                }
             }
            break;  
        case 1: // look for peak
           if (LowMapBuffer[shift]!=0.0 && LowMapBuffer[shift]<lastlow && HighMapBuffer[shift]==0.0)
             {
              ZigzagBuffer[lastlowpos]=0.0;
              lastlowpos=shift;
              lastlow=LowMapBuffer[shift];
              ZigzagBuffer[shift]=lastlow;
              res=1;
             }
           if (HighMapBuffer[shift]!=0.0 && LowMapBuffer[shift]==0.0)
             {
              lasthigh=HighMapBuffer[shift];
              lasthighpos=shift;
              ZigzagBuffer[shift]=lasthigh;
              whatlookfor=-1;
              res=1;
             }   
           break;               
        case -1: // look for lawn
           if (HighMapBuffer[shift]!=0.0 && HighMapBuffer[shift]>lasthigh && LowMapBuffer[shift]==0.0)
             {
              ZigzagBuffer[lasthighpos]=0.0;
              lasthighpos=shift;
              lasthigh=HighMapBuffer[shift];
              ZigzagBuffer[shift]=lasthigh;
             }
           if (LowMapBuffer[shift]!=0.0 && HighMapBuffer[shift]==0.0)
             {
              lastlow=LowMapBuffer[shift];
              lastlowpos=shift;
              ZigzagBuffer[shift]=lastlow;
              whatlookfor=1;
             }   
           break;               
        default: return; 
       }
    }

  return(0);
 }
//+------------------------------------------------------------------+

[spoiler=stttttt... hey You .. YES you ... let tell me you A SECRET ... click here ... yeah ... click on this button ] II Vocabulary that you should know:

PLON=it mean someting that really bad ... REEEELY BAD like a BLOOD sucker stuff ...

CEMPLON= the PRODUCER OF SOMETHING THAT CLAIM GOOD but IT IS NOT ... and WASTED all YOUR MONEY!

---- make sure Oxford or Cambridge knows it ...--- K =D>

 

Posted

Re: USDBot EA

 

it doesnt trade on real accounts. can anyone please educate it.

 

I think it will trade when the opportunity will come, i set it up and after 5 minutes few trades were open, what MT4 brokes you guys recommend to use? Is Alpari UK good?

Posted

Re: Adaptive USDBot EA

 

I read from other forum that there is another Adaptive USDBOT EA that is being upsell during the purchase. Can anyone be kind enough to share it here? ^:)^ Its seems to be trading more profitable than this curent USDBOT. :-/

 

Regards,

Collin

Posted

Re: USDBot EA

 

Here's the new USDBOT including the extra USDBOT adaptive & manual -

 

In appreciation to Indo-Investiasi - this is my gift to you.

 

Enjoy! :)>-

 

Kudos Please

 

hxxp://[email protected]/file/208491857/ac1b1ad/USDBOT.html

hxxp://[email protected]/file/208491863/26812677/USDBOTAdaptive.html

hxxp://[email protected]/file/208491892/d61e0a2e/USDBOTGUIDE.html

When the solution is simple, God is answering.
Posted

Re: USDBot EA

 

Here's the new USDBOT including the extra USDBOT adaptive & manual -

 

In appreciation to Indo-Investiasi - this is my gift to you.

 

Enjoy! :)>-

 

Kudos Please

 

hxxp://[email protected]/file/208491857/ac1b1ad/USDBOT.html

 

hxxp://[email protected]/file/208491863/26812677/USDBOTAdaptive.html

 

hxxp://[email protected]/file/208491892/d61e0a2e/USDBOTGUIDE.html

 

Thanks ecashpro, Kudos to you for being so kind.

 

Do you have the manual for the USDBOTAdaptive? Not sure what timeframe I should be running for this case.

 

Thanks.

 

Regards,

Collin

Posted

Re: USDBot EA

 

does anyone have the set files from the members area which can generate the supposed live results on their website?

 

I have try to backtest both usdbot and the adaptive on IBFX, try to replicate the USDJPY result for the 1k account shown on their site for Jan21-22, it ended with a massive loss.

 

1 2010.01.22 01:35 sell 1 1.00 89.85 90.25 89.55 0.00 1000.00

2 2010.01.22 06:31 s/l 1 1.00 90.25 90.25 89.55 -443.21 556.79

Posted

Re: USDBot EA

 

Wow this is crazy guys.................

 

Strategy Tester Report

USDBOT

NordGroupInv-Demo (Build 225)

 

Symbol USDJPY (US Dollar vs Japanese Yen)

Period 5 Minutes (M5) 2009.09.15 23:20 - 2010.01.27 07:40

Model Every tick (the most precise method based on all available least timeframes)

Parameters Remark1="== USDBOT Settings =="; MagicNumber=14995; SignalsOnly=false; Alerts=false; SignalMail=false; PlaySounds=false; ECNBroker=false; PipBuffer=0; EachTickMode=true; Lots=0.1; MoneyManagement=false; Risk=0; Slippage=5; UseStopLoss=true; StopLoss=100; UseTakeProfit=true; TakeProfit=100; UseTrailingStop=false; TrailingStop=30; MoveStopOnce=false; MoveStopWhenPrice=50; MoveStopTo=1; Remark2=""; Remark3="== Other Settings (ZIG ZAG SYSTEM) =="; ExtDepth=2; ExtDeviation=1; ExtBackstep=1; Remark4="== Partial close lot management =="; Remark5="== Two options for Partial closing; =="; Remark6="== Close Percent of Initial Lotsize =="; Remark7="== or Close Percent of Remaining Lotsize =="; Use_Partial_Close=true; CloseFromInitialLotsize=true; PipsTarget_1=10; CloseLotsPercentage_1=10; Move_SL_1=1; PipsTarget_2=20; CloseLotsPercentage_2=10; Move_SL_2=0; PipsTarget_3=40; CloseLotsPercentage_3=10; Move_SL_3=0; PipsTarget_4=60; CloseLotsPercentage_4=10; Move_SL_4=0; Remark8="== Partial close lot management END ==";

Bars in test 26118 Ticks modelled 924217 Modelling quality 26.01%

Mismatched charts errors 1

Initial deposit 10000.00

Total net profit -9577.04 Gross profit 40056.61 Gross loss -49633.65

Profit factor 0.81 Expected payoff -9.28

Absolute drawdown 9577.04 Maximal drawdown 11275.41 (96.38%) Relative drawdown 96.38% (11275.41)

Total trades 1032 Short positions (won %) 475 (59.37%) Long positions (won %) 557 (49.37%)

Profit trades (% of total) 557 (53.97%) Loss trades (% of total) 475 (46.03%)

Largest profit trade 113.36 loss trade -115.03

Average profit trade 71.91 loss trade -104.49

Maximum consecutive wins (profit in money) 23 (1955.86) consecutive losses (loss in money) 20 (-651.66)

Maximal consecutive profit (count of wins) 1955.86 (23) consecutive loss (count of losses) -1580.16 (14)

Average consecutive wins 3 consecutive losses 3

Graph

# Time Type Order Size Price S / L T / P Profit Balance

1 2009.09.15 23:30 buy 1 0.10 91.09 90.09 92.09

2 2009.09.16 01:01 sell 2 0.10 90.98 91.98 89.98

3 2009.09.16 01:47 sell 3 0.10 90.89 91.89 89.89

4 2009.09.16 01:53 sell 4 0.10 90.87 91.87 89.87

5 2009.09.16 02:02 sell 5 0.10 90.89 91.89 89.89

6 2009.09.16 04:01 buy 6 0.10 91.01 90.01 92.01

7 2009.09.16 04:47 buy 7 0.10 91.03 90.03 92.03

8 2009.09.16 05:25 buy 8 0.10 91.03 90.03 92.03

9 2009.09.16 05:41 buy 9 0.10 91.05 90.05 92.05

10 2009.09.16 06:16 buy 10 0.10 91.06 90.06 92.06

11 2009.09.16 06:40 modify 10 0.10 91.06 91.07 92.06

12 2009.09.16 06:45 s/l 10 0.10 91.07 91.07 92.06 1.10 10001.10

13 2009.09.16 07:55 sell 11 0.10 90.93 91.93 89.93

14 2009.09.16 08:01 sell 12 0.10 90.91 91.91 89.91

15 2009.09.16 08:03 modify 12 0.10 90.91 90.90 89.91

16 2009.09.16 08:42 buy 13 0.10 90.67 89.67 91.67

17 2009.09.16 09:07 sell 14 0.10 90.52 91.52 89.52

18 2009.09.16 09:17 sell 15 0.10 90.49 91.49 89.49

19 2009.09.16 09:32 modify 15 0.10 90.49 90.48 89.49

20 2009.09.16 09:51 sell 16 0.10 90.29 91.29 89.29

21 2009.09.16 09:56 sell 17 0.10 90.25 91.25 89.25

22 2009.09.16 10:20 buy 18 0.10 90.42 89.42 91.42

23 2009.09.16 10:47 sell 19 0.10 90.28 91.28 89.28

24 2009.09.16 10:58 modify 19 0.10 90.28 90.27 89.28

25 2009.09.16 11:03 s/l 19 0.10 90.27 90.27 89.28 1.11 10002.21

26 2009.09.16 11:15 sell 20 0.10 90.12 91.12 89.12

27 2009.09.16 13:22 sell 21 0.10 90.31 91.31 89.31

28 2009.09.16 13:25 sell 22 0.10 90.31 91.31 89.31

29 2009.09.16 14:02 buy 23 0.10 90.44 89.44 91.44

30 2009.09.16 14:32 s/l 15 0.10 90.48 90.48 89.49 1.11 10003.32

31 2009.09.16 15:32 modify 23 0.10 90.44 90.45 91.44

32 2009.09.16 16:21 s/l 12 0.10 90.90 90.90 89.91 1.10 10004.42

33 2009.09.16 16:31 s/l 20 0.10 91.12 91.12 89.12 -109.75 9894.67

34 2009.09.16 16:41 s/l 17 0.10 91.25 91.25 89.25 -109.59 9785.08

35 2009.09.16 16:42 s/l 16 0.10 91.29 91.29 89.29 -109.54 9675.54

36 2009.09.16 16:42 s/l 21 0.10 91.31 91.31 89.31 -109.52 9566.02

37 2009.09.16 16:42 s/l 22 0.10 91.31 91.31 89.31 -109.52 9456.50

38 2009.09.16 17:32 buy 24 0.10 90.98 89.98 91.98

39 2009.09.16 17:48 modify 24 0.10 90.98 90.99 91.98

40 2009.09.16 17:54 s/l 24 0.10 90.99 90.99 91.98 1.10 9457.60

41 2009.09.16 18:48 buy 25 0.10 90.82 89.82 91.82

42 2009.09.16 18:51 buy 26 0.10 90.83 89.83 91.83

43 2009.09.16 19:06 modify 26 0.10 90.83 90.84 91.83

44 2009.09.16 19:35 buy 27 0.10 90.99 89.99 91.99

45 2009.09.16 19:45 buy 28 0.10 90.99 89.99 91.99

46 2009.09.16 19:55 buy 29 0.10 91.04 90.04 92.04

47 2009.09.16 20:57 sell 30 0.10 90.87 91.87 89.87

48 2009.09.16 21:04 sell 31 0.10 90.87 91.87 89.87

49 2009.09.16 21:23 sell 32 0.10 90.85 91.85 89.85

50 2009.09.16 21:26 s/l 26 0.10 90.84 90.84 91.83 1.10 9458.70

51 2009.09.16 21:26 sell 33 0.10 90.84 91.84 89.84

52 2009.09.16 22:55 sell 34 0.10 90.90 91.90 89.90

53 2009.09.16 23:03 sell 35 0.10 90.90 91.90 89.90

54 2009.09.16 23:08 sell 36 0.10 90.90 91.90 89.90

55 2009.09.16 23:13 sell 37 0.10 90.90 91.90 89.90

56 2009.09.16 23:15 sell 38 0.10 90.90 91.90 89.90

57 2009.09.16 23:35 sell 39 0.10 90.87 91.87 89.87

58 2009.09.16 23:50 sell 40 0.10 90.87 91.87 89.87

59 2009.09.17 00:18 sell 41 0.10 90.86 91.86 89.86

60 2009.09.17 01:42 buy 42 0.10 91.03 90.03 92.03

61 2009.09.17 01:50 buy 43 0.10 91.03 90.03 92.03

62 2009.09.17 02:09 modify 43 0.10 91.03 91.04 92.03

63 2009.09.17 02:50 buy 44 0.10 91.23 90.23 92.23

64 2009.09.17 03:15 sell 45 0.10 91.12 92.12 90.12

65 2009.09.17 03:23 s/l 43 0.10 91.04 91.04 92.03 1.10 9459.80

66 2009.09.17 03:35 modify 45 0.10 91.12 91.11 90.12

67 2009.09.17 03:49 s/l 45 0.10 91.11 91.11 90.12 1.10 9460.90

68 2009.09.17 05:17 sell 46 0.10 91.03 92.03 90.03

69 2009.09.17 05:30 sell 47 0.10 91.02 92.02 90.02

70 2009.09.17 05:47 sell 48 0.10 91.02 92.02 90.02

71 2009.09.17 05:59 sell 49 0.10 91.02 92.02 90.02

72 2009.09.17 06:08 sell 50 0.10 91.02 92.02 90.02

73 2009.09.17 06:10 sell 51 0.10 91.02 92.02 90.02

74 2009.09.17 07:00 buy 52 0.10 91.14 90.14 92.14

75 2009.09.17 07:53 sell 53 0.10 91.07 92.07 90.07

76 2009.09.17 08:17 sell 54 0.10 91.06 92.06 90.06

77 2009.09.17 08:23 modify 54 0.10 91.06 91.05 90.06

78 2009.09.17 09:02 sell 55 0.10 90.83 91.83 89.83

79 2009.09.17 09:21 buy 56 0.10 90.97 89.97 91.97

80 2009.09.17 09:47 sell 57 0.10 90.57 91.57 89.57

81 2009.09.17 09:53 sell 58 0.10 90.53 91.53 89.53

82 2009.09.17 10:30 buy 59 0.10 90.73 89.73 91.73

83 2009.09.17 11:06 sell 60 0.10 90.69 91.69 89.69

84 2009.09.17 11:22 sell 61 0.10 90.66 91.66 89.66

85 2009.09.17 12:25 buy 62 0.10 90.86 89.86 91.86

86 2009.09.17 12:35 buy 63 0.10 90.86 89.86 91.86

87 2009.09.17 13:00 buy 64 0.10 90.97 89.97 91.97

88 2009.09.17 13:01 s/l 54 0.10 91.05 91.05 90.06 1.10 9462.00

89 2009.09.17 13:02 modify 64 0.10 90.97 90.98 91.97

90 2009.09.17 13:08 s/l 64 0.10 90.98 90.98 91.97 1.10 9463.10

91 2009.09.17 13:08 modify 63 0.10 90.86 90.87 91.86

92 2009.09.17 13:37 t/p 18 0.10 91.42 89.42 91.42 108.73 9571.83

93 2009.09.17 13:38 t/p 23 0.10 91.44 90.45 91.44 108.70 9680.53

94 2009.09.17 14:31 buy 65 0.10 91.44 90.44 92.44

95 2009.09.17 14:32 s/l 14 0.10 91.52 91.52 89.52 -109.60 9570.93

96 2009.09.17 14:32 s/l 58 0.10 91.53 91.53 89.53 -109.25 9461.68

97 2009.09.17 14:32 s/l 57 0.10 91.57 91.57 89.57 -109.21 9352.47

98 2009.09.17 14:32 modify 65 0.10 91.44 91.45 92.44

99 2009.09.17 14:37 s/l 65 0.10 91.45 91.45 92.44 1.09 9353.56

100 2009.09.17 14:54 sell 66 0.10 91.22 92.22 90.22

101 2009.09.17 15:13 buy 67 0.10 91.38 90.38 92.38

102 2009.09.17 15:31 buy 68 0.10 91.41 90.41 92.41

103 2009.09.17 15:47 buy 69 0.10 91.43 90.43 92.43

104 2009.09.17 17:32 sell 70 0.10 91.09 92.09 90.09

105 2009.09.17 17:55 buy 71 0.10 91.21 90.21 92.21

106 2009.09.17 18:27 modify 71 0.10 91.21 91.22 92.21

107 2009.09.17 19:05 sell 72 0.10 91.23 92.23 90.23

108 2009.09.17 19:05 s/l 71 0.10 91.22 91.22 92.21 1.10 9354.66

109 2009.09.17 19:15 sell 73 0.10 91.22 92.22 90.22

110 2009.09.17 20:16 sell 74 0.10 91.14 92.14 90.14

111 2009.09.17 20:28 modify 74 0.10 91.14 91.13 90.14

112 2009.09.17 20:34 s/l 74 0.10 91.13 91.13 90.14 1.10 9355.76

113 2009.09.17 20:42 modify 73 0.10 91.22 91.21 90.22

114 2009.09.17 21:02 buy 75 0.10 91.19 90.19 92.19

115 2009.09.17 21:07 buy 76 0.10 91.19 90.19 92.19

116 2009.09.17 21:20 buy 77 0.10 91.20 90.20 92.20

117 2009.09.17 21:25 s/l 73 0.10 91.21 91.21 90.22 1.10 9356.86

118 2009.09.17 22:45 sell 78 0.10 91.09 92.09 90.09

119 2009.09.17 23:41 sell 79 0.10 91.02 92.02 90.02

120 2009.09.18 00:36 buy 80 0.10 91.19 90.19 92.19

121 2009.09.18 00:55 buy 81 0.10 91.21 90.21 92.21

122 2009.09.18 02:02 buy 82 0.10 91.26 90.26 92.26

123 2009.09.18 02:05 buy 83 0.10 91.26 90.26 92.26

124 2009.09.18 02:17 buy 84 0.10 91.26 90.26 92.26

125 2009.09.18 03:05 buy 85 0.10 91.24 90.24 92.24

126 2009.09.18 03:28 modify 85 0.10 91.24 91.25 92.24

127 2009.09.18 03:45 s/l 85 0.10 91.25 91.25 92.24 1.10 9357.96

128 2009.09.18 04:05 sell 86 0.10 91.22 92.22 90.22

129 2009.09.18 06:02 sell 87 0.10 91.19 92.19 90.19

130 2009.09.18 07:41 modify 87 0.10 91.19 91.18 90.19

131 2009.09.18 08:05 s/l 87 0.10 91.18 91.18 90.19 1.10 9359.06

132 2009.09.18 08:14 modify 86 0.10 91.22 91.21 90.22

133 2009.09.18 08:27 sell 88 0.10 91.07 92.07 90.07

134 2009.09.18 08:31 sell 89 0.10 91.07 92.07 90.07

135 2009.09.18 09:30 s/l 86 0.10 91.21 91.21 90.22 1.10 9360.16

136 2009.09.18 10:11 buy 90 0.10 91.31 90.31 92.31

137 2009.09.18 11:28 modify 90 0.10 91.31 91.32 92.31

138 2009.09.18 11:33 s/l 90 0.10 91.32 91.32 92.31 1.10 9361.26

139 2009.09.18 11:55 buy 91 0.10 91.32 90.32 92.32

140 2009.09.18 12:05 buy 92 0.10 91.34 90.34 92.34

141 2009.09.18 12:13 buy 93 0.10 91.36 90.36 92.36

142 2009.09.18 15:30 buy 94 0.10 91.31 90.31 92.31

143 2009.09.18 16:12 buy 95 0.10 91.41 90.41 92.41

144 2009.09.18 16:15 buy 96 0.10 91.42 90.42 92.42

145 2009.09.18 16:20 modify 96 0.10 91.42 91.43 92.42

146 2009.09.18 16:23 s/l 96 0.10 91.43 91.43 92.42 1.09 9362.35

147 2009.09.18 16:40 sell 97 0.10 91.32 92.32 90.32

148 2009.09.18 16:46 sell 98 0.10 91.32 92.32 90.32

149 2009.09.18 16:52 modify 98 0.10 91.32 91.31 90.32

150 2009.09.18 16:57 s/l 98 0.10 91.31 91.31 90.32 1.10 9363.45

151 2009.09.18 17:56 buy 99 0.10 91.32 90.32 92.32

152 2009.09.18 18:26 buy 100 0.10 91.39 90.39 92.39

153 2009.09.18 20:30 sell 101 0.10 91.36 92.36 90.36

154 2009.09.18 21:16 buy 102 0.10 91.41 90.41 92.41

155 2009.09.18 21:20 buy 103 0.10 91.41 90.41 92.41

156 2009.09.18 21:51 buy 104 0.10 91.41 90.41 92.41

157 2009.09.21 02:31 buy 105 0.10 91.45 90.45 92.45

158 2009.09.21 02:55 buy 106 0.10 91.50 90.50 92.50

159 2009.09.21 03:05 buy 107 0.10 91.50 90.50 92.50

160 2009.09.21 04:55 buy 108 0.10 91.54 90.54 92.54

161 2009.09.21 07:05 s/l 61 0.10 91.66 91.66 89.66 -109.32 9254.13

162 2009.09.21 07:05 modify 108 0.10 91.54 91.55 92.54

163 2009.09.21 07:05 s/l 60 0.10 91.69 91.69 89.69 -109.28 9144.85

164 2009.09.21 07:05 t/p 13 0.10 91.67 89.67 91.67 107.99 9252.85

165 2009.09.21 07:06 t/p 59 0.10 91.73 89.73 91.73 108.58 9361.43

166 2009.09.21 07:06 s/l 55 0.10 91.83 91.83 89.83 -109.12 9252.31

167 2009.09.21 07:07 s/l 33 0.10 91.84 91.84 89.84 -109.44 9142.87

168 2009.09.21 07:07 t/p 25 0.10 91.82 89.82 91.82 107.81 9250.68

169 2009.09.21 07:07 s/l 32 0.10 91.85 91.85 89.85 -109.42 9141.26

170 2009.09.21 07:07 s/l 41 0.10 91.86 91.86 89.86 -109.08 9032.18

171 2009.09.21 07:07 s/l 4 0.10 91.87 91.87 89.87 -109.40 8922.78

172 2009.09.21 07:07 s/l 30 0.10 91.87 91.87 89.87 -109.40 8813.38

173 2009.09.21 07:07 s/l 31 0.10 91.87 91.87 89.87 -109.40 8703.98

174 2009.09.21 07:07 s/l 39 0.10 91.87 91.87 89.87 -109.40 8594.59

175 2009.09.21 07:07 s/l 40 0.10 91.87 91.87 89.87 -109.40 8485.19

176 2009.09.21 07:07 s/l 3 0.10 91.89 91.89 89.89 -109.38 8375.81

177 2009.09.21 07:07 s/l 5 0.10 91.89 91.89 89.89 -109.38 8266.43

178 2009.09.21 07:07 t/p 62 0.10 91.86 89.86 91.86 108.42 8374.85

179 2009.09.21 07:07 t/p 63 0.10 91.86 90.87 91.86 108.42 8483.27

180 2009.09.21 07:07 s/l 34 0.10 91.90 91.90 89.90 -109.36 8373.91

181 2009.09.21 07:07 s/l 35 0.10 91.90 91.90 89.90 -109.36 8264.55

182 2009.09.21 07:07 s/l 36 0.10 91.90 91.90 89.90 -109.36 8155.19

183 2009.09.21 07:07 s/l 37 0.10 91.90 91.90 89.90 -109.36 8045.83

184 2009.09.21 07:07 s/l 38 0.10 91.90 91.90 89.90 -109.36 7936.47

185 2009.09.21 07:11 s/l 11 0.10 91.93 91.93 89.93 -109.33 7827.15

186 2009.09.21 07:12 s/l 2 0.10 91.98 91.98 89.98 -109.27 7717.88

187 2009.09.21 07:13 t/p 56 0.10 91.97 89.97 91.97 108.29 7826.17

188 2009.09.21 07:13 t/p 27 0.10 91.99 89.99 91.99 107.61 7933.78

189 2009.09.21 07:13 t/p 28 0.10 91.99 89.99 91.99 107.61 8041.39

190 2009.09.21 07:13 s/l 47 0.10 92.02 92.02 90.02 -108.89 7932.50

191 2009.09.21 07:13 s/l 48 0.10 92.02 92.02 90.02 -108.89 7823.61

192 2009.09.21 07:13 s/l 49 0.10 92.02 92.02 90.02 -108.89 7714.72

193 2009.09.21 07:13 s/l 50 0.10 92.02 92.02 90.02 -108.89 7605.83

194 2009.09.21 07:13 s/l 51 0.10 92.02 92.02 90.02 -108.89 7496.94

195 2009.09.21 07:13 s/l 79 0.10 92.02 92.02 90.02 -108.89 7388.05

196 2009.09.21 07:13 s/l 46 0.10 92.03 92.03 90.03 -108.88 7279.17

197 2009.09.21 08:05 buy 109 0.10 92.03 91.03 93.03

198 2009.09.21 08:10 t/p 6 0.10 92.01 90.01 92.01 107.58 7386.76

199 2009.09.21 08:10 buy 110 0.10 92.04 91.04 93.04

200 2009.09.21 08:11 t/p 7 0.10 92.03 90.03 92.03 107.56 7494.32

201 2009.09.21 08:11 t/p 8 0.10 92.03 90.03 92.03 107.56 7601.88

202 2009.09.21 08:11 t/p 42 0.10 92.03 90.03 92.03 108.22 7710.10

203 2009.09.21 08:19 t/p 29 0.10 92.04 90.04 92.04 107.55 7817.65

204 2009.09.21 08:19 s/l 53 0.10 92.07 92.07 90.07 -108.83 7708.82

205 2009.09.21 08:19 s/l 88 0.10 92.07 92.07 90.07 -108.72 7600.10

206 2009.09.21 08:19 s/l 89 0.10 92.07 92.07 90.07 -108.72 7491.38

207 2009.09.21 08:19 buy 111 0.10 92.07 91.07 93.07

208 2009.09.21 08:19 t/p 9 0.10 92.05 90.05 92.05 107.54 7598.93

209 2009.09.21 08:19 s/l 70 0.10 92.09 92.09 90.09 -108.81 7490.12

210 2009.09.21 08:19 s/l 78 0.10 92.09 92.09 90.09 -108.81 7381.31

211 2009.09.21 08:20 t/p 1 0.10 92.09 90.09 92.09 107.27 7488.58

212 2009.09.21 08:32 buy 112 0.10 92.13 91.13 93.13

213 2009.09.21 08:33 t/p 52 0.10 92.14 90.14 92.14 108.09 7596.67

214 2009.09.21 09:11 sell 113 0.10 92.03 93.03 91.03

215 2009.09.21 09:28 sell 114 0.10 91.97 92.97 90.97

216 2009.09.21 09:33 sell 115 0.10 91.95 92.95 90.95

217 2009.09.21 10:45 buy 116 0.10 92.09 91.09 93.09

218 2009.09.21 10:57 buy 117 0.10 92.09 91.09 93.09

219 2009.09.21 11:00 buy 118 0.10 92.09 91.09 93.09

220 2009.09.21 11:18 s/l 66 0.10 92.22 92.22 90.22 -108.66 7488.01

221 2009.09.21 11:18 t/p 75 0.10 92.19 90.19 92.19 108.03 7596.04

222 2009.09.21 11:18 t/p 76 0.10 92.19 90.19 92.19 108.03 7704.07

223 2009.09.21 11:18 t/p 80 0.10 92.19 90.19 92.19 108.25 7812.32

224 2009.09.21 11:18 modify 118 0.10 92.09 92.10 93.09

225 2009.09.21 11:28 s/l 118 0.10 92.10 92.10 93.09 1.09 7813.41

226 2009.09.21 11:46 modify 117 0.10 92.09 92.10 93.09

227 2009.09.21 11:46 buy 119 0.10 92.22 91.22 93.22

228 2009.09.21 11:46 s/l 72 0.10 92.23 92.23 90.23 -108.64 7704.77

229 2009.09.21 11:46 t/p 77 0.10 92.20 90.20 92.20 108.02 7812.79

230 2009.09.21 11:58 s/l 117 0.10 92.10 92.10 93.09 1.09 7813.88

231 2009.09.21 12:12 buy 120 0.10 92.23 91.23 93.23

232 2009.09.21 12:25 buy 121 0.10 92.23 91.23 93.23

233 2009.09.21 12:30 buy 122 0.10 92.23 91.23 93.23

234 2009.09.21 12:30 t/p 81 0.10 92.21 90.21 92.21 108.23 7922.11

235 2009.09.21 12:32 t/p 44 0.10 92.23 90.23 92.23 107.98 8030.09

236 2009.09.21 12:41 t/p 82 0.10 92.26 90.26 92.26 108.17 8138.27

237 2009.09.21 12:41 t/p 83 0.10 92.26 90.26 92.26 108.17 8246.44

238 2009.09.21 12:41 t/p 84 0.10 92.26 90.26 92.26 108.17 8354.61

239 2009.09.21 12:42 s/l 97 0.10 92.32 92.32 90.32 -108.43 8246.18

240 2009.09.21 12:43 t/p 94 0.10 92.31 90.31 92.31 108.11 8354.29

241 2009.09.21 12:43 t/p 91 0.10 92.32 90.32 92.32 108.10 8462.39

242 2009.09.21 12:43 t/p 99 0.10 92.32 90.32 92.32 108.10 8570.49

243 2009.09.21 12:43 s/l 101 0.10 92.36 92.36 90.36 -108.38 8462.11

244 2009.09.21 12:43 modify 122 0.10 92.23 92.24 93.23

245 2009.09.21 12:45 t/p 92 0.10 92.34 90.34 92.34 108.08 8570.19

246 2009.09.21 13:02 s/l 122 0.10 92.24 92.24 93.23 1.08 8571.27

247 2009.09.21 14:00 sell 123 0.10 92.17 93.17 91.17

248 2009.09.21 14:13 t/p 93 0.10 92.36 90.36 92.36 108.05 8679.32

249 2009.09.21 14:14 t/p 67 0.10 92.38 90.38 92.38 107.81 8787.13

250 2009.09.21 14:14 t/p 100 0.10 92.39 90.39 92.39 108.02 8895.15

251 2009.09.21 14:14 t/p 68 0.10 92.41 90.41 92.41 107.77 9002.92

252 2009.09.21 14:14 t/p 95 0.10 92.41 90.41 92.41 107.99 9110.91

253 2009.09.21 14:14 t/p 102 0.10 92.41 90.41 92.41 107.99 9218.90

254 2009.09.21 14:14 t/p 103 0.10 92.41 90.41 92.41 107.99 9326.89

255 2009.09.21 14:14 t/p 104 0.10 92.41 90.41 92.41 107.99 9434.88

256 2009.09.21 14:18 t/p 69 0.10 92.43 90.43 92.43 107.75 9542.63

257 2009.09.21 14:20 t/p 105 0.10 92.45 90.45 92.45 108.17 9650.80

258 2009.09.21 14:22 t/p 106 0.10 92.50 90.50 92.50 108.11 9758.91

259 2009.09.21 14:22 t/p 107 0.10 92.50 90.50 92.50 108.11 9867.02

260 2009.09.21 15:08 sell 124 0.10 92.38 93.38 91.38

261 2009.09.21 15:29 sell 125 0.10 92.38 93.38 91.38

262 2009.09.21 15:40 sell 126 0.10 92.37 93.37 91.37

263 2009.09.21 16:03 sell 127 0.10 92.31 93.31 91.31

264 2009.09.21 16:06 sell 128 0.10 92.30 93.30 91.30

265 2009.09.21 16:23 sell 129 0.10 92.22 93.22 91.22

266 2009.09.21 16:38 sell 130 0.10 92.22 93.22 91.22

267 2009.09.21 16:41 sell 131 0.10 92.22 93.22 91.22

268 2009.09.21 16:54 sell 132 0.10 92.22 93.22 91.22

269 2009.09.21 17:09 sell 133 0.10 92.18 93.18 91.18

270 2009.09.21 17:18 modify 133 0.10 92.18 92.17 91.18

271 2009.09.21 17:30 sell 134 0.10 92.02 93.02 91.02

272 2009.09.21 17:36 modify 134 0.10 92.02 92.01 91.02

273 2009.09.21 18:52 buy 135 0.10 91.99 90.99 92.99

274 2009.09.21 18:53 s/l 134 0.10 92.01 92.01 91.02 1.09 9868.11

275 2009.09.21 19:21 modify 135 0.10 91.99 92.00 92.99

276 2009.09.21 19:46 s/l 135 0.10 92.00 92.00 92.99 1.09 9869.20

277 2009.09.21 20:10 sell 136 0.10 91.98 92.98 90.98

278 2009.09.21 20:22 sell 137 0.10 91.98 92.98 90.98

279 2009.09.21 20:58 s/l 133 0.10 92.17 92.17 91.18 1.08 9870.28

280 2009.09.21 22:32 sell 138 0.10 92.00 93.00 91.00

281 2009.09.21 22:47 sell 139 0.10 92.00 93.00 91.00

282 2009.09.21 23:37 buy 140 0.10 92.06 91.06 93.06

283 2009.09.21 23:40 buy 141 0.10 92.08 91.08 93.08

284 2009.09.22 00:00 sell 142 0.10 91.96 92.96 90.96

285 2009.09.22 01:06 sell 143 0.10 91.99 92.99 90.99

286 2009.09.22 02:47 modify 143 0.10 91.99 91.98 90.99

287 2009.09.22 03:40 sell 144 0.10 91.69 92.69 90.69

288 2009.09.22 03:45 sell 145 0.10 91.66 92.66 90.66

289 2009.09.22 04:30 sell 146 0.10 91.70 92.70 90.70

290 2009.09.22 06:36 sell 147 0.10 91.72 92.72 90.72

291 2009.09.22 06:46 sell 148 0.10 91.72 92.72 90.72

292 2009.09.22 06:58 buy 149 0.10 91.79 90.79 92.79

293 2009.09.22 07:30 sell 150 0.10 91.63 92.63 90.63

294 2009.09.22 07:46 buy 151 0.10 91.74 90.74 92.74

295 2009.09.22 07:55 buy 152 0.10 91.75 90.75 92.75

296 2009.09.22 08:22 s/l 108 0.10 91.55 91.55 92.54 0.87 9871.15

297 2009.09.22 08:42 t/p 124 0.10 91.38 93.38 91.38 109.32 9980.47

298 2009.09.22 08:42 t/p 125 0.10 91.38 93.38 91.38 109.32 10089.79

299 2009.09.22 08:42 t/p 126 0.10 91.37 93.37 91.37 109.34 10199.13

300 2009.09.22 08:57 sell 153 0.10 91.33 92.33 90.33

301 2009.09.22 09:28 t/p 127 0.10 91.31 93.31 91.31 109.41 10308.54

302 2009.09.22 09:28 t/p 128 0.10 91.30 93.30 91.30 109.42 10417.96

303 2009.09.22 09:33 s/l 120 0.10 91.23 91.23 93.23 -109.83 10308.13

304 2009.09.22 09:33 s/l 121 0.10 91.23 91.23 93.23 -109.83 10198.31

305 2009.09.22 09:33 s/l 119 0.10 91.22 91.22 93.22 -109.85 10088.46

306 2009.09.22 09:35 modify 153 0.10 91.33 91.32 90.33

307 2009.09.22 09:35 t/p 129 0.10 91.22 93.22 91.22 109.52 10197.98

308 2009.09.22 09:35 t/p 130 0.10 91.22 93.22 91.22 109.52 10307.50

309 2009.09.22 09:35 t/p 131 0.10 91.22 93.22 91.22 109.52 10417.02

310 2009.09.22 09:35 t/p 132 0.10 91.22 93.22 91.22 109.52 10526.54

311 2009.09.22 09:35 t/p 123 0.10 91.17 93.17 91.17 109.58 10636.12

312 2009.09.22 09:36 s/l 112 0.10 91.13 91.13 93.13 -109.95 10526.17

313 2009.09.22 09:42 s/l 153 0.10 91.32 91.32 90.33 1.10 10527.27

314 2009.09.22 10:22 buy 154 0.10 91.41 90.41 92.41

315 2009.09.22 10:55 buy 155 0.10 91.43 90.43 92.43

316 2009.09.22 11:08 modify 155 0.10 91.43 91.44 92.43

317 2009.09.22 11:23 buy 156 0.10 91.56 90.56 92.56

318 2009.09.22 11:29 s/l 155 0.10 91.44 91.44 92.43 1.09 10528.36

319 2009.09.22 12:42 buy 157 0.10 91.46 90.46 92.46

320 2009.09.22 12:45 buy 158 0.10 91.46 90.46 92.46

321 2009.09.22 13:18 sell 159 0.10 91.39 92.39 90.39

322 2009.09.22 13:27 sell 160 0.10 91.37 92.37 90.37

323 2009.09.22 14:25 sell 161 0.10 91.37 92.37 90.37

324 2009.09.22 14:40 sell 162 0.10 91.29 92.29 90.29

325 2009.09.22 15:09 sell 163 0.10 91.21 92.21 90.21

326 2009.09.22 15:18 s/l 116 0.10 91.09 91.09 93.09 -110.00 10418.36

327 2009.09.22 15:18 s/l 141 0.10 91.08 91.08 93.08 -110.01 10308.35

328 2009.09.22 15:18 modify 163 0.10 91.21 91.20 90.21

329 2009.09.22 15:18 s/l 111 0.10 91.07 91.07 93.07 -110.03 10198.32

330 2009.09.22 15:18 s/l 140 0.10 91.06 91.06 93.06 -110.04 10088.28

331 2009.09.22 15:20 s/l 163 0.10 91.20 91.20 90.21 1.10 10089.38

332 2009.09.22 15:21 modify 162 0.10 91.29 91.28 90.29

333 2009.09.22 15:25 s/l 110 0.10 91.04 91.04 93.04 -110.06 9979.32

334 2009.09.22 15:25 s/l 109 0.10 91.03 91.03 93.03 -110.07 9869.25

335 2009.09.22 15:25 t/p 113 0.10 91.03 93.03 91.03 109.74 9978.99

336 2009.09.22 15:25 t/p 138 0.10 91.00 93.00 91.00 109.78 10088.77

337 2009.09.22 15:25 t/p 139 0.10 91.00 93.00 91.00 109.78 10198.55

338 2009.09.22 16:30 buy 164 0.10 91.19 90.19 92.19

339 2009.09.22 16:43 s/l 162 0.10 91.28 91.28 90.29 1.10 10199.65

340 2009.09.22 17:18 t/p 143 0.10 90.99 91.98 90.99 109.90 10309.55

341 2009.09.22 17:18 t/p 136 0.10 90.98 92.98 90.98 109.80 10419.35

342 2009.09.22 17:18 t/p 137 0.10 90.98 92.98 90.98 109.80 10529.15

343 2009.09.22 17:18 t/p 114 0.10 90.97 92.97 90.97 109.82 10638.97

344 2009.09.22 17:18 t/p 142 0.10 90.96 92.96 90.96 109.94 10748.91

345 2009.09.22 18:01 buy 165 0.10 91.14 90.14 92.14

346 2009.09.22 18:20 buy 166 0.10 91.19 90.19 92.19

347 2009.09.22 18:26 buy 167 0.10 91.19 90.19 92.19

348 2009.09.22 21:17 sell 168 0.10 91.20 92.20 90.20

349 2009.09.22 21:30 sell 169 0.10 91.18 92.18 90.18

350 2009.09.22 22:10 sell 170 0.10 91.13 92.13 90.13

351 2009.09.22 22:17 sell 171 0.10 91.12 92.12 90.12

352 2009.09.22 22:25 sell 172 0.10 91.12 92.12 90.12

353 2009.09.23 00:41 buy 173 0.10 91.21 90.21 92.21

354 2009.09.23 01:20 t/p 115 0.10 90.95 92.95 90.95 109.73 10858.64

355 2009.09.23 01:22 s/l 149 0.10 90.79 90.79 92.79 -110.36 10748.28

356 2009.09.23 01:22 s/l 152 0.10 90.75 90.75 92.75 -110.41 10637.87

357 2009.09.23 01:22 s/l 151 0.10 90.74 90.74 92.74 -110.42 10527.45

358 2009.09.23 01:23 t/p 147 0.10 90.72 92.72 90.72 110.12 10637.57

359 2009.09.23 01:23 t/p 148 0.10 90.72 92.72 90.72 110.12 10747.69

360 2009.09.23 01:23 t/p 146 0.10 90.70 92.70 90.70 110.14 10857.83

361 2009.09.23 01:23 t/p 144 0.10 90.69 92.69 90.69 110.16 10967.99

362 2009.09.23 01:23 t/p 145 0.10 90.66 92.66 90.66 110.19 11078.18

363 2009.09.23 01:23 t/p 150 0.10 90.63 92.63 90.63 110.23 11188.41

364 2009.09.23 01:23 s/l 156 0.10 90.56 90.56 92.56 -110.64 11077.77

365 2009.09.23 01:47 buy 174 0.10 90.76 89.76 91.76

366 2009.09.23 02:01 buy 175 0.10 90.83 89.83 91.83

367 2009.09.23 02:37 buy 176 0.10 90.90 89.90 91.90

368 2009.09.23 02:52 modify 176 0.10 90.90 90.91 91.90

369 2009.09.23 02:59 s/l 176 0.10 90.91 90.91 91.90 1.10 11078.87

370 2009.09.23 03:05 modify 175 0.10 90.83 90.84 91.83

371 2009.09.23 03:17 s/l 175 0.10 90.84 90.84 91.83 1.10 11079.97

372 2009.09.23 03:18 modify 174 0.10 90.76 90.77 91.76

373 2009.09.23 03:52 s/l 174 0.10 90.77 90.77 91.76 1.10 11081.07

374 2009.09.23 04:25 buy 177 0.10 90.87 89.87 91.87

375 2009.09.23 04:30 buy 178 0.10 90.87 89.87 91.87

376 2009.09.23 05:15 buy 179 0.10 90.76 89.76 91.76

377 2009.09.23 05:21 buy 180 0.10 90.76 89.76 91.76

378 2009.09.23 05:25 buy 181 0.10 90.76 89.76 91.76

379 2009.09.23 06:30 buy 182 0.10 90.79 89.79 91.79

380 2009.09.23 06:40 sell 183 0.10 90.72 91.72 89.72

381 2009.09.23 07:30 sell 184 0.10 90.69 91.69 89.69

382 2009.09.23 07:35 buy 185 0.10 90.76 89.76 91.76

383 2009.09.23 08:23 buy 186 0.10 90.78 89.78 91.78

384 2009.09.23 08:26 buy 187 0.10 90.79 89.79 91.79

385 2009.09.23 08:53 buy 188 0.10 90.88 89.88 91.88

386 2009.09.23 08:56 buy 189 0.10 90.88 89.88 91.88

387 2009.09.23 09:10 modify 189 0.10 90.88 90.89 91.88

388 2009.09.23 09:22 s/l 189 0.10 90.89 90.89 91.88 1.10 11082.17

389 2009.09.23 09:33 modify 188 0.10 90.88 90.89 91.88

390 2009.09.23 09:40 buy 190 0.10 91.03 90.03 92.03

391 2009.09.23 10:25 buy 191 0.10 91.04 90.04 92.04

392 2009.09.23 10:38 s/l 188 0.10 90.89 90.89 91.88 1.10 11083.27

393 2009.09.23 11:37 buy 192 0.10 90.96 89.96 91.96

394 2009.09.23 12:00 modify 192 0.10 90.96 90.97 91.96

395 2009.09.23 12:41 buy 193 0.10 91.29 90.29 92.29

396 2009.09.23 13:02 buy 194 0.10 91.41 90.41 92.41

397 2009.09.23 14:00 sell 195 0.10 91.23 92.23 90.23

398 2009.09.23 14:05 sell 196 0.10 91.22 92.22 90.22

399 2009.09.23 14:21 sell 197 0.10 91.20 92.20 90.20

400 2009.09.23 15:07 buy 198 0.10 91.37 90.37 92.37

401 2009.09.23 15:10 buy 199 0.10 91.39 90.39 92.39

402 2009.09.23 15:42 buy 200 0.10 91.44 90.44 92.44

403 2009.09.23 15:55 buy 201 0.10 91.47 90.47 92.47

404 2009.09.23 16:47 sell 202 0.10 91.33 92.33 90.33

405 2009.09.23 17:37 buy 203 0.10 91.48 90.48 92.48

406 2009.09.23 18:40 buy 204 0.10 91.45 90.45 92.45

407 2009.09.23 19:46 sell 205 0.10 91.37 92.37 90.37

408 2009.09.23 19:58 sell 206 0.10 91.34 92.34 90.34

409 2009.09.23 20:17 modify 206 0.10 91.34 91.33 90.34

410 2009.09.23 20:18 s/l 192 0.10 90.97 90.97 91.96 1.10 11084.37

411 2009.09.23 20:57 buy 207 0.10 91.25 90.25 92.25

412 2009.09.23 21:33 buy 208 0.10 91.28 90.28 92.28

413 2009.09.23 21:50 buy 209 0.10 91.31 90.31 92.31

414 2009.09.23 21:51 s/l 206 0.10 91.33 91.33 90.34 1.09 11085.46

415 2009.09.23 21:53 modify 209 0.10 91.31 91.32 92.31

416 2009.09.23 21:58 s/l 209 0.10 91.32 91.32 92.31 1.10 11086.56

417 2009.09.23 22:06 modify 208 0.10 91.28 91.29 92.28

418 2009.09.23 22:08 buy 210 0.10 91.48 90.48 92.48

419 2009.09.23 22:35 sell 211 0.10 91.32 92.32 90.32

420 2009.09.23 22:41 sell 212 0.10 91.33 92.33 90.33

421 2009.09.23 22:43 s/l 208 0.10 91.29 91.29 92.28 1.10 11087.66

422 2009.09.24 00:17 buy 213 0.10 91.61 90.61 92.61

423 2009.09.24 00:47 sell 214 0.10 91.41 92.41 90.41

424 2009.09.24 02:02 modify 214 0.10 91.41 91.40 90.41

425 2009.09.24 02:23 sell 215 0.10 91.22 92.22 90.22

426 2009.09.24 02:40 buy 216 0.10 91.32 90.32 92.32

427 2009.09.24 02:56 sell 217 0.10 91.23 92.23 90.23

428 2009.09.24 03:08 modify 217 0.10 91.23 91.22 90.23

429 2009.09.24 03:15 s/l 217 0.10 91.22 91.22 90.23 1.10 11088.76

430 2009.09.24 03:43 buy 218 0.10 91.25 90.25 92.25

431 2009.09.24 05:07 sell 219 0.10 91.13 92.13 90.13

432 2009.09.24 05:12 sell 220 0.10 91.11 92.11 90.11

433 2009.09.24 05:30 modify 220 0.10 91.11 91.10 90.11

434 2009.09.24 06:43 sell 221 0.10 90.88 91.88 89.88

435 2009.09.24 07:17 sell 222 0.10 90.78 91.78 89.78

436 2009.09.24 07:34 buy 223 0.10 90.88 89.88 91.88

437 2009.09.24 08:02 sell 224 0.10 90.81 91.81 89.81

438 2009.09.24 08:11 sell 225 0.10 90.77 91.77 89.77

439 2009.09.24 08:36 sell 226 0.10 90.71 91.71 89.71

440 2009.09.24 08:45 s/l 213 0.10 90.61 90.61 92.61 -110.36 10978.40

441 2009.09.24 08:46 modify 226 0.10 90.71 90.70 89.71

442 2009.09.24 08:57 s/l 203 0.10 90.48 90.48 92.48 -111.18 10867.22

443 2009.09.24 08:57 s/l 210 0.10 90.48 90.48 92.48 -111.18 10756.05

444 2009.09.24 09:05 s/l 201 0.10 90.47 90.47 92.47 -111.19 10644.86

445 2009.09.24 09:05 s/l 157 0.10 90.46 90.46 92.46 -111.43 10533.43

446 2009.09.24 09:05 s/l 158 0.10 90.46 90.46 92.46 -111.43 10422.00

447 2009.09.24 09:05 s/l 204 0.10 90.45 90.45 92.45 -111.22 10310.78

448 2009.09.24 09:05 s/l 200 0.10 90.44 90.44 92.44 -111.23 10199.55

449 2009.09.24 09:13 s/l 154 0.10 90.41 90.41 92.41 -111.49 10088.06

450 2009.09.24 09:13 s/l 194 0.10 90.41 90.41 92.41 -111.27 9976.80

451 2009.09.24 09:42 buy 227 0.10 90.63 89.63 91.63

452 2009.09.24 09:55 s/l 226 0.10 90.70 90.70 89.71 1.10 9977.90

453 2009.09.24 10:09 buy 228 0.10 90.70 89.70 91.70

454 2009.09.24 10:16 buy 229 0.10 90.70 89.70 91.70

455 2009.09.24 10:52 s/l 199 0.10 90.39 90.39 92.39 -111.29 9866.61

456 2009.09.24 10:53 t/p 214 0.10 90.41 91.40 90.41 110.61 9977.22

457 2009.09.24 10:53 s/l 198 0.10 90.37 90.37 92.37 -111.32 9865.90

458 2009.09.24 10:53 t/p 159 0.10 90.39 92.39 90.39 110.19 9976.09

459 2009.09.24 10:53 t/p 160 0.10 90.37 92.37 90.37 110.22 10086.31

460 2009.09.24 10:53 t/p 161 0.10 90.37 92.37 90.37 110.22 10196.53

461 2009.09.24 10:53 t/p 205 0.10 90.37 92.37 90.37 110.33 10306.86

462 2009.09.24 12:10 buy 230 0.10 90.59 89.59 91.59

463 2009.09.24 12:20 buy 231 0.10 90.59 89.59 91.59

464 2009.09.24 12:48 buy 232 0.10 90.66 89.66 91.66

465 2009.09.24 12:50 buy 233 0.10 90.65 89.65 91.65

466 2009.09.24 13:26 buy 234 0.10 90.75 89.75 91.75

467 2009.09.24 13:37 buy 235 0.10 90.75 89.75 91.75

468 2009.09.24 13:40 buy 236 0.10 90.75 89.75 91.75

469 2009.09.24 13:48 buy 237 0.10 90.75 89.75 91.75

470 2009.09.24 14:11 sell 238 0.10 90.67 91.67 89.67

471 2009.09.24 14:30 modify 238 0.10 90.67 90.66 89.67

472 2009.09.24 14:32 s/l 238 0.10 90.66 90.66 89.67 1.10 10307.96

473 2009.09.24 15:20 sell 239 0.10 90.60 91.60 89.60

474 2009.09.24 16:05 s/l 220 0.10 91.10 91.10 90.11 1.10 10309.06

475 2009.09.24 16:15 buy 240 0.10 91.10 90.10 92.10

476 2009.09.24 16:26 buy 241 0.10 91.17 90.17 92.17

477 2009.09.24 16:41 buy 242 0.10 91.29 90.29 92.29

478 2009.09.24 17:10 sell 243 0.10 91.11 92.11 90.11

479 2009.09.24 17:50 buy 244 0.10 91.25 90.25 92.25

480 2009.09.24 19:03 buy 245 0.10 91.27 90.27 92.27

481 2009.09.24 19:06 buy 246 0.10 91.29 90.29 92.29

482 2009.09.24 19:22 modify 246 0.10 91.29 91.30 92.29

483 2009.09.24 19:35 s/l 246 0.10 91.30 91.30 92.29 1.10 10310.16

484 2009.09.24 19:42 modify 245 0.10 91.27 91.28 92.27

485 2009.09.24 19:43 buy 247 0.10 91.44 90.44 92.44

486 2009.09.24 19:52 modify 247 0.10 91.44 91.45 92.44

487 2009.09.24 19:53 s/l 239 0.10 91.60 91.60 89.60 -109.17 10200.99

488 2009.09.24 20:07 sell 248 0.10 91.46 92.46 90.46

489 2009.09.24 20:08 s/l 247 0.10 91.45 91.45 92.44 1.09 10202.08

490 2009.09.24 20:18 sell 249 0.10 91.44 92.44 90.44

491 2009.09.24 20:23 sell 250 0.10 91.42 92.42 90.42

492 2009.09.24 20:34 modify 250 0.10 91.42 91.41 90.42

493 2009.09.24 20:39 s/l 245 0.10 91.28 91.28 92.27 1.10 10203.18

494 2009.09.24 21:41 sell 251 0.10 91.20 92.20 90.20

495 2009.09.24 21:46 sell 252 0.10 91.18 92.18 90.18

496 2009.09.24 22:27 buy 253 0.10 91.28 90.28 92.28

497 2009.09.24 22:30 buy 254 0.10 91.28 90.28 92.28

498 2009.09.24 22:47 buy 255 0.10 91.30 90.30 92.30

499 2009.09.24 23:02 buy 256 0.10 91.31 90.31 92.31

500 2009.09.24 23:30 buy 257 0.10 91.33 90.33 92.33

501 2009.09.25 02:25 buy 258 0.10 91.02 90.02 92.02

502 2009.09.25 02:36 buy 259 0.10 91.04 90.04 92.04

503 2009.09.25 04:30 sell 260 0.10 90.65 91.65 89.65

504 2009.09.25 04:43 sell 261 0.10 90.64 91.64 89.64

505 2009.09.25 05:25 buy 262 0.10 90.69 89.69 91.69

506 2009.09.25 05:55 modify 262 0.10 90.69 90.70 91.69

507 2009.09.25 06:22 buy 263 0.10 90.84 89.84 91.84

508 2009.09.25 06:40 sell 264 0.10 90.72 91.72 89.72

509 2009.09.25 06:50 sell 265 0.10 90.71 91.71 89.71

510 2009.09.25 06:50 s/l 262 0.10 90.70 90.70 91.69 1.10 10204.28

511 2009.09.25 07:23 sell 266 0.10 90.71 91.71 89.71

512 2009.09.25 08:01 modify 266 0.10 90.71 90.70 89.71

513 2009.09.25 08:20 s/l 266 0.10 90.70 90.70 89.71 1.10 10205.38

514 2009.09.25 08:31 modify 265 0.10 90.71 90.70 89.71

515 2009.09.25 08:32 sell 267 0.10 90.55 91.55 89.55

516 2009.09.25 08:38 sell 268 0.10 90.54 91.54 89.54

517 2009.09.25 08:43 sell 269 0.10 90.52 91.52 89.52

518 2009.09.25 09:01 s/l 265 0.10 90.70 90.70 89.71 1.10 10206.48

519 2009.09.25 09:50 sell 270 0.10 90.57 91.57 89.57

520 2009.09.25 10:34 sell 271 0.10 90.53 91.53 89.53

521 2009.09.25 11:00 sell 272 0.10 90.47 91.47 89.47

522 2009.09.25 11:14 sell 273 0.10 90.47 91.47 89.47

523 2009.09.25 11:23 sell 274 0.10 90.47 91.47 89.47

524 2009.09.25 11:41 sell 275 0.10 90.47 91.47 89.47

525 2009.09.25 11:43 t/p 248 0.10 90.46 92.46 90.46 110.44 10316.92

526 2009.09.25 11:43 t/p 249 0.10 90.44 92.44 90.44 110.46 10427.38

527 2009.09.25 11:52 t/p 250 0.10 90.42 91.41 90.42 110.49 10537.87

528 2009.09.25 11:58 modify 275 0.10 90.47 90.46 89.47

529 2009.09.25 11:58 s/l 257 0.10 90.33 90.33 92.33 -110.93 10426.94

530 2009.09.25 12:00 s/l 216 0.10 90.32 90.32 92.32 -110.94 10316.00

531 2009.09.25 12:00 s/l 256 0.10 90.31 90.31 92.31 -110.95 10205.05

532 2009.09.25 12:00 t/p 202 0.10 90.33 92.33 90.33 110.27 10315.32

533 2009.09.25 12:00 t/p 212 0.10 90.33 92.33 90.33 110.27 10425.59

534 2009.09.25 12:00 s/l 255 0.10 90.30 90.30 92.30 -110.96 10314.63

535 2009.09.25 12:00 s/l 193 0.10 90.29 90.29 92.29 -111.63 10203.01

536 2009.09.25 12:00 t/p 211 0.10 90.32 92.32 90.32 110.28 10313.29

537 2009.09.25 12:00 s/l 242 0.10 90.29 90.29 92.29 -110.97 10202.32

538 2009.09.25 12:00 s/l 253 0.10 90.28 90.28 92.28 -110.99 10091.33

539 2009.09.25 12:00 s/l 254 0.10 90.28 90.28 92.28 -110.99 9980.34

540 2009.09.25 12:01 s/l 207 0.10 90.25 90.25 92.25 -111.68 9868.66

541 2009.09.25 12:01 s/l 218 0.10 90.25 90.25 92.25 -111.02 9757.64

542 2009.09.25 12:01 s/l 244 0.10 90.25 90.25 92.25 -111.02 9646.62

543 2009.09.25 12:02 s/l 173 0.10 90.21 90.21 92.21 -111.73 9534.89

544 2009.09.25 12:02 t/p 195 0.10 90.23 92.23 90.23 110.39 9645.28

545 2009.09.25 12:02 s/l 164 0.10 90.19 90.19 92.19 -111.98 9533.31

546 2009.09.25 12:02 s/l 166 0.10 90.19 90.19 92.19 -111.98 9421.33

547 2009.09.25 12:02 s/l 167 0.10 90.19 90.19 92.19 -111.98 9309.35

548 2009.09.25 12:02 t/p 196 0.10 90.22 92.22 90.22 110.40 9419.75

549 2009.09.25 12:02 t/p 215 0.10 90.22 92.22 90.22 110.73 9530.48

550 2009.09.25 12:02 t/p 168 0.10 90.20 92.20 90.20 110.31 9640.79

551 2009.09.25 12:02 t/p 197 0.10 90.20 92.20 90.20 110.42 9751.21

552 2009.09.25 12:02 s/l 241 0.10 90.17 90.17 92.17 -111.12 9640.09

553 2009.09.25 12:02 t/p 251 0.10 90.20 92.20 90.20 110.75 9750.84

554 2009.09.25 12:05 t/p 169 0.10 90.18 92.18 90.18 110.34 9861.18

555 2009.09.25 12:05 t/p 252 0.10 90.18 92.18 90.18 110.78 9971.96

556 2009.09.25 12:05 s/l 165 0.10 90.14 90.14 92.14 -112.04 9859.93

557 2009.09.25 12:05 t/p 170 0.10 90.13 92.13 90.13 110.40 9970.33

558 2009.09.25 12:05 t/p 219 0.10 90.13 92.13 90.13 110.84 10081.17

559 2009.09.25 12:05 s/l 240 0.10 90.10 90.10 92.10 -111.21 9969.96

560 2009.09.25 12:05 t/p 171 0.10 90.12 92.12 90.12 110.41 10080.37

561 2009.09.25 12:05 t/p 172 0.10 90.12 92.12 90.12 110.41 10190.78

562 2009.09.25 12:05 t/p 243 0.10 90.11 92.11 90.11 110.88 10301.66

563 2009.09.25 12:05 s/l 191 0.10 90.04 90.04 92.04 -111.94 10189.72

564 2009.09.25 12:05 s/l 259 0.10 90.04 90.04 92.04 -111.06 10078.66

565 2009.09.25 12:05 s/l 190 0.10 90.03 90.03 92.03 -111.97 9966.69

566 2009.09.25 12:05 s/l 258 0.10 90.02 90.02 92.02 -111.09 9855.60

567 2009.09.25 13:03 buy 276 0.10 90.26 89.26 91.26

568 2009.09.25 13:57 buy 277 0.10 90.34 89.34 91.34

569 2009.09.25 14:36 buy 278 0.10 90.45 89.45 91.45

570 2009.09.25 14:37 s/l 275 0.10 90.46 90.46 89.47 1.11 9856.71

571 2009.09.25 15:10 buy 279 0.10 90.42 89.42 91.42

572 2009.09.25 15:56 buy 280 0.10 90.39 89.39 91.39

573 2009.09.25 16:01 sell 281 0.10 90.21 91.21 89.21

574 2009.09.25 16:17 sell 282 0.10 90.10 91.10 89.10

575 2009.09.25 16:21 sell 283 0.10 90.09 91.09 89.09

576 2009.09.25 16:23 modify 283 0.10 90.09 90.08 89.09

577 2009.09.25 16:24 s/l 283 0.10 90.08 90.08 89.09 1.11 9857.82

578 2009.09.25 16:42 modify 282 0.10 90.10 90.09 89.10

579 2009.09.25 16:43 sell 284 0.10 89.95 90.95 88.95

580 2009.09.25 16:43 s/l 223 0.10 89.88 89.88 91.88 -111.48 9746.34

581 2009.09.25 16:43 s/l 177 0.10 89.87 89.87 91.87 -112.15 9634.19

582 2009.09.25 16:43 s/l 178 0.10 89.87 89.87 91.87 -112.15 9522.05

583 2009.09.25 16:45 t/p 221 0.10 89.88 91.88 89.88 111.15 9633.20

584 2009.09.25 16:45 s/l 263 0.10 89.84 89.84 91.84 -111.31 9521.89

585 2009.09.25 16:45 modify 284 0.10 89.95 89.94 88.95

586 2009.09.25 16:45 s/l 182 0.10 89.79 89.79 91.79 -112.25 9409.64

587 2009.09.25 16:45 s/l 187 0.10 89.79 89.79 91.79 -112.25 9297.39

588 2009.09.25 16:45 s/l 186 0.10 89.78 89.78 91.78 -112.26 9185.13

589 2009.09.25 16:45 t/p 224 0.10 89.81 91.81 89.81 111.24 9296.37

590 2009.09.25 16:46 s/l 179 0.10 89.76 89.76 91.76 -112.29 9184.08

591 2009.09.25 16:46 s/l 180 0.10 89.76 89.76 91.76 -112.29 9071.79

592 2009.09.25 16:46 s/l 181 0.10 89.76 89.76 91.76 -112.29 8959.51

593 2009.09.25 16:46 s/l 185 0.10 89.76 89.76 91.76 -112.29 8847.22

594 2009.09.25 16:47 s/l 284 0.10 89.94 89.94 88.95 1.11 8848.33

595 2009.09.25 17:10 sell 285 0.10 89.76 90.76 88.76

596 2009.09.25 17:10 t/p 222 0.10 89.78 91.78 89.78 111.27 8959.60

597 2009.09.25 17:10 s/l 234 0.10 89.75 89.75 91.75 -111.64 8847.96

598 2009.09.25 17:10 s/l 235 0.10 89.75 89.75 91.75 -111.64 8736.32

599 2009.09.25 17:10 s/l 236 0.10 89.75 89.75 91.75 -111.64 8624.68

600 2009.09.25 17:10 s/l 237 0.10 89.75 89.75 91.75 -111.64 8513.04

601 2009.09.25 17:10 t/p 225 0.10 89.77 91.77 89.77 111.29 8624.33

602 2009.09.25 17:11 s/l 228 0.10 89.70 89.70 91.70 -111.70 8512.63

603 2009.09.25 17:11 s/l 229 0.10 89.70 89.70 91.70 -111.70 8400.93

604 2009.09.25 17:11 t/p 183 0.10 89.72 91.72 89.72 111.02 8511.95

605 2009.09.25 17:11 t/p 264 0.10 89.72 91.72 89.72 111.46 8623.41

606 2009.09.25 17:11 t/p 184 0.10 89.69 91.69 89.69 111.06 8734.47

607 2009.09.25 17:11 s/l 232 0.10 89.66 89.66 91.66 -111.75 8622.72

608 2009.09.25 17:11 s/l 233 0.10 89.65 89.65 91.65 -111.76 8510.96

609 2009.09.25 17:12 s/l 227 0.10 89.63 89.63 91.63 -111.79 8399.17

610 2009.09.25 17:12 modify 285 0.10 89.76 89.75 88.76

611 2009.09.25 17:12 t/p 260 0.10 89.65 91.65 89.65 111.54 8510.71

612 2009.09.25 17:12 t/p 261 0.10 89.64 91.64 89.64 111.56 8622.27

613 2009.09.25 17:12 s/l 230 0.10 89.59 89.59 91.59 -111.84 8510.43

614 2009.09.25 17:12 s/l 231 0.10 89.59 89.59 91.59 -111.84 8398.59

615 2009.09.25 17:29 sell 286 0.10 89.55 90.55 88.55

616 2009.09.25 17:29 t/p 270 0.10 89.57 91.57 89.57 111.64 8510.23

617 2009.09.25 17:29 t/p 267 0.10 89.55 91.55 89.55 111.67 8621.90

618 2009.09.25 17:35 t/p 268 0.10 89.54 91.54 89.54 111.68 8733.58

619 2009.09.25 17:35 sell 287 0.10 89.51 90.51 88.51

620 2009.09.25 17:47 s/l 285 0.10 89.75 89.75 88.76 1.11 8734.69

621 2009.09.25 18:50 sell 288 0.10 89.77 90.77 88.77

622 2009.09.25 19:02 sell 289 0.10 89.77 90.77 88.77

623 2009.09.25 19:38 buy 290 0.10 89.89 88.89 90.89

624 2009.09.25 20:25 buy 291 0.10 89.81 88.81 90.81

625 2009.09.25 20:55 buy 292 0.10 89.87 88.87 90.87

626 2009.09.25 21:40 sell 293 0.10 89.82 90.82 88.82

627 2009.09.25 21:54 sell 294 0.10 89.82 90.82 88.82

628 2009.09.28 00:00 modify 294 0.10 89.82 89.81 88.82

629 2009.09.28 00:19 t/p 271 0.10 89.53 91.53 89.53 111.58 8846.27

630 2009.09.28 00:20 t/p 269 0.10 89.52 91.52 89.52 111.60 8957.87

631 2009.09.28 00:20 s/l 278 0.10 89.45 89.45 91.45 -112.01 8845.87

632 2009.09.28 00:20 t/p 272 0.10 89.47 91.47 89.47 111.66 8957.53

633 2009.09.28 00:20 t/p 273 0.10 89.47 91.47 89.47 111.66 9069.19

634 2009.09.28 00:20 t/p 274 0.10 89.47 91.47 89.47 111.66 9180.85

635 2009.09.28 00:20 s/l 279 0.10 89.42 89.42 91.42 -112.05 9068.80

636 2009.09.28 00:21 s/l 280 0.10 89.39 89.39 91.39 -112.09 8956.71

637 2009.09.28 00:21 s/l 277 0.10 89.34 89.34 91.34 -112.15 8844.56

638 2009.09.28 00:22 s/l 276 0.10 89.26 89.26 91.26 -112.25 8732.31

639 2009.09.28 00:46 sell 295 0.10 89.25 90.25 88.25

640 2009.09.28 00:50 t/p 281 0.10 89.21 91.21 89.21 111.99 8844.30

641 2009.09.28 00:50 modify 295 0.10 89.25 89.24 88.25

642 2009.09.28 01:00 t/p 282 0.10 89.10 90.09 89.10 112.12 8956.42

643 2009.09.28 01:02 s/l 290 0.10 88.89 88.89 90.89 -112.73 8843.69

644 2009.09.28 01:02 s/l 292 0.10 88.87 88.87 90.87 -112.74 8730.95

645 2009.09.28 01:02 s/l 291 0.10 88.81 88.81 90.81 -112.82 8618.13

646 2009.09.28 01:02 t/p 293 0.10 88.82 90.82 88.82 112.48 8730.61

647 2009.09.28 01:02 t/p 294 0.10 88.82 89.81 88.82 112.48 8843.09

648 2009.09.28 01:06 t/p 288 0.10 88.77 90.77 88.77 112.54 8955.63

649 2009.09.28 01:06 t/p 289 0.10 88.77 90.77 88.77 112.54 9068.17

650 2009.09.28 01:08 t/p 286 0.10 88.55 90.55 88.55 112.82 9180.99

651 2009.09.28 01:08 t/p 287 0.10 88.51 90.51 88.51 112.87 9293.86

652 2009.09.28 01:20 sell 296 0.10 88.46 89.46 87.46

653 2009.09.28 01:32 sell 297 0.10 88.41 89.41 87.41

654 2009.09.28 01:33 modify 297 0.10 88.41 88.40 87.41

655 2009.09.28 01:34 s/l 297 0.10 88.40 88.40 87.41 1.13 9294.99

656 2009.09.28 02:00 buy 298 0.10 88.79 87.79 89.79

657 2009.09.28 02:01 modify 298 0.10 88.79 88.80 89.79

658 2009.09.28 02:05 s/l 298 0.10 88.80 88.80 89.79 1.13 9296.12

659 2009.09.28 03:08 buy 299 0.10 89.01 88.01 90.01

660 2009.09.28 03:11 buy 300 0.10 89.03 88.03 90.03

661 2009.09.28 03:36 buy 301 0.10 89.11 88.11 90.11

662 2009.09.28 03:41 s/l 295 0.10 89.24 89.24 88.25 1.12 9297.24

663 2009.09.28 03:41 modify 301 0.10 89.11 89.12 90.11

664 2009.09.28 03:51 s/l 301 0.10 89.12 89.12 90.11 1.12 9298.36

665 2009.09.28 03:51 modify 300 0.10 89.03 89.04 90.03

666 2009.09.28 04:30 sell 302 0.10 89.08 90.08 88.08

667 2009.09.28 05:00 buy 303 0.10 89.20 88.20 90.20

668 2009.09.28 05:06 modify 303 0.10 89.20 89.21 90.20

669 2009.09.28 06:10 buy 304 0.10 89.40 88.40 90.40

670 2009.09.28 06:15 s/l 296 0.10 89.46 89.46 87.46 -111.78 9186.58

671 2009.09.28 06:16 modify 304 0.10 89.40 89.41 90.40

672 2009.09.28 06:28 s/l 304 0.10 89.41 89.41 90.40 1.12 9187.70

673 2009.09.28 07:15 buy 305 0.10 89.53 88.53 90.53

674 2009.09.28 07:50 s/l 303 0.10 89.21 89.21 90.20 1.12 9188.82

675 2009.09.28 08:37 buy 306 0.10 89.42 88.42 90.42

676 2009.09.28 09:12 buy 307 0.10 89.51 88.51 90.51

677 2009.09.28 09:28 modify 307 0.10 89.51 89.52 90.51

678 2009.09.28 09:31 s/l 307 0.10 89.52 89.52 90.51 1.12 9189.94

679 2009.09.28 09:31 modify 306 0.10 89.42 89.43 90.42

680 2009.09.28 09:43 buy 308 0.10 89.64 88.64 90.64

681 2009.09.28 09:49 buy 309 0.10 89.66 88.66 90.66

682 2009.09.28 10:30 buy 310 0.10 89.63 88.63 90.63

683 2009.09.28 10:38 buy 311 0.10 89.64 88.64 90.64

684 2009.09.28 10:52 s/l 306 0.10 89.43 89.43 90.42 1.12 9191.06

685 2009.09.28 11:54 sell 312 0.10 89.35 90.35 88.35

686 2009.09.28 14:21 buy 313 0.10 89.58 88.58 90.58

687 2009.09.28 14:57 sell 314 0.10 89.55 90.55 88.55

688 2009.09.28 15:08 modify 314 0.10 89.55 89.54 88.55

689 2009.09.28 15:21 sell 315 0.10 89.39 90.39 88.39

690 2009.09.28 15:50 buy 316 0.10 89.47 88.47 90.47

691 2009.09.28 16:02 sell 317 0.10 89.35 90.35 88.35

692 2009.09.28 16:07 modify 317 0.10 89.35 89.34 88.35

693 2009.09.28 16:26 s/l 317 0.10 89.34 89.34 88.35 1.12 9192.18

694 2009.09.28 17:25 sell 318 0.10 89.33 90.33 88.33

695 2009.09.28 17:41 sell 319 0.10 89.33 90.33 88.33

696 2009.09.28 17:42 s/l 314 0.10 89.54 89.54 88.55 1.12 9193.30

697 2009.09.28 18:52 buy 320 0.10 89.46 88.46 90.46

698 2009.09.28 19:05 buy 321 0.10 89.48 88.48 90.48

699 2009.09.28 19:46 buy 322 0.10 89.50 88.50 90.50

700 2009.09.28 20:10 modify 322 0.10 89.50 89.51 90.50

701 2009.09.28 20:38 sell 323 0.10 89.53 90.53 88.53

702 2009.09.28 21:38 sell 324 0.10 89.69 90.69 88.69

703 2009.09.28 22:39 modify 324 0.10 89.69 89.68 88.69

704 2009.09.28 23:01 sell 325 0.10 89.56 90.56 88.56

705 2009.09.28 23:36 s/l 324 0.10 89.68 89.68 88.69 1.12 9194.42

706 2009.09.28 23:57 buy 326 0.10 89.71 88.71 90.71

707 2009.09.29 01:27 sell 327 0.10 89.62 90.62 88.62

708 2009.09.29 01:58 buy 328 0.10 89.93 88.93 90.93

709 2009.09.29 02:02 t/p 299 0.10 90.01 88.01 90.01 110.88 9305.30

710 2009.09.29 02:50 t/p 300 0.10 90.03 89.04 90.03 110.85 9416.15

711 2009.09.29 02:50 modify 328 0.10 89.93 89.94 90.93

712 2009.09.29 02:51 s/l 302 0.10 90.08 90.08 88.08 -111.12 9305.03

713 2009.09.29 03:22 buy 329 0.10 90.22 89.22 91.22

714 2009.09.29 03:25 buy 330 0.10 90.22 89.22 91.22

715 2009.09.29 03:48 sell 331 0.10 90.02 91.02 89.02

716 2009.09.29 03:52 s/l 328 0.10 89.94 89.94 90.93 1.11 9306.14

717 2009.09.29 03:58 modify 331 0.10 90.02 90.01 89.02

718 2009.09.29 04:20 sell 332 0.10 89.86 90.86 88.86

719 2009.09.29 04:51 buy 333 0.10 90.00 89.00 91.00

720 2009.09.29 04:51 s/l 331 0.10 90.01 90.01 89.02 1.11 9307.25

721 2009.09.29 05:10 buy 334 0.10 90.01 89.01 91.01

722 2009.09.29 07:55 buy 335 0.10 89.99 88.99 90.99

723 2009.09.29 08:32 buy 336 0.10 90.10 89.10 91.10

724 2009.09.29 09:16 sell 337 0.10 89.80 90.80 88.80

725 2009.09.29 09:22 modify 337 0.10 89.80 89.79 88.80

726 2009.09.29 09:25 s/l 337 0.10 89.79 89.79 88.80 1.11 9308.36

727 2009.09.29 13:12 sell 338 0.10 89.86 90.86 88.86

728 2009.09.29 13:58 buy 339 0.10 89.96 88.96 90.96

729 2009.09.29 14:12 buy 340 0.10 89.99 88.99 90.99

730 2009.09.29 15:42 buy 341 0.10 90.08 89.08 91.08

731 2009.09.29 15:46 buy 342 0.10 90.09 89.09 91.09

732 2009.09.29 15:55 modify 342 0.10 90.09 90.10 91.09

733 2009.09.29 15:57 s/l 318 0.10 90.33 90.33 88.33 -110.82 9197.54

734 2009.09.29 15:57 s/l 319 0.10 90.33 90.33 88.33 -110.82 9086.72

735 2009.09.29 15:57 s/l 312 0.10 90.35 90.35 88.35 -110.79 8975.93

736 2009.09.29 16:07 s/l 342 0.10 90.10 90.10 91.09 1.11 8977.04

737 2009.09.29 16:21 modify 341 0.10 90.08 90.09 91.08

738 2009.09.29 17:12 buy 343 0.10 90.31 89.31 91.31

739 2009.09.29 18:31 sell 344 0.10 90.20 91.20 89.20

740 2009.09.29 18:46 sell 345 0.10 90.17 91.17 89.17

741 2009.09.29 19:45 s/l 341 0.10 90.09 90.09 91.08 1.11 8978.15

742 2009.09.29 21:27 sell 346 0.10 90.13 91.13 89.13

743 2009.09.29 21:50 buy 347 0.10 90.21 89.21 91.21

744 2009.09.29 22:48 sell 348 0.10 90.12 91.12 89.12

745 2009.09.30 00:55 buy 349 0.10 90.20 89.20 91.20

746 2009.09.30 02:07 modify 349 0.10 90.20 90.21 91.20

747 2009.09.30 02:12 s/l 315 0.10 90.39 90.39 88.39 -110.85 8867.30

748 2009.09.30 02:28 buy 350 0.10 90.39 89.39 91.39

749 2009.09.30 02:47 s/l 349 0.10 90.21 90.21 91.20 1.11 8868.41

750 2009.09.30 03:21 sell 351 0.10 89.84 90.84 88.84

751 2009.09.30 04:22 sell 352 0.10 89.73 90.73 88.73

752 2009.09.30 04:39 sell 353 0.10 89.72 90.72 88.72

753 2009.09.30 04:56 sell 354 0.10 89.69 90.69 88.69

754 2009.09.30 05:18 buy 355 0.10 89.79 88.79 90.79

755 2009.09.30 05:32 buy 356 0.10 89.81 88.81 90.81

756 2009.09.30 05:45 buy 357 0.10 89.82 88.82 90.82

757 2009.09.30 06:18 sell 358 0.10 89.74 90.74 88.74

758 2009.09.30 07:42 sell 359 0.10 89.62 90.62 88.62

759 2009.09.30 08:50 buy 360 0.10 89.80 88.80 90.80

760 2009.09.30 08:55 buy 361 0.10 89.81 88.81 90.81

761 2009.09.30 10:41 s/l 322 0.10 89.51 89.51 90.50 0.68 8869.09

762 2009.09.30 10:43 s/l 350 0.10 89.39 89.39 91.39 -111.87 8757.22

763 2009.09.30 11:14 buy 362 0.10 89.54 88.54 90.54

764 2009.09.30 12:02 buy 363 0.10 89.54 88.54 90.54

765 2009.09.30 12:31 sell 364 0.10 89.57 90.57 88.57

766 2009.09.30 13:53 sell 365 0.10 89.51 90.51 88.51

767 2009.09.30 14:17 modify 365 0.10 89.51 89.50 88.51

768 2009.09.30 14:20 s/l 365 0.10 89.50 89.50 88.51 1.12 8758.34

769 2009.09.30 15:03 buy 366 0.10 89.84 88.84 90.84

770 2009.09.30 15:43 sell 367 0.10 89.72 90.72 88.72

771 2009.09.30 16:02 sell 368 0.10 89.60 90.60 88.60

772 2009.09.30 16:33 sell 369 0.10 89.56 90.56 88.56

773 2009.09.30 16:42 sell 370 0.10 89.56 90.56 88.56

774 2009.09.30 16:45 sell 371 0.10 89.56 90.56 88.56

775 2009.09.30 16:59 sell 372 0.10 89.56 90.56 88.56

776 2009.09.30 17:25 sell 373 0.10 89.44 90.44 88.44

777 2009.09.30 17:35 sell 374 0.10 89.40 90.40 88.40

778 2009.09.30 18:35 buy 375 0.10 89.55 88.55 90.55

779 2009.09.30 18:58 modify 375 0.10 89.55 89.56 90.55

780 2009.09.30 20:20 sell 376 0.10 89.63 90.63 88.63

781 2009.09.30 20:30 s/l 375 0.10 89.56 89.56 90.55 1.12 8759.46

782 2009.09.30 22:00 buy 377 0.10 89.81 88.81 90.81

783 2009.09.30 22:16 buy 378 0.10 89.81 88.81 90.81

784 2009.09.30 23:45 sell 379 0.10 89.72 90.72 88.72

785 2009.10.01 00:00 buy 380 0.10 89.76 88.76 90.76

786 2009.10.01 01:00 modify 380 0.10 89.76 89.77 90.76

787 2009.10.01 01:48 sell 381 0.10 89.88 90.88 88.88

788 2009.10.01 01:50 sell 382 0.10 89.86 90.86 88.86

789 2009.10.01 02:02 sell 383 0.10 89.83 90.83 88.83

790 2009.10.01 02:08 sell 384 0.10 89.83 90.83 88.83

791 2009.10.01 02:13 s/l 380 0.10 89.77 89.77 90.76 1.11 8760.57

792 2009.10.01 02:56 sell 385 0.10 89.76 90.76 88.76

793 2009.10.01 03:04 sell 386 0.10 89.72 90.72 88.72

794 2009.10.01 03:33 sell 387 0.10 89.72 90.72 88.72

795 2009.10.01 04:36 buy 388 0.10 89.90 88.90 90.90

796 2009.10.01 05:30 buy 389 0.10 89.90 88.90 90.90

797 2009.10.01 06:40 buy 390 0.10 89.98 88.98 90.98

798 2009.10.01 06:55 buy 391 0.10 89.98 88.98 90.98

799 2009.10.01 07:43 sell 392 0.10 89.94 90.94 88.94

800 2009.10.01 08:36 buy 393 0.10 90.07 89.07 91.07

801 2009.10.01 09:36 buy 394 0.10 90.05 89.05 91.05

802 2009.10.01 10:25 buy 395 0.10 90.08 89.08 91.08

803 2009.10.01 11:02 buy 396 0.10 90.04 89.04 91.04

804 2009.10.01 12:03 buy 397 0.10 90.05 89.05 91.05

805 2009.10.01 12:10 buy 398 0.10 90.05 89.05 91.05

806 2009.10.01 13:15 buy 399 0.10 90.02 89.02 91.02

807 2009.10.01 14:30 sell 400 0.10 89.89 90.89 88.89

808 2009.10.01 14:38 sell 401 0.10 89.85 90.85 88.85

809 2009.10.01 15:07 sell 402 0.10 89.77 90.77 88.77

810 2009.10.01 15:16 sell 403 0.10 89.76 90.76 88.76

811 2009.10.01 15:21 modify 403 0.10 89.76 89.75 88.76

812 2009.10.01 15:58 sell 404 0.10 89.52 90.52 88.52

813 2009.10.01 16:03 sell 405 0.10 89.51 90.51 88.51

814 2009.10.01 16:05 sell 406 0.10 89.52 90.52 88.52

815 2009.10.01 16:33 buy 407 0.10 89.69 88.69 90.69

816 2009.10.01 17:45 buy 408 0.10 89.69 88.69 90.69

817 2009.10.01 17:58 s/l 403 0.10 89.75 89.75 88.76 1.11 8761.68

818 2009.10.01 18:16 buy 409 0.10 89.80 88.80 90.80

819 2009.10.01 18:50 sell 410 0.10 89.69 90.69 88.69

820 2009.10.01 19:02 sell 411 0.10 89.67 90.67 88.67

821 2009.10.01 20:01 buy 412 0.10 89.71 88.71 90.71

822 2009.10.01 20:33 sell 413 0.10 89.67 90.67 88.67

823 2009.10.01 20:42 sell 414 0.10 89.65 90.65 88.65

824 2009.10.01 21:56 buy 415 0.10 89.81 88.81 90.81

825 2009.10.01 22:00 buy 416 0.10 89.83 88.83 90.83

826 2009.10.01 22:33 sell 417 0.10 89.68 90.68 88.68

827 2009.10.01 22:52 sell 418 0.10 89.66 90.66 88.66

828 2009.10.01 23:32 buy 419 0.10 89.64 88.64 90.64

829 2009.10.02 00:37 sell 420 0.10 89.51 90.51 88.51

830 2009.10.02 02:12 modify 420 0.10 89.51 89.50 88.51

831 2009.10.02 02:28 s/l 420 0.10 89.50 89.50 88.51 1.12 8762.80

832 2009.10.02 02:37 buy 421 0.10 89.52 88.52 90.52

833 2009.10.02 03:32 buy 422 0.10 89.56 88.56 90.56

834 2009.10.02 04:08 sell 423 0.10 89.49 90.49 88.49

835 2009.10.02 04:15 sell 424 0.10 89.49 90.49 88.49

836 2009.10.02 05:00 modify 424 0.10 89.49 89.48 88.49

837 2009.10.02 05:01 s/l 343 0.10 89.31 89.31 91.31 -113.07 8649.74

838 2009.10.02 05:08 s/l 329 0.10 89.22 89.22 91.22 -113.18 8536.56

839 2009.10.02 05:08 s/l 330 0.10 89.22 89.22 91.22 -113.18 8423.38

840 2009.10.02 05:08 s/l 347 0.10 89.21 89.21 91.21 -113.20 8310.18

841 2009.10.02 06:11 buy 425 0.10 89.43 88.43 90.43

842 2009.10.02 07:00 buy 426 0.10 89.47 88.47 90.47

843 2009.10.02 07:00 s/l 424 0.10 89.48 89.48 88.49 1.12 8311.30

844 2009.10.02 07:07 buy 427 0.10 89.49 88.49 90.49

845 2009.10.02 08:42 buy 428 0.10 89.59 88.59 90.59

846 2009.10.02 08:46 buy 429 0.10 89.59 88.59 90.59

847 2009.10.02 08:57 buy 430 0.10 89.60 88.60 90.60

848 2009.10.02 09:00 buy 431 0.10 89.60 88.60 90.60

849 2009.10.02 09:56 sell 432 0.10 89.38 90.38 88.38

850 2009.10.02 10:22 sell 433 0.10 89.35 90.35 88.35

851 2009.10.02 11:00 sell 434 0.10 89.33 90.33 88.33

852 2009.10.02 11:32 buy 435 0.10 89.45 88.45 90.45

853 2009.10.02 11:35 buy 436 0.10 89.45 88.45 90.45

854 2009.10.02 12:45 sell 437 0.10 89.34 90.34 88.34

855 2009.10.02 13:31 buy 438 0.10 89.40 88.40 90.40

856 2009.10.02 13:38 buy 439 0.10 89.40 88.40 90.40

857 2009.10.02 13:41 buy 440 0.10 89.40 88.40 90.40

858 2009.10.02 14:22 buy 441 0.10 89.42 88.42 90.42

859 2009.10.02 14:31 t/p 344 0.10 89.20 91.20 89.20 111.56 8422.86

860 2009.10.02 14:31 t/p 345 0.10 89.17 91.17 89.17 111.60 8534.46

861 2009.10.02 14:31 s/l 336 0.10 89.10 89.10 91.10 -113.33 8421.14

862 2009.10.02 14:31 t/p 346 0.10 89.13 91.13 89.13 111.65 8532.79

863 2009.10.02 14:31 t/p 348 0.10 89.12 91.12 89.12 111.66 8644.45

864 2009.10.02 14:31 s/l 395 0.10 89.08 89.08 91.08 -112.48 8531.97

865 2009.10.02 14:31 s/l 393 0.10 89.07 89.07 91.07 -112.49 8419.48

866 2009.10.02 14:32 s/l 394 0.10 89.05 89.05 91.05 -112.52 8306.96

867 2009.10.02 14:32 s/l 397 0.10 89.05 89.05 91.05 -112.52 8194.44

868 2009.10.02 14:32 s/l 398 0.10 89.05 89.05 91.05 -112.52 8081.92

869 2009.10.02 14:32 s/l 396 0.10 89.04 89.04 91.04 -112.53 7969.39

870 2009.10.02 14:32 s/l 399 0.10 89.02 89.02 91.02 -112.55 7856.84

871 2009.10.02 14:32 s/l 334 0.10 89.01 89.01 91.01 -113.45 7743.39

872 2009.10.02 14:32 s/l 333 0.10 89.00 89.00 91.00 -113.46 7629.93

873 2009.10.02 14:32 s/l 335 0.10 88.99 88.99 90.99 -113.47 7516.47

874 2009.10.02 14:32 s/l 340 0.10 88.99 88.99 90.99 -113.47 7403.00

875 2009.10.02 14:32 s/l 390 0.10 88.98 88.98 90.98 -112.60 7290.40

876 2009.10.02 14:32 s/l 391 0.10 88.98 88.98 90.98 -112.60 7177.80

877 2009.10.02 14:32 s/l 339 0.10 88.96 88.96 90.96 -113.51 7064.29

878 2009.10.02 14:32 t/p 392 0.10 88.94 90.94 88.94 112.33 7176.62

879 2009.10.02 14:32 s/l 388 0.10 88.90 88.90 90.90 -112.71 7063.91

880 2009.10.02 14:32 s/l 389 0.10 88.90 88.90 90.90 -112.71 6951.20

881 2009.10.02 15:22 sell 442 0.10 88.92 89.92 87.92

882 2009.10.02 15:23 t/p 400 0.10 88.89 90.89 88.89 112.39 7063.59

883 2009.10.02 15:23 t/p 381 0.10 88.88 90.88 88.88 112.40 7175.99

884 2009.10.02 15:23 s/l 366 0.10 88.84 88.84 90.84 -113.44 7062.55

885 2009.10.02 15:23 t/p 332 0.10 88.86 90.86 88.86 111.99 7174.54

886 2009.10.02 15:23 t/p 338 0.10 88.86 90.86 88.86 111.99 7286.54

887 2009.10.02 15:23 t/p 382 0.10 88.86 90.86 88.86 112.43 7398.97

888 2009.10.02 15:23 s/l 416 0.10 88.83 88.83 90.83 -112.79 7286.18

889 2009.10.02 15:43 sell 443 0.10 88.83 89.83 87.83

890 2009.10.02 15:45 s/l 357 0.10 88.82 88.82 90.82 -113.47 7172.71

891 2009.10.02 15:45 t/p 401 0.10 88.85 90.85 88.85 112.44 7285.15

892 2009.10.02 15:45 sell 444 0.10 88.82 89.82 87.82

893 2009.10.02 15:46 t/p 351 0.10 88.84 90.84 88.84 112.12 7397.27

894 2009.10.02 15:46 s/l 356 0.10 88.81 88.81 90.81 -113.48 7283.79

895 2009.10.02 15:46 s/l 361 0.10 88.81 88.81 90.81 -113.48 7170.31

896 2009.10.02 15:46 s/l 377 0.10 88.81 88.81 90.81 -113.48 7056.83

897 2009.10.02 15:46 s/l 378 0.10 88.81 88.81 90.81 -113.48 6943.36

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...