• 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 - Python Edition

Symphoenix

Active Member
Credit Hunter
Credits
0
sytrage-png.58899

:party::party::party: *** PYTHON EDITION *** :party::party::party:

Hi all !

Here's another gift from me ;)
It's a python script that uses OANDA's API to trade statistical imbalances between 6 pairs.
[EURUSD, GBPUSD, EURGBP, EURJPY, GBPJPY, USDJPY]

All you have to do is enter IDs and Tokens for OANDA and Telegram (to get notifications) into the file.

Configuration
pip3 install oandapyV20
pip3 install pyTelegramBotAPI
pip3 install multiprocessing

Execution
python3 SyTrage_v1.1.py

Cheers :party:
 

Attachments

What is your definition of statistical imbalances? and how will you trade them?
Can you give an example?

Thanks
 
Could someone explain step by step how to instal it for a mt4 person? This is something new so if we want to test it advice could help a lot ;)
 
Tutorial

1- Install python3 -> https://www.python.org/ftp/python/3.7.2/python-3.7.2.exe
/!\ During the installation process, don't forget to tick the box "Add to PATH...".
Reboot.

2- When it's done, open a terminal window (command prompt) and install the dependencies using the 3 "pip3 install..." commands (pip3 is a packet manager used to add libraries).

3- Edit the SyTrage script with any text editor to replace the IDs and Tokens values at the beginning of the code with yours. Save it.

4- Launch the script by typing "python3 SyTrage_v1.1.py" from the directory of this file (you can navigate to this directory with some "cd" commands).

(5- You can stop the execution of the script with Ctrl+C.)
 
Last edited:
IDs and Tokens values are specific datas that allow the script to work for you.
You can use Google to find how to get them from OANDA and Telegram.
Once the script is launched, sit down, relax and look at it working its magic ! :)
 
print.png
It usually prints the currency bias except when orders are initiated...
 

Attachments

  • print.png
    print.png
    14 KB · Views: 529
trade statistical imbalances between 6 pairs.
[EURUSD, GBPUSD, EURGBP, EURJPY, GBPJPY, USDJPY]
Is this an arbitrage system?
can I start from 200 or 500? or need 1000 or more as minimun deposit
is it martingale system?
thanks for share, i will try it
 
Is this an arbitrage system?
can I start from 200 or 500? or need 1000 or more as minimun deposit
is it martingale system?
thanks for share, i will try it
I recommend starting to use it with a demo account.
500$ 1:100
No martingale - not arbitrage per se, just using currencies weights to gain an edge.

--------------------------------------------------------------------------------------------------------

Important Notes:
1- No need to use "pip3 install multiprocessing" as it is already included in python 3.7.2 !
2- Use "python SyTrage_v1.1.py" or ""python3 SyTrage_v1.1.py"" to launch the script.

--------------------------------------------------------------------------------------------------------
 
:party::party::party: *** NEW VERSION *** :party::party::party:
Configuration
pip3 install oandapyV20
pip3 install pyTelegramBotAPI
pip3 install python-dateutil

Execution
python SyTrage_v1.4.py

Cheers :party:
 

Attachments

Back
Top