XMA-XN – indicator MetaTrader 5
The fan consisting of one hundred XMA moving averages. Indicator buffers are declared using the simplest class for the code optimization: //+——————————————————————+ //| Variables arrays for the indicator buffers creation | //+——————————————————————+ class CIndicatorsBuffers { public: double IndBuffer[]; }; //+——————————————————————+ //| Indicator buffers creation | //+——————————————————————+ CIndicatorsBuffers Ind[LINES_TOTAL]; If you want to change the … Read more