Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

MQL why is this bot not making trades??

repahel

New Coder
//+------------------------------------------------------------------+
//| short_martingale.mq5 |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2022, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property version "1.00"
#include <customfunctions.mqh>
#include <Trade/Trade.mqh>
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
CTrade trade;

int lot_amount = 0.01;
int tp = 0.0013;
int sl = 0.01;
void OnTick()
{
//---

double ask = NormalizeDouble(SymbolInfoDouble(_Symbol, SYMBOL_ASK), _Digits);
double bid = NormalizeDouble(SymbolInfoDouble(_Symbol, SYMBOL_BID), _Digits);

if (PositionsTotal() == 0)
{
sl = ask + ask*sl;
tp = ask + ask*tp;
MqlRates price_info[];
ArraySetAsSeries(price_info, true);
int price_data = CopyRates(_Symbol, _Period, 0, 3, price_info);
trade.Buy(lot_amount, NULL, ask, sl, tp, NULL);
}

}
//+------------------------------------------------------------------+
 
//+------------------------------------------------------------------+
//| short_martingale.mq5 |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2022, MetaQuotes Ltd."
#property link "https://www.mql5.com"
#property version "1.00"
#include <customfunctions.mqh>
#include <Trade/Trade.mqh>
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
CTrade trade;

int lot_amount = 0.01;
int tp = 0.0013;
int sl = 0.01;
void OnTick()
{
//---

double ask = NormalizeDouble(SymbolInfoDouble(_Symbol, SYMBOL_ASK), _Digits);
double bid = NormalizeDouble(SymbolInfoDouble(_Symbol, SYMBOL_BID), _Digits);

if (PositionsTotal() == 0)
{
sl = ask + ask*sl;
tp = ask + ask*tp;
MqlRates price_info[];
ArraySetAsSeries(price_info, true);
int price_data = CopyRates(_Symbol, _Period, 0, 3, price_info);
trade.Buy(lot_amount, NULL, ask, sl, tp, NULL);
}

}
//+------------------------------------------------------------------+

Hi there, quick question for ya...do you know by any chance if the platform you are using has an API for bot building? If so, there may be a chance you may not be connecting to it. Really hard to tell from the bit of code you posted.
 
Hi there, quick question for ya...do you know by any chance if the platform you are using has an API for bot building? If so, there may be a chance you may not be connecting to it. Really hard to tell from the bit of code you posted.
sorry for not clarifying, the code is running on MetaTrader 5 and is written in meta editor it is connected but when I run the backtesting the bot does not make any trades. i have made a few bots before using this platform and they work, the problem is not the lot amount or the connection.
 
Back
Top Bottom