当前位置:首页>行情>趋势行情一键吃满!这才是散户的交易神器,EA源码在文末

趋势行情一键吃满!这才是散户的交易神器,EA源码在文末

  • 2026-06-09 02:52:23
趋势行情一键吃满!这才是散户的交易神器,EA源码在文末
大家好,我是浪哥!
很多做外汇的朋友,一直想找一款逻辑简单、不花哨、抓趋势超稳的MT4自动化EA,所以今天给大家分享这款FlyBot 2.0版本,实测非常适合咱们普通散户!
我简单给大家讲下它的核心交易逻辑,一听就懂。它会自动统计近期平均K线大小,一旦市场走出超常规的爆发大K线,超过我们设定的波动阈值,就判定行情开启单边趋势。大阳线直接顺势做多,大阴线果断顺势做空,专门抓市场的突破启动行情
而且它自带顺势网格加仓机制,这点特别亮眼!只要趋势延续,它会自动分批加仓,放大单边行情的利润,一波趋势吃满收益。
除此之外,它还有很贴心的细节优化。自带交易时间过滤,默认避开凌晨低波动鸡肋行情,只在高活跃时段交易;仓位可以自动根据账户余额风控配比,不用手动调仓位,新手也能直接上手。
最后给大家提个关键风控提醒,它原生不带止损,震荡行情容易反复扫单,所以使用时一定要避开震荡盘整行情,配合趋势环境使用,稳定性直接拉满。
适合震荡盘的EA,浪哥也有很多,你们有需要私信浪哥,浪哥帮你们找:wzc10106
源码我放下面了,需要的自取:
//+------------------------------------------------------------------+//|                                                    FlyBot EA.mq4 |//|                                                       MFOREX.PRO |//|                                           https://www.mforex.pro |//+------------------------------------------------------------------+#property copyright "MFOREX.PRO"#property link      "https://www.mforex.pro"#property version   "2.00"#property strict//+------------------------------------------------------------------+//|========================= Параметры ==============================|                                                    //+------------------------------------------------------------------+   extern double    Risk             =0.5extern int       ProfitPips       =20;extern int       TimeFrame        =0;  extern int       TimeStart        =3extern int       TimeEnd          =23;extern int       HowBar           =1000extern double    ExpBar           =2.4;extern int       MaxOrders        =200;extern int       Magic            =2021;extern int       SpeedEA          =200;extern bool      Info             =true;  extern color     TextColor        =White;   extern color     InfoDataColor    =DodgerBlue; extern color     FonColor         =Black;   extern int       FontSizeInfo     =7;      //+------------------------------------------------------------------+//|====================== Доп. Переменные ===========================|//+------------------------------------------------------------------+string           Commemt          ="www.mforex.pro";int              D,o;double           Lot              =0;int              dig;color            FonButtonBuy     =Blue;color            FonButtonSell    =Red;color            TextButtonBS     =White; color            ButtonBorder     =Blue;color            ClickButton      =Black;int              AccNumber        =0;//+------------------------------------------------------------------+//|====================== Инициализация =============================|//+------------------------------------------------------------------+intOnInit(){EventSetMillisecondTimer(SpeedEA);D=1;if (Digits==5 || Digits==3){D=10;}return(INIT_SUCCEEDED);}//+------------------------------------------------------------------+//|===================== ДеИнициализация ============================|//+------------------------------------------------------------------+voidOnDeinit(constint reason){EventKillTimer();ObjectsDeleteAll(0,OBJ_LABEL);ObjectsDeleteAll(0,OBJ_RECTANGLE_LABEL);}//+------------------------------------------------------------------+//|======================== Старт ===================================|//+------------------------------------------------------------------+voidOnTick(){//============== Привязываем к номеру счета ========================if(AccNumber>0 && AccountNumber()!=AccNumber) {RectLabelCreate("ERROR_FON",850,100,300,120,FonColor,1);PutLabelD("ERROR_TEXT1",780,110,"NOT A VALID ACCOUNT NUMBER!",1);PutLabelT("ERROR_TEXT2",845,130,"Contact the author:",1);PutLabelT("ERROR_TEXT3",845,150,"Skype:",1);PutLabelD("ERROR_TEXT4",780,150,"live:mforex.pro",1);PutLabelT("ERROR_TEXT5",845,170,"Telegram:",1);PutLabelD("ERROR_TEXT6",780,170,"@mforexpro",1);PutLabelT("ERROR_TEXT7",845,190,"E-Mail:",1);PutLabelD("ERROR_TEXT8",780,190,"mforex.pro@gmail.com",1);}else{//======= Находим лот Lot=NormalizeDouble(AccountBalance()/100*Risk/(MarketInfo(Symbol(),MODE_TICKVALUE)*100*D),2);if(Lot<MarketInfo(Symbol(),MODE_MINLOT)) {Lot=MarketInfo(Symbol(),MODE_MINLOT);} if(Lot>=MarketInfo(Symbol(),MODE_MAXLOT)) {Lot=MarketInfo(Symbol(),MODE_MAXLOT);}if(MarketInfo(Symbol(),MODE_LOTSTEP)==0.01)     dig =2;if(MarketInfo(Symbol(),MODE_LOTSTEP)==0.10)     dig =1;if(MarketInfo(Symbol(),MODE_LOTSTEP)==1.00)     dig =0;//======= Точка входаbool GoBuy =false;bool GoSell =false;bool buy =false;bool sell =false;if(iOpen(Symbol(),TimeFrame,0)>iClose(Symbol(),TimeFrame,0) && AverageBar(HowBar)*ExpBar<(iOpen(Symbol(),TimeFrame,0)-iClose(Symbol(),TimeFrame,0))/Point){buy=true;}if(iOpen(Symbol(),TimeFrame,0)<iClose(Symbol(),TimeFrame,0) && AverageBar(HowBar)*ExpBar<(iClose(Symbol(),TimeFrame,0)-iOpen(Symbol(),TimeFrame,0))/Point){sell=true}if(TimeHour(TimeCurrent())>=TimeStart && TimeHour(TimeCurrent())<TimeEnd){    if(buy) {GoBuy=true;}if(sell) {GoSell=true;}    //======= Открываем ордераif(CountHistBar(-1)==0){if(Count(-1)==0 && GoSell && AccountFreeMarginCheck(Symbol(),OP_SELL,Lot)>0){o=OrderSend(Symbol(),OP_SELL,Lot,Bid,5,0,0,Commemt,Magic,0,Red);}if(Count(-1)==0 && GoBuy && AccountFreeMarginCheck(Symbol(),OP_BUY,Lot)>0){o=OrderSend(Symbol(),OP_BUY,Lot,Ask,5,0,0,Commemt,Magic,0,Green);}    //======= Сетки ордепровif(CountAll(-1)<MaxOrders && (CountAll(-1)<AccountInfoInteger(ACCOUNT_LIMIT_ORDERS) || AccountInfoInteger(ACCOUNT_LIMIT_ORDERS)==0) && CountBar(-1)==0){if(Count(OP_BUY)>0 && GoBuy){o=OrderSend(Symbol(),OP_BUY,Lot,Ask,10,0,0,Commemt,Magic,0,Green);}  if(Count(OP_SELL)>0 && GoSell){o=OrderSend(Symbol(),OP_SELL,Lot,Bid,10,0,0,Commemt,Magic,0,Red);} }}//======= Закрываем ордера при достижении прибылиdouble ProfProc=AllLots(-1)*ProfitPips;if(ProfitAll(-1)>=ProfProc && ProfProc!=0){ClosePos();}//======= Вывод информации на графикif(Info){   RectLabelCreate3("INFO_fon",220,20,200,225,FonColor);   PutLabel("INFO_LOGO",165,24,"WWW.MFOREX.PRO");   PutLabel("INFO_Line",215,27,"___________________________");   PutLabel_("INFO_txt1",215,45,"Account information");   PutLabel("INFO_Line2",215,47,"___________________________");   PutLabel("INFO_txt2",215,65,"Minimum stop:");   PutLabel("INFO_txt3",215,80,"Average bar:");   PutLabel("INFO_txt4",215,95,"Balanse:");   PutLabel("INFO_txt5",215,110,"Equity:");   PutLabel("INFO_Line3",215,112,"___________________________");   PutLabel_("INFO_txt6",215,130,"Profit on account");   PutLabel("INFO_Line4",215,132,"___________________________");   PutLabel("INFO_txt7",215,150,"Profit on pair:");   PutLabel("INFO_txt8",215,165,"Total profit:");   PutLabel("INFO_txt9",215,180,"Profit for today:");   PutLabel("INFO_txt10",215,195,"Profit for yesterday:");   PutLabel("INFO_txt11",215,210,"Profit for week:");   PutLabel("INFO_txt12",215,225,"Profit for month:");   PutLabel_("INFO_txt13",85,65,DoubleToStr(MarketInfo(Symbol(),MODE_STOPLEVEL),0));   PutLabel_("INFO_txt14",85,80,DoubleToStr(AverageBar(HowBar),0));   PutLabel_("INFO_txt15",85,95,DoubleToStr(AccountBalance(),2));   PutLabel_("INFO_txt16",85,110,DoubleToStr(AccountEquity(),2));   PutLabel_("INFO_txt17",85,150,DoubleToStr(Profit(-1),2));   PutLabel_("INFO_txt18",85,165,DoubleToStr(ProfitAll(-1),2));   PutLabel_("INFO_txt19",85,180,DoubleToStr(ProfitDey(-1),2));   PutLabel_("INFO_txt20",85,195,DoubleToStr(ProfitTuDey(-1),2));   PutLabel_("INFO_txt21",85,210,DoubleToStr(ProfitWeek(-1),2));   PutLabel_("INFO_txt22",85,225,DoubleToStr(ProfitMontag(-1),2));   PutButtonBS("TRADEs_B",220,245,"BUY           " + DoubleToStr(Lot, dig),100,22,FonButtonBuy,TextButtonBS);   PutButtonBS("TRADEs_S",118,245,"SELL           " + DoubleToStr(Lot, dig),100,22,FonButtonSell,TextButtonBS);}//======= Завершение}}//+------------------------------------------------------------------+//|   Кнопки                                                         |//+------------------------------------------------------------------+voidOnChartEvent(constint id, constlong &lparam, constdouble &dparam, conststring &sparam){//+------------------------------------------------------------------+//   Изменяем цвет кнопок при нажатии//+------------------------------------------------------------------+  if(ObjectGetInteger(0,"TRADEs_B",OBJPROP_STATE)) {ObjectSetInteger(0,"TRADEs_B",OBJPROP_BGCOLOR,ClickButton);}else  {ObjectSetInteger(0,"TRADEs_B",OBJPROP_BGCOLOR,FonButtonBuy);}//------------------ if(ObjectGetInteger(0,"TRADEs_S",OBJPROP_STATE)) {ObjectSetInteger(0,"TRADEs_S",OBJPROP_BGCOLOR,ClickButton);}else  {ObjectSetInteger(0,"TRADEs_S",OBJPROP_BGCOLOR,FonButtonSell);}//------------------//+------------------------------------------------------------------+//    Проверим событие на нажатие кнопки мышки//+------------------------------------------------------------------+if(id==CHARTEVENT_OBJECT_CLICK){string clickedChartObject=sparam;if(clickedChartObject=="TRADEs_B")  {o=OrderSend(Symbol(),OP_BUY,Lot,Ask,10,0,0,Commemt,Magic,0,Green);          ObjectSetInteger(0,"TRADEs_B",OBJPROP_STATE,false);}if(clickedChartObject=="TRADEs_S")  {o=OrderSend(Symbol(),OP_SELL,Lot,Bid,10,0,0,Commemt,Magic,0,Red);   ObjectSetInteger(0,"TRADEs_S",OBJPROP_STATE,false);}//--- Принудительно перерисуем все объекты на графикеChartRedraw();}}//+------------------------------------------------------------------+//|========================== Функции ===============================|//+------------------------------------------------------------------+//======== Счетчик ордеров в истории на текущем баре ================intCountHistBar(int type){int count=0;for(int i=OrdersHistoryTotal()-1;i>=0;i--) if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY))  {  if(Symbol()==OrderSymbol() && OrderMagicNumber()==Magic && OrderCloseTime()>=iTime(Symbol(),TimeFrame,0) && (type==-1 || OrderType()==type))   {  count++;  }  }return(count);}//======== Счетчик ордеров на текущем баре ================intCountBar(int type){int count=0;for(int i=OrdersTotal()-1;i>=0;i--) if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES))  {  if(Symbol()==OrderSymbol() && OrderMagicNumber()==Magic && OrderOpenTime()>=iTime(Symbol(),TimeFrame,0) && (type==-1 || OrderType()==type))   {  count++;  }  }return(count);}//-- Закрытие ордеров (Закрыть все)voidClosePos(){bool cl; for(int i=OrdersTotal()-1;i>=0;i--){if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)){if(OrderMagicNumber()==Magic){if(OrderType()==0){RefreshRates(); cl=OrderClose(OrderTicket(),OrderLots(),NormalizeDouble(MarketInfo(OrderSymbol(),MODE_BID),Digits),10,White);}if(OrderType()==1){RefreshRates(); cl=OrderClose(OrderTicket(),OrderLots(),NormalizeDouble(MarketInfo(OrderSymbol(),MODE_ASK),Digits),10,White);}}}}}//--- Сумма открытых лотовdoubleAllLots(int type) {double lot = 0;   for (int cnt = OrdersTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES))      {if (OrderMagicNumber()==Magic && (OrderType() == type || type==-1)) lot += OrderLots();}}       return (lot);}//--- Счетчик всех ордеров на счетеintCountAll(int type){int count=0;for(int i=OrdersTotal()-1;i>=0;i--) if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES))  {  if(OrderMagicNumber()==Magic &&  (type==-1 || OrderType()==type))   {  count++;  }  }return(count);}//================ Находим цену последнего бай =======================doubleBuyPric() {   double oldorderopenprice=0;   int oldticketnumber;   double unused = 0;   int ticketnumber = 0;   for (int cnt = OrdersTotal() - 1; cnt >= 0; cnt--) {      bool clos=OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);      if (OrderSymbol() != Symbol() || OrderMagicNumber() != Magic) continue;      if (OrderSymbol() == Symbol() && OrderMagicNumber() == Magic && OrderType() == OP_BUY) {         oldticketnumber = OrderTicket();         if (oldticketnumber > ticketnumber) {            oldorderopenprice = OrderOpenPrice();            unused = oldorderopenprice;            ticketnumber = oldticketnumber;}}}   return (oldorderopenprice);}//================ Находим цену последнего селл ====================== doubleSellPric() {   double oldorderopenprice=0;   int oldticketnumber;   double unused = 0;   int ticketnumber = 0;   for (int cnt = OrdersTotal() - 1; cnt >= 0; cnt--) {      bool clos=OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);      if (OrderSymbol() != Symbol() || OrderMagicNumber() != Magic) continue;      if (OrderSymbol() == Symbol() && OrderMagicNumber() == Magic && OrderType() == OP_SELL) {         oldticketnumber = OrderTicket();         if (oldticketnumber > ticketnumber) {            oldorderopenprice = OrderOpenPrice();            unused = oldorderopenprice;            ticketnumber = oldticketnumber;}}}   return (oldorderopenprice);}//======== Средняя величина бара в пипсах ================doubleAverageBar(int countCandles){double size=0;double returnSize=0;for(int i=1; i<=countCandles; i++) {size+=(iHigh(Symbol(),TimeFrame,i)-iLow(Symbol(),TimeFrame,i))/Point;}returnSize=size/countCandles;return(returnSize);}//======= Счетчик ордеровintCount(int type){int count=0;for(int i=OrdersTotal()-1;i>=0;i--) if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES))  {  if(Symbol()==OrderSymbol() && Magic==OrderMagicNumber() && (type==-1 || OrderType()==type))   {  count++;  }  }return(count);}//======= Счетчик текущего профита по пареdoubleProfit(int type) {double Profit = 0; for (int cnt = OrdersTotal() - 1; cnt >= 0; cnt--) { if(OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES)){if (Symbol()==OrderSymbol() && OrderMagicNumber()==Magic && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}return (Profit);}//======= Счетчик текущего профита по счетуdoubleProfitAll(int type) {double Profit = 0;   for (int cnt = OrdersTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES))      {if (OrderMagicNumber()==Magic && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}       return (Profit);}//======= Счетчик зафиксированой прибыли за сегодня doubleProfitDey(int type) {double Profit = 0;   for (int cnt = OrdersHistoryTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_HISTORY))      {if (OrderMagicNumber()==Magic && OrderCloseTime()>=iTime(Symbol(),1440,0) && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}       return (Profit);}//======= Счетчик зафиксированой прибыли за вчера     doubleProfitTuDey(int type) {double Profit = 0;   for (int cnt = OrdersHistoryTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_HISTORY))      {if (OrderMagicNumber()==Magic && OrderCloseTime()>=iTime(Symbol(),1440,1) && OrderCloseTime()<iTime(Symbol(),1440,0) && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}       return (Profit);}//======= Счетчик зафиксированой прибыли за позавчера       doubleProfitEsTuDey(int type) {double Profit = 0;   for (int cnt = OrdersHistoryTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_HISTORY))      {if (OrderMagicNumber()==Magic && OrderCloseTime()>=iTime(Symbol(),1440,2) && OrderCloseTime()<iTime(Symbol(),1440,1) && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}       return (Profit);}//======= Счетчик зафиксированой прибыли за неделю  doubleProfitWeek(int type) {double Profit = 0;   for (int cnt = OrdersHistoryTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_HISTORY))      {if (OrderMagicNumber()==Magic && OrderCloseTime()>=iTime(Symbol(),10080,0) && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}       return (Profit);}//======= Счетчик зафиксированой прибыли за месяц          doubleProfitMontag(int type) {double Profit = 0;   for (int cnt = OrdersHistoryTotal() - 1; cnt >= 0; cnt--) {      if(OrderSelect(cnt, SELECT_BY_POS, MODE_HISTORY))      {if (OrderMagicNumber()==Magic && OrderCloseTime()>=iTime(Symbol(),43200,0) && (OrderType() == type || type==-1)) Profit += OrderProfit()+OrderSwap()+OrderCommission();}}       return (Profit);}//======= Создаем текстовую метку voidPutLabel(string name,int x,int y,string text)  {ObjectCreate(0,name,OBJ_LABEL,0,0,0);//--- установим координаты метки   ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);   ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y);//--- установим угол графика, относительно которого будут определяться координаты точки   ObjectSetInteger(0,name,OBJPROP_CORNER,1);//--- установим текст   ObjectSetString(0,name,OBJPROP_TEXT,text);//--- установим шрифт текста   ObjectSetString(0,name,OBJPROP_FONT,"Arial");//--- установим размер шрифта   ObjectSetInteger(0,name,OBJPROP_FONTSIZE,FontSizeInfo);//--- установим цвет   ObjectSetInteger(0,name,OBJPROP_COLOR,TextColor);//--- скроем (true) или отобразим (false) имя графического объекта в списке объектов   ObjectSetInteger(0,name,OBJPROP_HIDDEN,false);//--- отобразим на переднем (false) или заднем (true) плане   ObjectSetInteger(0,name,OBJPROP_BACK,false);}//======= Создаем вторую текстовую меткуvoidPutLabel_(string name,int x,int y,string text)  {ObjectCreate(0,name,OBJ_LABEL,0,0,0);//--- установим координаты метки   ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);   ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y);//--- установим угол графика, относительно которого будут определяться координаты точки   ObjectSetInteger(0,name,OBJPROP_CORNER,1);//--- установим текст   ObjectSetString(0,name,OBJPROP_TEXT,text);//--- установим шрифт текста   ObjectSetString(0,name,OBJPROP_FONT,"Arial");//--- установим размер шрифта   ObjectSetInteger(0,name,OBJPROP_FONTSIZE,FontSizeInfo);//--- установим цвет   ObjectSetInteger(0,name,OBJPROP_COLOR,InfoDataColor);//--- скроем (true) или отобразим (false) имя графического объекта в списке объектов   ObjectSetInteger(0,name,OBJPROP_HIDDEN,false);//--- отобразим на переднем (false) или заднем (true) плане   ObjectSetInteger(0,name,OBJPROP_BACK,false);}//======= Создаем прямоугольникboolRectLabelCreate3(string  name, int x,int y, int width, int height, color back_clr)  {ResetLastError(); //--- создадим прямоугольную метку if(!ObjectCreate(0,name,OBJ_RECTANGLE_LABEL,0,0,0))   {return(false);} //--- установим координаты метки    ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);    ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y); //--- установим размеры метки    ObjectSetInteger(0,name,OBJPROP_XSIZE,width);    ObjectSetInteger(0,name,OBJPROP_YSIZE,height); //--- установим цвет фона    ObjectSetInteger(0,name,OBJPROP_BGCOLOR,back_clr); //--- установим тип границы    ObjectSetInteger(0,name,OBJPROP_BORDER_TYPE,BORDER_SUNKEN); //--- установим угол графика, относительно которого будут определяться координаты точки    ObjectSetInteger(0,name,OBJPROP_CORNER,1); //--- установим цвет плоской рамки (в режиме Flat)    ObjectSetInteger(0,name,OBJPROP_COLOR,Blue); //--- установим толщину плоской границы    ObjectSetInteger(0,name,OBJPROP_WIDTH,1); //--- отобразим на переднем (false) или заднем (true) плане    ObjectSetInteger(0,name,OBJPROP_BACK,false); //--- скроем (true) или отобразим (false) имя графического объекта в списке объектов    ObjectSetInteger(0,name,OBJPROP_HIDDEN,false); //--- успешное выполнение return(true);} //--- Кнопки торговой панели (Бай/Селл)voidPutButtonBS(string name,int x,int y,string text,int BWidth2,int BHeigh2,color FonButtonBS,color TXTButtonBS)  {ObjectCreate(0,name,OBJ_BUTTON,0,0,0);//--- установим координаты кнопки   ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);   ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y);//--- установим размер кнопки   ObjectSetInteger(0,name,OBJPROP_XSIZE,BWidth2);   ObjectSetInteger(0,name,OBJPROP_YSIZE,BHeigh2);//--- установим угол графика, относительно которого будут определяться координаты точки   ObjectSetInteger(0,name,OBJPROP_CORNER,1);//--- установим текст   ObjectSetString(0,name,OBJPROP_TEXT,text);//--- установим шрифт текста   ObjectSetString(0,name,OBJPROP_FONT,"Arial");//--- установим размер шрифта   ObjectSetInteger(0,name,OBJPROP_FONTSIZE,FontSizeInfo);//--- установим цвет текста   ObjectSetInteger(0,name,OBJPROP_COLOR,TXTButtonBS);//--- установим цвет фона   ObjectSetInteger(0,name,OBJPROP_BGCOLOR,FonButtonBS);//--- установим цвет границы   ObjectSetInteger(0,name,OBJPROP_BORDER_COLOR,ButtonBorder);//--- скроем (true) или отобразим (false) имя графического объекта в списке объектов   ObjectSetInteger(0,name,OBJPROP_HIDDEN,false);//--- отобразим на переднем (false) или заднем (true) плане   ObjectSetInteger(0,name,OBJPROP_BACK,false);  }voidPutLabelT(string name,int x,int y,string text, int space)  {ObjectCreate(0,name,OBJ_LABEL,0,0,0);//--- установим координаты метки   ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);   ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y);//--- установим угол графика, относительно которого будут определяться координаты точки   ObjectSetInteger(0,name,OBJPROP_CORNER, space);//--- установим текст   ObjectSetString(0,name,OBJPROP_TEXT,text);//--- установим шрифт текста   ObjectSetString(0,name,OBJPROP_FONT,"Arial");//--- установим размер шрифта   ObjectSetInteger(0,name,OBJPROP_FONTSIZE,FontSizeInfo);//--- установим цвет   ObjectSetInteger(0,name,OBJPROP_COLOR,TextColor);//--- скроем (true) или отобразим (false) имя графического объекта в списке объектов   ObjectSetInteger(0,name,OBJPROP_HIDDEN,false);//--- отобразим на переднем (false) или заднем (true) плане   ObjectSetInteger(0,name,OBJPROP_BACK,false);}//--- Цвет текста данныхvoidPutLabelD(string name,int x,int y,string data,int space)  {ObjectCreate(0,name,OBJ_LABEL,0,0,0);//--- установим координаты метки   ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);   ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y);//--- установим угол графика, относительно которого будут определяться координаты точки   ObjectSetInteger(0,name,OBJPROP_CORNER,space);//--- установим текст   ObjectSetString(0,name,OBJPROP_TEXT,data);//--- установим шрифт текста   ObjectSetString(0,name,OBJPROP_FONT,"Arial");//--- установим размер шрифта   ObjectSetInteger(0,name,OBJPROP_FONTSIZE,FontSizeInfo);//--- установим цвет   ObjectSetInteger(0,name,OBJPROP_COLOR,InfoDataColor);//--- скроем (true) или отобразим (false) имя графического объекта в списке объектов   ObjectSetInteger(0,name,OBJPROP_HIDDEN,false);//--- отобразим на переднем (false) или заднем (true) плане   ObjectSetInteger(0,name,OBJPROP_BACK,false);}//--- Создаем прямоугольную метку (фон)boolRectLabelCreate(string  name, int x,int y, int width, int height, color back_clr, int space)  {ResetLastError(); //--- создадим прямоугольную метку if(!ObjectCreate(0,name,OBJ_RECTANGLE_LABEL,0,0,0))   {return(false);} //--- установим координаты метки    ObjectSetInteger(0,name,OBJPROP_XDISTANCE,x);    ObjectSetInteger(0,name,OBJPROP_YDISTANCE,y); //--- установим размеры метки    ObjectSetInteger(0,name,OBJPROP_XSIZE,width);    ObjectSetInteger(0,name,OBJPROP_YSIZE,height); //--- установим цвет фона    ObjectSetInteger(0,name,OBJPROP_BGCOLOR,back_clr); //--- установим тип границы    ObjectSetInteger(0,name,OBJPROP_BORDER_TYPE,BORDER_SUNKEN); //--- установим угол графика, относительно которого будут определяться координаты точки    ObjectSetInteger(0,name,OBJPROP_CORNER,space); //--- установим цвет плоской рамки (в режиме Flat)    ObjectSetInteger(0,name,OBJPROP_COLOR,Blue); //--- установим толщину плоской границы    ObjectSetInteger(0,name,OBJPROP_WIDTH,1); //--- отобразим на переднем (false) или заднем (true) плане    ObjectSetInteger(0,name,OBJPROP_BACK,false); //--- скроем (true) или отобразим (false) имя графического объекта в списке объектов    ObjectSetInteger(0,name,OBJPROP_HIDDEN,false); //--- успешное выполнение return(true);} //--- ТаймерvoidOnTimer()  {   RefreshRates();   OnTick();  }  由于时间有限加上对源码的追溯做不到最终解释权,所以我们提供的源码EA仅仅只能用来做模拟测试使用,严格禁止商业使用和跑实盘!

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-06-09 04:03:53 HTTP/2.0 GET : https://mffb.com.cn/a/549929.html
  2. 运行时间 : 0.162647s [ 吞吐率:6.15req/s ] 内存消耗:4,497.74kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=37cb7562a87cda3bc933aa0492f801a4
  1. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/runtime/temp/49e0cd3e0528281c5c5fae705243dc37.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000772s ] mysql:host=127.0.0.1;port=3306;dbname=no_mfffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000759s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000293s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000293s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000509s ]
  6. SELECT * FROM `set` [ RunTime:0.000208s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000594s ]
  8. SELECT * FROM `article` WHERE `id` = 549929 LIMIT 1 [ RunTime:0.000522s ]
  9. UPDATE `article` SET `lasttime` = 1780949033 WHERE `id` = 549929 [ RunTime:0.004091s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 65 LIMIT 1 [ RunTime:0.000249s ]
  11. SELECT * FROM `article` WHERE `id` < 549929 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000447s ]
  12. SELECT * FROM `article` WHERE `id` > 549929 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000379s ]
  13. SELECT * FROM `article` WHERE `id` < 549929 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.001622s ]
  14. SELECT * FROM `article` WHERE `id` < 549929 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.004719s ]
  15. SELECT * FROM `article` WHERE `id` < 549929 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.003850s ]
0.164308s