Murat Yazici:
Hi,
I try to create an EA with mql4. I need create a table and then I can update it from time to time. But I don't know how I can create a table and array.
My table is 22x7 matrix.
table[state,action] = np.zeros((22,7)) // 22*7 matrix including all elements as zero.
And, How can I update this table? Forexample table[5,3] = 5.
Best,
Murat Y.
int table[22][7] = {0}; table[20][5] = 5;
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
I try to create an EA with mql4. I need create a table and then I can update it from time to time. But I don't know how I can create a table and array.
My table is 22x7 matrix.
table[state,action] = np.zeros((22,7)) // 22*7 matrix including all elements as zero.
And, How can I update this table? Forexample table[5,3] = 5.
Best,
Murat Y.