std::vector & x = MT4 ...

 

hi,

if my dll function is:

FXDELTADLL_API void __stdcall FXfunc::CFXdeltaDLL::calc(std::vector<Array> &xdbl, std::vector<Real> &ydbl,double intercept){... }

then how it should be declared in MT4? (double & x[][], double & y[], double intercept); doesn't work

is it possible to use std::vector in your dll and send to it table from MT4?

by now it works only if I have both in dll func and MT4 declaration double & x[]. but I would like a vector : (

Reason: