Loading indicator fail with error 560

 

Hello I use iCustom function to get indicator value and show to my Panel . For each symbol and timeframe I get a value follow that:

int Axen_handle = iCustom(_symbol, _timeframe, "Axen_-_SR", SignalPeriod, Mode, ArrowGap);
   double buf[];
   CopyBuffer(Axen_handle , 2, 0,1, buf);

Indicator ("Axen_-_SR.ex5") have located in  MQL5/Indicators
Symbol have selected  in MarketWatch

I have not get this error in my computer but This is screen of my customer:

loading of Axen_-_SR (symbol,timeframe) from C:\.........\Indicator\ Axen_-_SR.ex5 failed [560]
This error appear in Journal tab. There are no error in Expext tab.
I have search error code 560 but I get no result.
thanks for every help or idea.

 

Perhaps you should read the manual, especially the examples.
   How To Ask Questions The Smart Way. (2004
      How To Interpret Answers.
         RTFM and STFW: How To Tell You've Seriously Screwed Up.

They all (including iCustom) return a handle (an int). You get that in OnInit. In OnTick/OnCalculate (after the indicator has updated its buffers), you use the handle, shift and count to get the data.
          Technical Indicators - Reference on algorithmic/automated trading language for MetaTrader 5
          Timeseries and Indicators Access / CopyBuffer - Reference on algorithmic/automated trading language for MetaTrader 5
          How to start with MQL5 - General - MQL5 programming forum - Page 3 #22 (2020.03.08)
          How to start with MQL5 - MetaTrader 5 - General - MQL5 programming forum - Page 7 #61 (2020.07.05)
          How to call indicators in MQL5 - MQL5 Articles (12 March 2010

 
William Roeder:


They all (including iCustom) return a handle (an int). You get that in OnInit. In OnTick/OnCalculate (after the indicator has updated its buffers), you use the handle, shift and count to get the data.

Thank for your help
You right, ICustom get  handle in OnInit and Copybuffer on OnTick.
But I don't know what mean error 560 . Do you have knowledge about that?