dingmaotu / mql4-lib

MQL4/5 Foundation Library For Professional Developers
Apache License 2.0
544 stars 251 forks source link

Issue with multiple indicator buffer access #43

Closed sdejonghe closed 6 years ago

sdejonghe commented 6 years ago

Hello, I'm testing your framework and it is awesome. But I have an issue when I need to access an indicator with multiples buffers. Is it possible to explain if it is possible to access other buffer that the one in for example Demarker indicator double operator[](const int index) {return ExtMainBuffer[ArraySize(ExtMainBuffer)-index-1];} What about if I need to access ExtMaxBuffer[]? Is it a limit in the design and do I need to create some getter to access supplementaries buffers? Best Regards,

dingmaotu commented 6 years ago

You can just create another getter to use other buffers ^_^