Resource File not getting Read

 

Here is what I have tried reading through resource.

#define FILE "histogram_2019.csv"
#resource FILE as string ExtCode
double                    Close_Hist[];
double                    Histogram_color[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
void OnInit()
  {
   SetIndexBuffer(0,Close_Hist,INDICATOR_DATA);
   SetIndexBuffer(1,Histogram_color,INDICATOR_COLOR_INDEX);
   IndicatorSetString(INDICATOR_SHORTNAME,"Histogram Close");
   Print(ExtCode);
  }

I am getting no output. Please help me.

 

 #resource path_to_resource_file

Please see: https://www.mql5.com/en/docs/runtime/resources

About halfway through.

Documentation on MQL5: MQL5 programs / Resources
Documentation on MQL5: MQL5 programs / Resources
  • www.mql5.com
//| Calls standard OrderSend() and plays a sound                     | The example shows how to play sounds from files 'Ok.wav' and 'timeout.wav', which are included into the standard terminal package. These files are located in the folder is a folder, from which the MetaTrader 5 Client Terminal is started. The location of the terminal...
 
Sir I tried using the same reference but I could not read the file using it. Is there another way out? Please let me know.
Reason: