İş tamamlandı
Tamamlanma süresi: 1 gün
Geliştirici tarafından geri bildirim
Müşteri tarafından geri bildirim
I would like to build a MT5 bot that reads a CSV file for it's signals.
This bot will only be used in Strategy Tester so that I can test my buy/sell concepts based on historical chart indicators.
I will build a CSV file in the "MT5\files" folder. The EA will read that file, and execute BUY or SELL open and close transactions on various instruments.
I would like to discuss how this EA might display simple information about the number of trades taken during the Strategy Tester session, and the total profit and total loss.
I am looking for a developer that demonstrates a solid EA development background. It is important that you understand clearly how you would execute this system. Please tell me something about your background when you reply to this job.

Yanıtlandı
Arabuluculuk
37
27%
/
65%
Arabuluculuk
74
19%
/
72%
Arabuluculuk
24
17%
/
75%
Arabuluculuk
19
32%
/
47%
Yayınlandı: 15 kod
Arabuluculuk
24
54%
/
17%
Arabuluculuk
57
40%
/
37%
Arabuluculuk
21
10%
/
71%
Benzer siparişler
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 () {