Need help how to set up buy pending order in grid
-
Hello,
my first question i wonder . What is the different between buy pending order in grid and bucket of pending order. is it the same ?and if i want to set up the trading model .
- set buy pending order in grid , how to link this buy pending order , what condition i have to link with ?
i want to set ,start if no trade then buy now at the current price , then set buy pending order at the first buying price at the 100 pipe , below and upper // lot 0.1 // no stop loss // take profit 100 pipe //
i attach the picture for you understanding , apologize for my English thank you .
cheaw .......
111.jpg - set buy pending order in grid , how to link this buy pending order , what condition i have to link with ?
-
Pending orders in grid - the idea here is to place multiple pending orders at once. You can set the distance between them, lot sizes and other things.
Bucket of... - this block does not create orders, it selects them, so then you can calculate few things out of the selected group of orders. Things like min, max or average lot size, sl, tp, profit...
-
thank you for u answer , i'm very new for EA builder .
Now i have question if i want to build the indicator to attach on chart . for example Simple moving average .
so i should do it in On Tick mode is it correct ? because on the real time trading it will adjust all time .
and what block i have to use to make it show Simple moving average on chart ?i'm trying this one by download this and attach to my chart but the result is nothing occurred .
https://fxdreema.com/help/-/you%20shoul ... indicatorsthank you in advance .
-
In the EA when you are using one indicator, MetaTrader knows that and loads that indicator with the particular settings. If the same indicator is used with different settings, two indicators will appear.
There is no matter how many times you request value from an indicators. Normally for the EAs important things happen when ticks are received, because a new tick means that the price changed and everything you do when you are trading is to react on price changes. But indicators does not really care about that.
The first time the EA calls to an indicator, MetaTrader loads that indicator and gets the value from it. If you are backtesting that indicator does not even appear visually, so I think that it does not even recalculate if you are not using it. Only if you put it visually on the chart, then it must be recalculated so you can visually see all the changes, but MetaTrader handles that by itself.
Just use "Condition" with that Moving Average where you need it and as often as you need it. "on Tick" is not mandatory, it's only where most things normally happen.