Especialistas: Martin for small deposits

 

Martin for small deposits:

Expert Advisor baseado em Martingale especialmente projetado para pequenos depósitos.


Autor: Vladimir Karputov

 
Boa estratégia. Qual sinal ele usa para abrir compras e abrir vendas ?
 
sergiomt :
Boa estratégia. Qual sinal ele usa para abrir compras e abrir vendas ?

Bloco de decisão:

   if(count_buys==0 || count_sells==0) // check the opening of the position "sell"
     {
      if(count_buys==0 && count_sells>0)
        {
         if(m_symbol.Bid()-price_highest_sell>ExtStep)
            need_to_open_a_sell=true;
        }
      else if(count_sells==0 && count_buys>0)
        {
         if(price_lowest_buy-m_symbol.Ask()>ExtStep)
            need_to_open_a_buy=true;
        }
     }

"need_to_open_a_sell" e "need_to_open_a_sell" - sinais de negociação