When I upload indicators and the Expert Advisor on the marketplace, it will be packed in a single file?

 
My question is simple: I have developed an EA that requires multiple indicators to work. When I upload all the necessary files in the mql5 marketplace, because I want to sell the EA in a single package, will the files be automatically packed in a single Expert Advisor file? 
Thanks in advance to everyone.
 
Quantic AI:
My question is simple: I have developed an EA that requires multiple indicators to work. When I upload all the necessary files in the mql5 marketplace, because I want to sell the EA in a single package, will the files be automatically packed in a single Expert Advisor file? 
Thanks in advance to everyone.
Using #resource
Using #resource
Using #resource
  • 2021.06.29
  • www.mql5.com
General: Using #resource
 

The indicator isn't part of your product. Therefor, the product can't use it except when running on your machine. Why does this surprise you when you try to use the cloud or Market Validation?

Just embed the other indicator(s) inside your indicator/EA. Add the CI(s) to your code as a resource.
          Use the publicly released code - MQL5 programming forum 2017.02.20
          Resources - MQL4 Reference

Be aware that using resources is 40x times slower than using CIs directly.
          A custom indicator as a resource - MQL4 programming forum 2019.11.26

Also make use there are no spaces in the path.
          Getting error 4802 when loading custom indicator that loads another custom indicator with iCustom - Technical Indicators - MQL5 programming forum. 2020.07.21