Another more direct way:
https://fxdreema.com/shared/L2IDgoGJd
http://prntscr.com/gx0o8d
... which makes me think that he can probably work with the Typical or Median price that can be found somewhere in Condition -> Candle
Another more direct way:
https://fxdreema.com/shared/L2IDgoGJd
http://prntscr.com/gx0o8d
... which makes me think that he can probably work with the Typical or Median price that can be found somewhere in Condition -> Candle
@alvarez Do you actually need rectangles?
Actually I can't help with finding those 3 levels on the top and 3 levels on the bottom. This requires some algorithm and this is normally found in custom indicators, they are made for this.
But you can find the maximum/minimum value in certain amount of candles or period of time. This is not exactly the same, but it is easier. http://prntscr.com/gx1f71
In this example I see Rectangle, which is placed at the chart. On the chart we don't work with pixels, we work with Time and Price values. Those objects that can be put at certain pixels from the top, they are placed over the chart and they appear static (they don't move when you move the candles).
Otherwise all "Draw..." blocks are basically the native ObjectCreate() functions + all the possible parameters for the particular object. So in "Draw Rectangle" you specify all the parameters to draw a rectangle object. Such object has 2 Time and 2 Price coordinates, because it is made out of 2 points on the chart (Time1, Price1 and Time2, Price2).
This "modify stops" block is specific, you can see that it is pink color, similar to "For each Trade", which means that these blocks work together. "For each Trade" would cause "modify stops" to run 3 times in a row (for each trade that exists).
After that "Bucket of Trades" runs "modify stops" again, but this is not right in the case.
Try this - put "Bucket of Trades" above "For each Trade". I didn't tried it, but I think this is how it will work.
I tried to add this broker in my "Open an Account" window, but it doesn't work for me: http://prntscr.com/gut79f
I don't even remember what factorial is, I'm so bad in math
There are some Math functions in MQL already, but even if there is no function like this, you can try to make your own function (somewhere in /studio) and use it in the code
I don't understand what is the value in MyTime, because initially it is set to 0 as we can see, but I assume that somewhere you put a Time value in it, because the type is "datetime".
"Time mode" is normally a selector, it is not a Time value. If you have integer value in MyTime that represents the Time (something like 1507478881), then I can suggest to put it into Value->Numeric. Those options in Value->Time are mostly to get a new Time value, not to use already existing one.
I'm not sure about this == over there. Only use this if you are sure that the left and the right values can be exactly the same, not just similar.
I'm not very good with indicators. I never really understood ArraySetAsSeries() and iMAOnArray(). If anyone else can help...
But how the EA will understand that there are news coming? I think there are some indicators for that, but I never tried such indicators and to be honest, I don't know how to work with them 
I just saw that these errors appear when a Script is used. I can tell you what they are, but you will not understand. I will fix them, but they are actually not fatal.
What code do you have around this row?
I see two MA5 and two MA60. Exponential and Simple MA. In the block you are using Exponential, but in block 11 you have Simple 
Don't tell anyone, but once I wanted to add some funds in one "pink" website with my debit card. It didn't worked and after a while I discovered that the bank blocked that card. Maybe banks have their own filters, I don't really know how this system works.
Maybe you are using some block to close them somewhere? If you don't have any block with "close" in its name, then I don't know what the problem is, but I want more details about it, so I can investigate - project name, link of shared project, screenshots or something that shows the problem 
Do you have the problem of too long numbers? This is what I feel your problem is, because I don't really understand what you wrote (I'm also not native english) 
@engrled This attribute is for trendlines only. Trendlines are particular type of objects, they are different than this channel. To be honest, I don't even know what this channel is, I basically added it into the block along with all the other objects that I found in the documentation. I also don't know which price is which.
All examples are MQL4 only. If you generate .mq4 file and simply rename it to .mq5, it will most probably not work correctly.
Well, when somebody clicks on the PayPal button, he is sent to PayPal's territory. At this point you are really outside fxdreema.com. I don't know what is the problem and to be honest, I don't even know how to pay for something with PayPal via a card
I rarely use PayPal to pay for something and when I do, I have funds in it. But if you see that something is refused, isn't there a reason?
You have compilation error, which is because you have some value 5- for MA period in block 6. Remove that - sign from there.
If it works it doesn't matter. This block is mostly used for numeric types, but I guess that MathAbs() is not a problem in this case. I may try to find a way to skip MathAbs() for strings, but if you want you can also use the other Condition block where you can write something like this:
Symbol() == "AUDCAD"