R and Metatrader 4

R has a great way to collect data from other sources (e.g. Yahoo finance, etc.)

library(quantmod) getSymbols("YHOO",src="google") 

Is there any way to build Metatrader 4 in R

eg:

 library(*******) getSymbols("***",period=1hr, src="Metatrader4") 
+4
source share
2 answers

Give MQL2R a try, this is my new open source project that allows just that

https://code.google.com/p/mql2r/

+3
source
+3
source

Source: https://habr.com/ru/post/1482706/


All Articles