Trabalho concluído
Tempo de execução 6 dias
Comentário do desenvolvedor
Create an EA that embeds the sample code from:
https://docs.mql4.com/common/cryptencode
using aes256 crypt method (CRYPT_AES256)
and
https://docs.mql4.com/common/webrequest calling my DOMAIN/PHP page
The goal is to get these functions to work within a sample proof-of-concept EA.
This EA will have extern inputs for:
* encrypt key
* string to encrypt/decrypt
* Domain HTTPS String
* Text file name for storing the 'proof'
*** NOTE: An additional project will follow upon successful performance of this EA to embed the code into my current EA
*** NOTE: Please provide your background/CV information
*** NOTE: Please provide source code at the completion of the project
*** NOTE: I apologize if you have seen this before. I had submitted this request under a secondary login here on mql5.com and had to withdraw it from there.
Pedidos semelhantes
PHANTOM PROTOCOL V1 – MT5 EXPERT ADVISOR SPECIFICATION Develop a professional MetaTrader 5 (MT5) Expert Advisor named “PHANTOM PROTOCOL V1”. PRIMARY MARKET: - XAUUSD (Gold) - Designed primarily for M15 and H1 timeframes. - The EA must work with both 3-digit and 2-digit gold pricing where applicable. TRADING LOGIC: Use pure price-action and market-structure analysis rather than relying on a single indicator. The EA
Create a bot that can trade and read indicators easy to read for first time users. Bot that can be used on a phone and connect to MT5. It should be easy to install or use on any device especially phone and laptop, preferably the bot that can run over night and controllable when needed
//———————————————————————————————————————————————————————————————————— 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 () {