• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

New EA SyTRAGE - My first MT5 scalper !

I'm currently working on a performance interface included into the EA :

Perf_Tracker.png

What do you think about it ?
 

Attachments

  • Perf_Tracker.png
    Perf_Tracker.png
    13.4 KB · Views: 797
Symphoenix Hi , i show the result of version 1.6 , last night.
From the morning until now no other open trades...
looks nice , i wait for a result of the day...
 

Attachments

  • Screenshot_2018-10-08-14-48-46.png
    Screenshot_2018-10-08-14-48-46.png
    229.2 KB · Views: 278
eurgbp is not closing for me why
 

Attachments

  • 3C1D2B65-743D-4E93-8763-7B4F5E046CA0.png
    3C1D2B65-743D-4E93-8763-7B4F5E046CA0.png
    217.6 KB · Views: 238
  • 038CB668-C475-489E-BE0B-1C2EDBAFEF38.png
    038CB668-C475-489E-BE0B-1C2EDBAFEF38.png
    111.7 KB · Views: 225
Hi everyone,
This morning, I launched demo account and real account (1.000 euros) to see. I suggest to wait this week and I'll share the two results on friday afternoon.
 
Hi Symphoenix,
If I want to minimize lots on work, how can I do ? You've got 3 parameters : money-management,margin_percent and lot_size.
For example, EA actually shows a drawdown around 20%. (I know, it's on BT and only on 4 months). If I want to limite my DD around 5%, just have to divide margin_percent by 4 (it's actually 3.5) ?
 
Bad results for me today, I dont see sl, I think open order are good , but ea doesn't close order so that's go down ...
 
Version BEE:

upload_2018-10-8_7-21-29.png

upload_2018-10-8_7-51-34.png

Very nice!!
 

Attachments

  • upload_2018-10-8_7-21-29.png
    upload_2018-10-8_7-21-29.png
    145.4 KB · Views: 754
  • upload_2018-10-8_7-51-34.png
    upload_2018-10-8_7-51-34.png
    7.9 KB · Views: 744
Last edited:
I've discovered the OnBookEvent that allowed further optimisations.
For now, each currency is analyzed only when a new tick is incoming on the pair where the EA is placed.
With the OnBookEvent, the coder can build a panel of currencies to watch and whenever a new tick is incoming on any of the pairs considered, the EA kicks in.
The only bad thing is that it is not BTable !
So, here's a highly experimental build "BEE - BookEvent Edition" which implements the OnBookEvent...
Only for the adventurers :p


Hi, I have not tested your EA but there is a much simpler solution, just change "Void OnTick" to "Void OnTimer" and "int OnInit () {}" add "int OnInit () {EventSetMillisecondTimer (20);}" (here you can use a variable for the number)
That will solve the tick problem, I'm telling you because I'm working on a triangular arbitration EA
 
Symphoenix,

for noobs (example me) :D what is the core different of the normal EA and the BEE?

Is BEE more accurate? Or safer?

Thx in advance for the explanations :)
 
Back
Top