how to enter after cros ema50 and sma20, betwen candle 1 and 10, after confimation 2 line sma5 and 10 rejecte at wick
-
How to make entry at candle number 3 blue, number 1 blue is cros sma20 and ema 50,
Candle number 3 blue , the line sma5 and sma 10
In essence, I will enter when there is a crossover between EMA50 and SMA20, after the crossover, it could be between candles 1-10
Sorry my English is not godlink textthis is link my projec, i hope any body can help me, thank you -
But what happens if there is a crossing in the opposite direction between blue candles 1 and 3? Is the first MA crossing supposed to be still valid when the second is met?
-
no longer valid, only entry if there is a cross between EMA and SMA downwards to sell, and vice versa, I have tried using candle1 - candle8 but it is not effective
-
Then what you need is a cascade structure with variables. One variable will confirm if the first condition is valid. Then another variable will check if the second condition is valid. Only when all of them are, a trade can be open.
-
can show at my project?
-
I already looked at you project and I saw you are requesting all conditions to happen at the same time. This is why I recommended a cascade structure with variables. Are you familiar with variables?
-
I've never used it, can you show me with blok, in my projec
-
Create a Global Variables block to define the settings for your grid. This is the only part that requires your input.
GridSpacingPips: Distance between grid orders (e.g., 50 pips for XAU/USD).
LotSize: The volume for each trade (e.g., 0.01 or 0.05).
GridSize: The number of orders to place on each side of the current price (e.g., 5 or 10).
TakeProfitPips: The profit target for each trade. In a basic grid, this is often set to the same value as the GridSpacingPips.Please help to create simple grid
-
@mamanx2 It is not a trivial thing to do. You need as many variables as conditions to be checked. Each variable is searched for separately. Something like this:
https://fxdreema.com/shared/08SLD9f8c
You will have to create as many variables as conditions required. Each one on a different branch tree until the last one will trigger the trade.