[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

DLL access of EL array



PureBytes Links

Trading Reference Links


Regarding recent messages about finding the address of an EL array:

A DLL generated by PBDLL has very strong array capability (same for a good 
C compiler).  Compared to an EL array, size and dimensions are virtually 
unlimited and speed is much faster.  Therefore, I would recommend not trying 
to have the DLL access an EL array but to abandon the EL array completely.  
Move as much of your code, simple variables and arrays to the DLL as 
possible.  That means all math intensive stuff, data storage, looping and 
some of the conditional testing.  Let EL do only the buy and sell code, back 
testing, optimization and charting.  You can still have full control by 
passing EL Inputs as parameters to the DLL.