//+------------------------------------------------------------------+//| every tick20.mq4 |//| mohsin mewati |//| |//+------------------------------------------------------------------+#property copyright"mohsin mewati"#property link""//+------------------------------------------------------------------+//| expert initialization function |//+------------------------------------------------------------------+int init()
{
//----int order_open_time_buy =0;//intiger to save buy open Timeint order_open_time_sell =0;//intiger to save sell open Timebool err_close_all_orders =0;//bolean to save get last error for close all opened orders codebool err_sell=0;
bool err_buy=0;
bool err_selection_buy=0;
bool err_selection_sell=0;
bool buy_modified=0;
bool sell_modified=0;
double mf_buy=0;
double mf_sell=0;
int buy_trail=0;
int err_trail_buy=0;
int err_modify_sell=0;
int buy_selection=0;
bool buy_open_price=0;
int sell_selection=0;
//----return(0);
}
//+------------------------------------------------------------------+//| expert start function |//+------------------------------------------------------------------+//----int start()
{
bool err_buy;
int buy_ticket;
bool err_sell;
int sell_ticket;
bool err_selection_buy;
int buy_selection;
double buy_open_price;
bool err_selection_sell;
int sell_selection;
bool err_mf_buy;
bool srr_mf_sell;
bool err_mf_sell;
bool err_trail_buy;
bool err_modify_sell;
bool buy_modified;
bool err_trail_sell;
bool err_modify_buy;
//coding startswhile(err_buy=1){//for loop started to execute a buy Order
buy_ticket=OrderSend(Symbol(),OP_BUY,1,Ask,3,Ask+20*Point,0,Green); //code to execute a buy (buy order placed without SL but with a TP of 20 pips
err_buy=GetLastError;//code to check either buy is executed or not?
}//for loop endwhile(err_sell=1){//for loop to place a sell order
sell_ticket = OrderSend(Symbol(),OP_SELL,1,Ask,3,Ask-20*Point,0,Red);//code to place a sell ,order placed without SL but with a TP of 20 pips
err_sell=GetLastError;//code to check either sell is placed or not?
}//for loop endsAlert();
//__________________________________________________________________________________________________________________________________while(err_selection_buy="true"){// for loop start to selection of first executed order for further procedure
buy_selection=OrderSelect("Buy_ticket",SELECT_BY_TICKET);//order select and stored in intiger
err_selection_buy=GetLastError;//code to check eithet order is selected or not
}//for loop ends
buy_open_price=OrderOpenPrice;//taking open price for the first selected orderwhile(err_selection_sell="true"){// for loop start to selection of second executed order for further procedure
sell_selection=OrderSelect("Sell_ticket",SELECT_BY_TICKET);//order select and stored in intiger
err_selection_sell=GetLastError;//code to check eithet order is selected or not
}//for loop endsint sell_open_price=OrderOpenPrice;//taking open price for the second selected orderwhile("buy_trail=1"; "Sell_trail=1"){// while loop started to check if thow of them or one is truewhile (err_mf_buy="true" && "err_mf_sell="true""){//while loop start to take price quote every time for buy and selldouble mf_buy=MarketInfo("GBPUSD",MODE_POINT);//code to store markeet info in integer mf_buy
err_mf_buy=GetLastError;//code to confirm the previous line of code executed? double mf_sell=MarketInfo("GBPUSD",MODE_POINT);//code to store markeet info in integer mf_sell
err_mf_sell=GetLastError;//code to confirm the previous line of code executed?
}
if(mf_buy-20=>buy_open_price && "Buy_trail=0"){//if condition to compare if current markeet quote which stored in mf_buy is 20 times greater than the open price of buy Order?while(err_trail_buy="true"){//if above condition true for loop started to start trailing on buy order.OrderModify(buy_ticket,buy_open_price,+20*TrailingStop);//code to start trailig stop on buy for 5 pips since our buy is in 20 pips profit the trail start at 15 pips
err_trail_buy=GetLastError;//code to confirm the previous line of code executed?
}
while(err_modify_sell="true"){//if buy is in profit for 20 pips and trailing stop started on it i want my sell to modify for take profit for just 5 pips.OrderModify("Sell_ticket", double stoploss,Order_Open_Price-5,"ORANGE" )//code to modify sell for tp just for 5 pips
err_modify_sell=GetLastError;//code to confirm the previous line of code executed?
buy_trail=1;//intiger use to remember that the buy was in profit and all the cooding associated with it was executed there is no need to check .
}
elseif (mf_sell+20<="Sell_open_price" && "Sell_trail=0"){//another logical test to check if buy was not in 20 pips if our sell is in 20 pips profit if so then in the next for loop statrtedwhile(err_trail_sell="true"){//for loop start to modify sell for trailOrderModify(sell_ticket),sell_open_price,-20*TrailingStop,);//code to modify sell for trailing as above mentioned for buy sell is also for 20 pips and if it is in 20 pips profit trailing start on 15 pips
err_trail_sell=GetLastError;//code to confirm the previous line of code executed?
}
while(err_modify_buy="true"){//if our sell is in 20 pips profit and trailing executed on it while loop start to modify buy for tp for just 5 pips OrderModify( buy_ticket, doubleOrderOpenPrice+5, color arrow_color="blue")//code to modify buy for tp just 5 pips
err_modify_buy=GetLastError;//code to confirm the previous line of code executed?
sell_trail=1;//intiger use to remember that the sell was in profit and all the cooding associated with it was executed there is no need to check .
}
}
}
}
//----return(0);
}
//+------------------------------------------------------------------+//+------------------------------------------------------------------+//| expert deinitialization function |//+------------------------------------------------------------------+int deinit()
{
//----//----return(0);
}
bool err_buy; // as you can see err_buy is a bool//coding startswhile(err_buy=1){//for loop started to execute a buy Order // err_buy is a bool
buy_ticket=OrderSend(Symbol(),OP_BUY,1,Ask,3,Ask+20*Point,0,Green); //code to execute a buy (buy order placed without SL but with a TP of 20 pips
err_buy = GetLastError;//code to check either buy is executed or not? // err_buy is a bool
}//for loop end
好吧,我错了,我把代码贴错了。
我在这里重新粘贴,以便于理解。
以下是我想从中提取快速K的代码,在一个Intiger和另一个Intiger中提取D。
并请修复其错误或给我一些提示
并请修复其错误或给我一些提示
当你在元编辑器中编译它时,它会显示一些错误。
那就修正它们吧 ......为什么你希望别人为你做这件事?
你读过这段代码吗?
是的,err_buy是一个Bolean,存储两个值true或false 0或1。
首先我声明它,然后我在循环中使用它来执行买入指令,然后我检查买入是否被执行,请告诉我问题出在哪里,我的程序只有8个错误,我在这个网站上看到你们的帮助很大,我知道你们能做到。
是的,err_buy是一个Bolean,存储两个值true或false 0或1。
首先我声明它,然后我在循环中使用它来执行买入指令,然后我检查买入是否被执行,请告诉我问题出在哪里,我的程序只有8个错误,我在这个网站上看到你们的帮助很大,我知道你们能做到。
Buy_ticket=OrderSend
订单发送返回已执行订单的票号,如355487936,就是这样,我把buy_ticket变量声明为存储数字的intiger。
Buy_ticket=OrderSend
订单发送返回已执行订单的票号,如355487936,就是这样,我将buy_ticket变量声明为存储数字的intiger。
请帮助我的代码,当我编译时,它显示我在外面。
Debes poner for (int i = ArraySize(MyArray)-StochPeriod-1; i >= 0; i--)