MQL4 dot operator New comment [Deleted] 2011.08.25 18:29 Hi, I'm an MQL4 newb though an experienced C/C++ programmer. I'm wondering where I would find the documentation reference on the MQL4 operators, specifically the dot operator as in the following code snip: //linear regression calculation int start.bar=LR.length, end.bar=0; int n=start.bar-end.bar+1; [WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. is there any indicator which can be used in an EA to get the values of Linear Regression. is there any indicator which can be used in an EA to get the values of Linear Regression. Simon Gniadkowski 2011.08.25 19:31 #1 There is no dot operator . . . start.bar is a variable name. William Roeder 2011.08.25 21:54 #2 start.bar start_bar startBar New comment
Hi,
I'm an MQL4 newb though an experienced C/C++ programmer.
I'm wondering where I would find the documentation reference on the MQL4 operators, specifically the dot operator as in the following code snip:
//linear regression calculation
int start.bar=LR.length, end.bar=0;
int n=start.bar-end.bar+1;