@andrewfrank
May I guess, you always get a TRUE outcome?
Posts made by sktsec
-
RE: Check distance is not properly workingposted in Questions & Answers
-
RE: Why today is take so long time to generate mql4 ?posted in Questions & Answers
@NEMO
Seems no problem. Is your EA very big? -
RE: Martingale principlesposted in Questions & Answers
If the amount you bet is purely depending on what your have won or lost, it is a subjective personal decision, rather than a strategy in strict sense
-
RE: Is possible to use a mql5 indicator in an EA?posted in Questions & Answers
@gery
I think input for most indicators uses bool for true/false, int for integer, double for decimal numbers, string for text. You can enter any of them directly to match yours. I don't know, may be some indicators hide the ENUM details that make you impossible to replicate.By the way, many indicators are repaint with unexpected result. In my experience with MT4, using custom indicator make EA less responsive, sometimes to a point of MT4 crash.
-
RE: Open Price At Desired Hour With Day Offsetposted in Questions & Answers
@AdiMardiyantoID
try MQL block:
for (int k=1;TimeHour(iTime(NULL, PERIOD_H1, k))!=7 ;k++)
ASIA_Open_Before = Open[k]; -
RE: Is possible to use a mql5 indicator in an EA?posted in Questions & Answers
@gery
It would work well only if you set it right as import indicator in fxDreema. "Right" means correct input parameter type and right number of buffers -
RE: Easy way to make ENUMposted in Tutorials by Users
@QuantEngineer
It seems just for display a line of text without any actual function. Good for visual only. -
RE: Trading historyposted in Questions & Answers
@gajus
I think you want to know the tf of each trade in the trade history. Set relevant comment for each trade may be what you need. -
RE: ANYONE, KINDLY ADVISEposted in Tutorials by Users
Stop loss hit ---> no further trade. How come it will take another trade with next signal?
-
RE: Algo trading on manually drawn support and resistance levelsposted in Questions & Answers
@FXWITCHER
Yes. Create a line as an object and give it a name. For fxdreema in condition block or price cross block seach this object for price crossing. -
RE: how to close one trade to open anotherposted in Questions & Answers
@gunji80
In MT4, it works as I use it quite often. Maybe adjusting the option of profit amount, say. 1 pip or 0 pip, could make you work. However, for a very very small profit, it cannot be expected to work well as there are slippage and little price fluctuations. -
RE: Block to determine the minimum/maximum of a moving average ?posted in Questions & Answers
Try "Indicator moves within limits"
-
RE: BUG ??? Invalid price (10015)posted in Questions & Answers
@OntradingX
Say, if EA submits a buy pending order with a price higher than the current price, it will response with an error like yours -
RE: How do i make an EA to work the next day?posted in Questions & Answers
@Ideal
It is contolled by the block above, i.e. once a day. Default is what you want, sure you can change to some other time. -
RE: BUG ??? Invalid price (10015)posted in Questions & Answers
Have you check the price of the pending orders?
-
RE: Please Help With This Problemposted in General Discussions
@NamiyrD
Without a link others can't see what is inside your blocks