Blank.mq4 for drawing and object placing

 
is it possible somebody to make this Blank.mq4 able to recieve drawings and objects?
thanks
Files:
Blank.mq4  1 kb
 
dvetri: is it possible somebody to make this Blank.mq4 able to recieve drawings and objects?
  1. "Receive drawings and objects" makes no sense. Code puts objects on a chart.
  2. You have only three choices: Search for it, learn to code it, or pay (Freelance) someone to code it. We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using SRC) and the nature of your problem.
 

"""Receive drawings and objects" makes no sense.""
sorry for bad endlish.

when I put object manually in this "Blank", the object exists in List of objects but did not appear in "Blank" subwindow and it is invisible.
For example in Momentum indicator, for instance, objects can be placed. Problem here is when indicator moves. Then the object can be hidden. 
I know that the people here might not code it for me. I just thought that will be useful to everybody to be able to see all of their own signals in one place.


 
That is because the min/max of the separate chart are both zero. Add
#property  indicator_maximum 100
#property  indicator_minimum   0
 
thanks whroeder1