Posts made by sktsec
-
RE: custom indicator error 4802posted in General Discussions
According to your error message, the error at line 1.
-
RE: When do I set the parameters to appear in the MT4 testing test and do I have to set them for sales and purchases or just once?posted in Questions & Answers
@miguel33
If you are talking about the optimized parameters in backtest, entering those in your running EA will work until you remove the EA from the chart.You need to save the EA setting or chart as template or all charts as profile so that you are reunse them without re-input the parameter values
-
RE: Robot doesn't work.posted in Questions & Answers
Try remove the topmost Block : if position / order
-
RE: Buy only Sell only MT5posted in Questions & Answers
@jstap
I see. Just refer to his condition, it may read the enumeration as int rather than Text.
-
RE: Buy only Sell only MT5posted in Questions & Answers
@merajmusic
May try int as data type rather than text -
RE: Why is my robot losing money on the real account?posted in Questions & Answers
It is all about differences in trading condition. The spread, execution speed, or even any trick by broker
-
RE: Where are comments printed now?posted in Questions & Answers
It seems that in MT5 :
Items in the Experts Tab is saved only if you right click and select "open". A list of folder will be listed in Windows File Explorer, the latest one is the saved file.According to the manual:
The following commands can be run from the context menu of this tab:Open "Open" — open the folder that contains the journal log files. Besides that, when this command is executed, all current journal entries are saved in log files. The platform log files are stored in the Logs directory, and Expert log files are saved in MQL5\Logs. File names correspond to the date of journal generation — YYYYMMDD.LOG
-
RE: Where are comments printed now?posted in Questions & Answers
First check if it prints out inside the Experts tab within terminal Window
-
RE: Blocks for "bidding price"posted in Questions & Answers
You probably mean trailing stop. Try the Trailing Stop block
-
RE: Multitimeframe confirmationposted in Questions & Answers
Your condition block use > or < rather than crossover, do you actually mean crossover ?
-
RE: complete guide or manual for fxdreemaposted in Questions & Answers
I think the fxDreema is self-explanatory by its help description.
If you need learning material, you can refer to the book by @jstap or learning course by @l-andorrà
They are active in this forum to help you learn as well
-
RE: ORB Not Triggering Short Tradesposted in Questions & Answers
Market properties were used. I am afraid such properties are referring to the condition WHEN you are running the backtest.
That may be why any condition won't change throughout the backtest, and only one side (buy or sell) is run.
-
RE: Save location for downloaded filesposted in Bug Reports
Say, if you are using Chrome.
Go to Setting and select like allowing you to select download location every time you download file -
RE: power calculationposted in Questions & Answers
It is equivalent to MathPow ( 2 , 3 )
If you would like the details, refer to https://docs.mql4.com/math/mathpow
-
RE: Delete objects on deinitposted in Questions & Answers
Better know the object names, or their prefix.
Delete all objects is easy. Delete specific object without knowing its name is difficult