please give advice or how would you prefer to search for patterns in real time by intercepting the data stream from the broker before reaching MT5. or write from MT5 to the SQL database and scan the screener there
The way I would do is to simply write from MT5 to SQL and work from there. For people who do not want to work with databases can just create a Thread that will store the MT5 Ticks/Rates in memory.
Take Profit and Stop Loss can definitely be added. You can modify the strategy to your liking. I don't want to tell other people how to trade, but rather, provide the tools and knowledge to develop trading strategies.
Hey there. I do plan to create a fully functioning GUI app that has Buy/Sell buttons in the future. But to open source it, it requires alot of time and testing before I would do something like that. I have made an App with TkInter here: ua-cam.com/video/G7mwfE1Uorw/v-deo.html I have also made a Web App using Plotly-Dash Framework which has Buy/Sell buttons here: ua-cam.com/video/4MPZATQZLDs/v-deo.html Thanks for your feedback. I will keep this idea for future projects.
you didn’t think about how to add completed transactions to the sql database and automatically enter ID transactions into python code and not manually drive in each time
good job, your videos are getting better.
Thank you!
Great video👍. Every buy is 10000?
How do you backtest that strategy on mt5 strategy tester?
please give advice or how would you prefer to search for patterns in real time by intercepting the data stream from the broker before reaching MT5. or write from MT5 to the SQL database and scan the screener there
The way I would do is to simply write from MT5 to SQL and work from there.
For people who do not want to work with databases can just create a Thread that will store the MT5 Ticks/Rates in memory.
Can I contact with you?
please tell me why take profit and stop loss cannot be specified as a percentage of the entry price of a trade by ticker?
Take Profit and Stop Loss can definitely be added. You can modify the strategy to your liking. I don't want to tell other people how to trade, but rather, provide the tools and knowledge to develop trading strategies.
plz do for RSI indicator strategy
Sure thing! Do you want a Mean Reversion Strategy? Buy when oversold and sell when overbought?
@@ATJTraders618 I want mean revision strategy
Yes Bro, please make a Mean Reverse strategy. It will be perfect one !!!
do you have an open source graphic program with buy and sell buttons or can you show us a tutorial on Pyqt or is this an idea for the next lesson))
Hey there. I do plan to create a fully functioning GUI app that has Buy/Sell buttons in the future. But to open source it, it requires alot of time and testing before I would do something like that.
I have made an App with TkInter here: ua-cam.com/video/G7mwfE1Uorw/v-deo.html
I have also made a Web App using Plotly-Dash Framework which has Buy/Sell buttons here: ua-cam.com/video/4MPZATQZLDs/v-deo.html
Thanks for your feedback. I will keep this idea for future projects.
you didn’t think about how to add completed transactions to the sql database and automatically enter ID transactions into python code and not manually drive in each time
Thanks for the suggestion. Adding a DB would definitely make sense. Maybe I will add SQLite as an improvement for the Strategy Class.