النتائج 1 إلى 4 من 4
الموضوع: مساعده في كود
- 28-02-2023, 01:15 PM #1
مساعده في كود
السلام عليكم
في البداية مر على قبل سنوات اكسبيرت يفتح اوردرات وتقدر تختار نوع الاوردر الاول بيع او شراء واللوت والتوب والهدف
ونفس الشي للاورد الثاني والثالث جميعها
اتمنى اللي عنده يرفقه
سالت chatgpt يسوي اكسبيرت
سؤالي هو
write MQL4 EXPERT to open order depends on this order, buy,sell,sell,sell,sell.
all order have same profit 50 and stoploss 50,
everytime get profit will start the series again .
everytime will get stoploss will countie the series ,
example will open first order buy and we get stoploss ,now will open sell then we get stoploss ,as series will open sell again then we get profit ,now will start the series again with buy.
جوابه كان
ماقصر بدون اخطاء لكن مايفتح اوردراتكود PHP:// Define global variables
int series_size = 5; // number of orders in series
double profit = 50; // profit target in points
double stoploss = 50; // stop loss in points
int current_order = 0; // index of current order in series
bool is_trade_open = false; // whether a trade is currently open
void OnTick()
{
// check if a trade is currently open
if (is_trade_open) {
// check if the trade has reached the profit target or stop loss
double current_profit = (OrderType() == OP_BUY) ? (Bid - OrderOpenPrice()) : (OrderOpenPrice() - Ask);
if (current_profit >= profit || current_profit <= -stoploss) {
// close the current trade and reset the series
OrderClose(OrderTicket(), OrderLots(), Bid, 0, White);
current_order = 0;
is_trade_open = false;
}
}
else {
// open a new trade in the series
if (current_order == 0 || current_order == 1) {
// buy order
if (OrderSend(Symbol(), OP_BUY, 0.01, Ask, 0, Ask - stoploss, Ask + profit, "buy order", 0, 0, Green)) {
current_order++;
is_trade_open = true;
}
}
else {
// sell order
if (OrderSend(Symbol(), OP_SELL, 0.01, Bid, 0, Bid + stoploss, Bid - profit, "sell order", 0, 0, Red)) {
current_order++;
is_trade_open = true;
}
}
// reset the series if it has been completed
if (current_order > series_size) {
current_order = 0;
}
}
}
- 01-03-2023, 10:28 PM #2
- 02-03-2023, 10:11 AM #3
عموما أنا كمبرمج جربت ChatGPT ووجدته قد يساعد في كتابة كود مبدئي ثم التغيير عليه بحسب الحاجة ولكنه لايستطيع أن يعمل لك كود كامل يمكن الإعتماد عليه.
- 07-04-2023, 12:35 PM #4
بالتوفيق ان شاء الله ,