metatrader4

How to do a backtesting with tick-level data in MetaTrader Terminal?

坚强是说给别人听的谎言 提交于 2021-02-18 08:22:11
问题 Say I have an EA that executes based on tick-level ( Bid, Ask ) information, is there a way to backtest it with tick-level information in MetaTrader Terminal's Strategy Tester? There are two problems: a. it seems MetaTrader only supports 1 min charts and tick-level data are re-simulated (not accurate) b. where could I get the tick-level data? If the answer is no for MetaTrader, is there other way I could backtest it (free better, but paid solutions are alright) with tick-level information?

How to do a backtesting with tick-level data in MetaTrader Terminal?

不羁的心 提交于 2021-02-18 08:22:08
问题 Say I have an EA that executes based on tick-level ( Bid, Ask ) information, is there a way to backtest it with tick-level information in MetaTrader Terminal's Strategy Tester? There are two problems: a. it seems MetaTrader only supports 1 min charts and tick-level data are re-simulated (not accurate) b. where could I get the tick-level data? If the answer is no for MetaTrader, is there other way I could backtest it (free better, but paid solutions are alright) with tick-level information?

What is the correct way to define MQL4 “#import of static class methods”?

 ̄綄美尐妖づ 提交于 2021-02-08 02:16:31
问题 What I'm trying to achieve is define classes (using MQL4 ) in separate files and use the methods from those classes in the main code. Essentially importing static class member functions. class example{ // ____ in example.mq4 public: static void myfunction(void) export { .. do something .. } } class example{ // ____ in example.mqh public: static void myfunction(void); } #include <example.mqh> // ____ in main.mq4: #import "example.ex4" void example::myfunction(void); #import Results in a

What is the correct way to define MQL4 “#import of static class methods”?

蹲街弑〆低调 提交于 2021-02-08 02:15:59
问题 What I'm trying to achieve is define classes (using MQL4 ) in separate files and use the methods from those classes in the main code. Essentially importing static class member functions. class example{ // ____ in example.mq4 public: static void myfunction(void) export { .. do something .. } } class example{ // ____ in example.mqh public: static void myfunction(void); } #include <example.mqh> // ____ in main.mq4: #import "example.ex4" void example::myfunction(void); #import Results in a

What is the correct way to define MQL4 “#import of static class methods”?

↘锁芯ラ 提交于 2021-02-08 02:15:29
问题 What I'm trying to achieve is define classes (using MQL4 ) in separate files and use the methods from those classes in the main code. Essentially importing static class member functions. class example{ // ____ in example.mq4 public: static void myfunction(void) export { .. do something .. } } class example{ // ____ in example.mqh public: static void myfunction(void); } #include <example.mqh> // ____ in main.mq4: #import "example.ex4" void example::myfunction(void); #import Results in a

What is the correct way to define MQL4 “#import of static class methods”?

佐手、 提交于 2021-02-08 02:14:43
问题 What I'm trying to achieve is define classes (using MQL4 ) in separate files and use the methods from those classes in the main code. Essentially importing static class member functions. class example{ // ____ in example.mq4 public: static void myfunction(void) export { .. do something .. } } class example{ // ____ in example.mqh public: static void myfunction(void); } #include <example.mqh> // ____ in main.mq4: #import "example.ex4" void example::myfunction(void); #import Results in a

Getting signals from telegram channel and placing them in MT4 using Python

前提是你 提交于 2021-01-25 07:12:38
问题 I would like to read messages from a Telegram channel (which are essential forex signals) and place the orders in MT4 windows application. For now, I have made a python script which listens to the channels and stores messages in a database. I can also parse the messages for necessary values like TP,SL etc. Now, that I have those signals, how can I place them? I read in others answers about ZeroMQ and Python binding but I don't need to do any analysis or strategy building, I just want to place

Getting signals from telegram channel and placing them in MT4 using Python

試著忘記壹切 提交于 2021-01-25 07:10:39
问题 I would like to read messages from a Telegram channel (which are essential forex signals) and place the orders in MT4 windows application. For now, I have made a python script which listens to the channels and stores messages in a database. I can also parse the messages for necessary values like TP,SL etc. Now, that I have those signals, how can I place them? I read in others answers about ZeroMQ and Python binding but I don't need to do any analysis or strategy building, I just want to place

Getting signals from telegram channel and placing them in MT4 using Python

旧城冷巷雨未停 提交于 2021-01-25 07:09:51
问题 I would like to read messages from a Telegram channel (which are essential forex signals) and place the orders in MT4 windows application. For now, I have made a python script which listens to the channels and stores messages in a database. I can also parse the messages for necessary values like TP,SL etc. Now, that I have those signals, how can I place them? I read in others answers about ZeroMQ and Python binding but I don't need to do any analysis or strategy building, I just want to place

Getting signals from telegram channel and placing them in MT4 using Python

人盡茶涼 提交于 2021-01-25 07:09:44
问题 I would like to read messages from a Telegram channel (which are essential forex signals) and place the orders in MT4 windows application. For now, I have made a python script which listens to the channels and stores messages in a database. I can also parse the messages for necessary values like TP,SL etc. Now, that I have those signals, how can I place them? I read in others answers about ZeroMQ and Python binding but I don't need to do any analysis or strategy building, I just want to place