Questions from Beginners MQL5 MT5 MetaTrader 5 - page 306

 
mavar:

Unfortunately, this condition does not work when opening a trade.

//-------------------------------------------------------------------+
//------Покупка
   if(!PositionSelect(Symbol()))
     {
      if(last_tick.last<BBLow[2]-natyajka)
        {
         int znak=last_tick.last-BBLow[2];
         MqlTradeRequest request;
         MqlTradeCheckResult check;
         MqlTradeResult result;
         ZeroMemory(request);
         ZeroMemory(result);
         ZeroMemory(check);
         request.type   = ORDER_TYPE_BUY;
         request.price  = SymbolInfoDouble(Symbol(), SYMBOL_ASK);
         request.action = TRADE_ACTION_DEAL;
         request.symbol = Symbol();
         request.volume = 0.1;
         request.deviation=30;
         request.type_filling=ORDER_FILLING_FOK;
         //---- Открываем BUY позицию и делаем проверку результата торгового запроса
         if(!OrderSend(request,result) || result.retcode!=TRADE_RETCODE_DONE)
           {
            Print("Не удалось открыть Buy позицию по ",Symbol());
            Print(result.retcode);
           }
         else
           {
            Print("Buy позиция по ",Symbol()," открыта! ");
            Print(result.retcode);
           }
        }
     }
//+------------------------------------------------------------------+
So try it.
 

Hello!

I bought one indicator (TD) in MT4 in the "Market" tab. Can you tell me how to activate it or where to find it?

 

Hello!

I bought one indicator (TD) in MT4 in the "Market" tab. Can you tell me how to activate it or where to find it?

 
Phill-m:

Hello!

I bought one indicator (TD) in MT4 in the "Market" tab. Can you tell me how to activate it or where to find it?

In the MT4 navigator -->Indicators -->Market
 
artmedia70:
In navigator MT4 -->Indicators-->Market
Where is this navigator? I can't find it.
 
Phill-m:

Hello!

I bought one indicator (TD) in MT4 in the "Market" tab. Can you tell me how to activate it or where to find it?

1. the activation will be done automatically

2. Where to find the downloaded one from the Market

 
barabashkakvn:

1. activation will be carried out automatically

2. Where to find a download from the Market

Thank you very much for the detailed instructions! I will keep looking at it.
 
Phill-m:
Thank you very much for the detailed instructions! I'll be looking into it.
Found it, thank you! One more question: Where can I find this indicator in the mobile version of MT4 on iPhone?
 
Phill-m:
Found it, thanks! One more question: Where can I find this indicator in the mobile version of MT4 on iPhone?
In mobile terminals (Android, iOS) there are no custom indicators, scripts and EAs.
 
Question from a beginner, is it possible to set up an indicator (i-SignalOfTrade) to signal only the opening of orders? Or is there a similar one? Thank you for your reply!
Reason: