Python MT5 Scalper

 
Hi, I have a question. I would like to start programming in Python for MT5. Does anyone have any examples or where could I download a python scalper that would serve as a base?
 

I doubt you will find any Python examples here in the CodeBase, because very few coders use Python to make EAs.

Coding a scalper in Python is probably also not the best choice. For one the API is not event driven and second Python is much slower compared to MQL5.

 
Fernando Carreiro #:

I doubt you will find any Python examples here in the CodeBase, because very few coders use Python to make EAs.

Coding a scalper in Python is probably also not the best choice. For one the API is not event driven and second Python is much slower compared to MQL5.

Yes, regarding performance i know it. I'm experienced C# developer 17+ years. But i want to also somehow start with trading and i have it in mind to use calculations for Python to use pandas, numpy and other GPU accelerated things. That means this kind of issues with native speed of Python doesn't matter. 

I want scalper or something similar and simple to somewhow start and see flow of trading here. That will be my starting point. In codebase, i was not able to find something. That's the reason why i asked here. 

 
M S Devel #: Yes, regarding performance i know it. I'm experienced C# developer 17+ years. But i want to also somehow start with trading and i have it in mind to use calculations for Python to use pandas, numpy and other GPU accelerated things. That means this kind of issues with native speed of Python doesn't matter. I want scalper or something similar and simple to somewhow start and see flow of trading here. That will be my starting point. In codebase, i was not able to find something. That's the reason why i asked here. 

MQL5 is a compiled language based on C/C++, with built-in matrix and vector maths support, as well as supporting OpenCL for performing GPU computations.