What is difference between indicator_buffers and indicator_plots ?

 

They do not seem to follow the MQL5 behaviour. Whatever I set, the higher number takes control of the visible output.

#property indicator_buffers 3
#property indicator_plots 1

does the same as  

#property indicator_buffers 1
#property indicator_plots 3
 
Mql4 doesn't have indicator_plots Program Properties (#property) - MQL4 Documentation
 
WHRoeder:
Mql4 doesn't have indicator_plots Program Properties (#property) - MQL4 Documentation
Thank you, exactly what I was looking for.
Reason: