I'm afraid I'm still confused. Are trades opened today supposed to be closed today or tomorrow?
Posts made by l'andorrà
-
RE: Make trade Close at the openingposted in Questions & Answers
-
RE: Logic For Multiple Inside Barsposted in Questions & Answers
Ok. I understand now. One more question. Are open price and close price the levels defining the 'inside' limits, right? According to your image, highs and lows can be ignored, right?
-
RE: Make trade Close at the openingposted in Questions & Answers
@Fireblade Do you mean all trades opening today at 15:00 should be closed tomorrow at the same time if no other condition closed them before that?
-
RE: How To Arrange the blocks for this EAposted in Questions & Answers
Then you need to move blocks 1 and 4 from its current positions to below blocks 2 and 5 respectively. Then the trailing stop blocks should be moved to a separate blocks tree on its own.
-
RE: Distance between EMAs in PIPposted in Questions & Answers
You need to use that exact same block but selecting the necessary moving average lines instead.
-
RE: custom indicator error 4802posted in General Discussions
I also get that error when using it. Are you sure the file is not corrupt?
-
RE: Help with Fractal Indicatorposted in Questions & Answers
Then what you need is storing the value of the last fractal into a variable and then use that variables as the price to break trhough.
-
RE: touch trend lineposted in Questions & Answers
Do you mean those lines are manually positioned only? What do you exactly mean by '...remove the extended property...'?
-
RE: Multi Timeframe assigned in FXDreema is altered by MT5 strategy backtest dropdown?posted in Questions & Answers
Have you tried to test the results on shorter periods and on visual instead? I know it can be annoying, but maybe the broker is not playing fair.
-
RE: Wrong Lot Size (Risk % of Balance (Volume size based on SL)posted in Questions & Answers
If you are using the EXACT same bot with the EXACT same code, the problem is the broker cheating on you. Period. That would be a serious red flag for me. Remove your money from them ASAP.
-
RE: MTF - Smaller TF executing when larger TF isn't valid?posted in Questions & Answers
I guess blocks 37,38,62 and 63 are used for variables, right?
-
RE: Logic For Multiple Inside Barsposted in Questions & Answers
Not sure I fully understand. Do you mean you need 2 consecutive candles to define one only 'mother bar? Some images would definitely help.
-
RE: how to enter after cros ema50 and sma20, betwen candle 1 and 10, after confimation 2 line sma5 and 10 rejecte at wickposted in Questions & Answers
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?
-
RE: Why isn't this working? 2 bars same colorposted in Questions & Answers
You are requiring the bot to work for 1 only minute every day. Are you sure your broker is offering quotes at that time every day? On the other hand, you are requesting the bot to search what happened to candle ID 1 while drawing the arrow on candle ID 0. That means there will be a one candle delay with the information.
-
RE: Help with Fractal Indicatorposted in Questions & Answers
I'm not sure I don't fully understand what you mean. In your image I see three fractal high and apparently only the last one has not been reached before. When should the trade be open exactly on that scenario?
-
RE: How To Arrange the blocks for this EAposted in Questions & Answers
What do you exactly mean by '...candle ID 0 crosses above candle ID 1...'? Do you mean candle ID 0's close price to cross above candle ID 1's high, close or open?
-
RE: How To Get the New Candle Range + Average of ATR from the Rangeposted in Questions & Answers
@deathkid13 Then you can use this loop here:
https://fxdreema.com/shared/rTWMuzFB
In my example the loop will calculate the average value for ATR from candles 1 to 10 in the past. The calculation will be done at the open of each new candle. You can change the value of 'range' variable if you need longer or shorter periods.
-
RE: How To Get the New Candle Range + Average of ATR from the Rangeposted in Questions & Answers
@deathkid13 Then you will need a loop dong the calculation. Are you familiar with variables and loops?