@Julianrob
Add a condition: day_of_month!=19
Best posts made by sktsec
-
RE: Please how to find the day of monthposted in Questions & Answers
-
RE: Odd and Even Numbersposted in Questions & Answers
MathMod(x, 2) == 1
MathMod(x, 2) == 0First one is odd, second is even
-
RE: warning: expression is always falseposted in Questions & Answers
Don't worry. It happens quite often.
-
RE: Random number generator between 1 and 2posted in Questions & Answers
1 + MathMod(MathRand(), 2)
-
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
@MT4Nutzer
Initiate then use the loop block and a condition block.Suppose x is the result
Initiate x (such as close of the start candle)
Loop n times for the candles
Use condition block to compare x and close
save any new value to x[Amended: loop n times not x times]
-
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
result: The highest closest in recent nBars (including current Candle: ID0)
nBars : Input number of bars
loopID: Before the loop -1. +1 for every loop. i.e. loop start from Candle 0
provisionalResult: Highest close in looping process -
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
So you only need 2 blocks to get your result.
You can customize the starting Candle ID. But remember to set the looping candle ID be startCandleID -1 before entering the loop
-
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
This is the case for highest. For the lowest, remember to set the initial value of the provsionalResult to a large number, say, 99999999. (of course, you would modify the condition block as well)
Sure you can add a block to initiate this variable to the value of starting Candle close. That is up to your preference.
-
RE: dublicate roboto dvposted in Questions & Answers
@faisalfiaz2002
Dark Venus. No need to duplicate unless one want to clone it and sell it.It is free and just another Martingale. No magic
-
RE: hi guys. the EAs I created using FXdreema work well under Every Tick while testing however it performs badly on 'Every Tick based on Real Ticks'. How can I set my EA to perform only on 'Every Tick' rather than the other failing one.posted in Questions & Answers
Maybe you can modify your algo to trade only at candle start.
-
RE: Hi, I am using built 1440 and still found Ordersend error 138. Anyone know how to fix it? Thanks.posted in Questions & Answers
Are you using Windows 10 rather than Windows 11 ?
-
RE: EA Trades Volatility indexposted in Questions & Answers
@jpsam
FxDreema EA, like any other EA, is supposed to work on any chart which the EA is put on.Does the index you mentioned can be shown on a chart ?
-
RE: HOW TO USE MOVING AVARAGE OF ACCUMLATION DISTRIBUTION ?posted in Questions & Answers
@bacharchoura1
Just use it as custom indicator -
RE: I want close my trade n bar laterposted in Questions & Answers
There is an expiration option in buy/sell block. See if that can help
-
RE: Need reference for draw on liquidityposted in Questions & Answers
You need the indicator for your concept of "Draw on Liquidity". The fxDreema block is ready to set the SL / TP at custom indicator level
-
RE: Error recessing indicator in EA. #resourceposted in Questions & Answers
It seems :
Indicator -> IndicatorsMaybe check the journals for any other error
-
RE: How to make my bot to take just a positionposted in Questions & Answers
Try
after buy trade: disable buy trade block and enable sell trade block.
after sell trade: disable sell trade block and enable buy trade block -
RE: indicator to eaposted in Questions & Answers
Try
after buy trade: disable buy trade block and enable sell trade block.
after sell trade: disable sell trade block and enable buy trade block
