• 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 !

Hi Syphoenix,
I know that you've got to fix certain element in your code these days but, if you can explain more the money management...
Yseterday, I made some profit with 16 orders (version 1.4 and 1.5 ; 14 win/2 loss). But for exemple, I had two orders on EURGBP (not at the same time) ; one with 1.05 lot (win), the other with 3.05 lot (win too). My account demo is with 100.000 deposit.
Sy-Trage is a scalper, ok ; but perhaps a grid/martingale too ???
Thanks for reply and felicitation for your great job and sharing it.
 
SyTRAGE.png
:party::party::party: *** New Version *** :party::party::party:


BT_v1.6.png
SQ_v1.6.png

I think I got rid of the nasty bugs...
BUT don't use this EA live as I doubt these results are rock solid.

Cheers :rock:
 

Attachments

Hi Syphoenix,
I know that you've got to fix certain element in your code these days but, if you can explain more the money management...
Yseterday, I made some profit with 16 orders (version 1.4 and 1.5 ; 14 win/2 loss). But for exemple, I had two orders on EURGBP (not at the same time) ; one with 1.05 lot (win), the other with 3.05 lot (win too). My account demo is with 100.000 deposit.
Sy-Trage is a scalper, ok ; but perhaps a grid/martingale too ???
Thanks for reply and felicitation for your great job and sharing it.
Salut Jean-Léon !
Thanks for your kind words.
SyTrage started as a scalper but is now more an opportunist :)
It spots inefficiency on the short-term range by confronting different pairs between them and generates a deviation score.
If this score is larger than the sigma setting, it opens 3 positions on each of the 3 pairs which have the biggest potential.
The lot size is determined either by the EA or by the user. I suggest letting this EA do what it does the best : balancing !
Because that's what you noticed... MT5 considers a position as a group of deals on the same pair resulting from orders. It's quiet disturbing at first for a MQL4 coder.
Indeed, a position is an aggregate of several deals on the same pair. That's led to some misinterpretations :mm:
So SyTrage occasionnally increases the size of a position but it is not at the core of its philosophy, which is more mosquito-inspired (take and go) :D
 
Salut Jean-Léon !
Thanks for your kind words.
SyTrage started as a scalper but is now more an opportunist :)
It spots inefficiency on the short-term range by confronting different pairs between them and generates a deviation score.
If this score is larger than the sigma setting, it opens 3 positions on each of the 3 pairs which have the biggest potential.
The lot size is determined either by the EA or by the user. I suggest letting this EA do what it does the best : balancing !
Because that's what you noticed... MT5 considers a position as a group of deals on the same pair resulting from orders. It's quiet disturbing at first for a MQL4 coder.
Indeed, a position is an aggregate of several deals on the same pair. That's led to some misinterpretations :mm:
So SyTrage occasionnally increases the size of a position but it is not at the core of its philosophy, which is more mosquito-inspired (take and go) :D
Speak french Syphoenix ?
 
If you want to speak in french maybe it's better to do it via PM.
Just thinking about the others here ;)
 
a.JPG b.JPG [ATTACH = full] 58972 [/ attach]
[ATTACH = full] 58973 [/ attach]
 

Attachments

  • a.JPG
    a.JPG
    70.1 KB · Views: 1,453
  • b.JPG
    b.JPG
    62.2 KB · Views: 1,451
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
 

Attachments

Back
Top