Termos de Referência

//————————————————————————————————————————————————————————————————————
struct S_MCAV
{
    double matureSum;
    double totalSum;
    double value;

    void Init ()
    {
      matureSum = 0.0;
      totalSum  = 0.0;
      value     = 0.5;
    }

    void AddContext (int ctx)
    {
      totalSum += 1.0;
      if (ctx == 1) matureSum += 1.0;
    }

    void ApplyDecay (double rate)
    {
      matureSum *= rate;
      totalSum  *= rate;
    }

    void Update ()
    {
      if (totalSum > 0.01) value = matureSum / totalSum;
      else value = 0.5;
    }
};

//————————————————————————————————————————————————————————————————————//————————————————————————————————————————————————————————————————————
struct S_DCA_Cell
{
    E_DC_State state;
    double     csm;
    double     semi;
    double     mature;
    double     threshold;
    int        agentIndices [];
    int        agentCount;

    void Init (double migrationThreshold, int maxAgents)
    {
      state      = DC_IMMATURE;
      csm        = 0.0;
      semi       = 0.0;
      mature     = 0.0;
      threshold  = migrationThreshold;
      agentCount = 0;
      ArrayResize (agentIndices, maxAgents);
    }

    void Reset (double newThreshold)
    {
      state      = DC_IMMATURE;
      csm        = 0.0;
      semi       = 0.0;
      mature     = 0.0;
      threshold  = newThreshold;
      agentCount = 0;
    }

    void AddAgent (int idx)
    {
      if (agentCount < ArraySize (agentIndices))
      {
        agentIndices [agentCount++] = idx;
      }
    }
};

//————————————————————————————————————————————————————————————————————

Respondido

1
Desenvolvedor 1
Classificação
(1)
Projetos
1
0%
Arbitragem
1
0% / 100%
Expirado
0
Livre
2
Desenvolvedor 2
Classificação
(15)
Projetos
22
45%
Arbitragem
6
33% / 33%
Expirado
2
9%
Carregado
Publicou: 7 artigos, 35 códigos
3
Desenvolvedor 3
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
4
Desenvolvedor 4
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
5
Desenvolvedor 5
Classificação
(7)
Projetos
9
33%
Arbitragem
0
Expirado
1
11%
Ocupado
Publicou: 1 código
6
Desenvolvedor 6
Classificação
(2)
Projetos
2
0%
Arbitragem
1
0% / 0%
Expirado
0
Trabalhando
7
Desenvolvedor 7
Classificação
Projetos
0
0%
Arbitragem
0
Expirado
0
Livre
8
Desenvolvedor 8
Classificação
Projetos
1
0%
Arbitragem
0
Expirado
0
Livre
9
Desenvolvedor 9
Classificação
Projetos
0
0%
Arbitragem
1
0% / 0%
Expirado
0
Trabalhando
Publicou: 2 códigos
Pedidos semelhantes
MetaTrader 5 (MT5) Price-Level Monitoring & Automated Phone Call Alert System Developer Needed Project Overview I am looking for an experienced developer to build a custom trading assistant for MetaTrader 5 (MT5) that monitors important price levels I manually mark on my charts and immediately calls my phone when the market reaches or interacts with those levels. This is Phase 1 of a larger trading assistant project
MT4/MT5 HFT EA us30 30 - 3000 USD
Hello everybody, I'm looking for an experienced MQL4/MQL5 developer to optimize a High-Frequency Trading (HFT) Expert Advisor for both MT4 and MT5. The EA performs consistently and profitably on demo accounts, but when it is run on Raw and Standard live accounts under what appear to be the same trading conditions, it begins generating losses. I do not have the original source code (.mq4/.mq5); I only have the

Informações sobre o projeto

Orçamento
40+ USD

Cliente

Pedidos postados1
Número de arbitragens0