Piotr
Added topic MT4: back test of the EA on non standard period
Hi, I have the strategy what creates M2 chart from M1 after running. Next step is open offline M2 chart and run the strategy on this non standard time frame. My question is: Can I make back test on the M2 timeframe or other non standard periods
Piotr
Added topic Meta Trader 4 Build 229 - question
Where can I find the full list of changes on each build's edition of MT4
Piotr
Added topic MQL4: Meta Trader 4 platform newest version - question...
What are the differences between the version of the Meta Trader 4 Build 226 and Build 228 version? I ask because I do not know whether to update the program
Piotr
Added topic MQL4: Can I manage closed orders using the OrderMagicNumber() function ?
or is this function only for opened orders ? I would like to refer to the closed orders using the OrderMagicNumber(). Is this possible ? If YES can I please any example
Piotr
Added topic MQL4: EA optimization problem
I have a problem with optimization of my EA. The back test does't take any effects - there is no results. What should be selected in order to make proper optimization of the robot
Piotr
Added topic MQL4: How to make exponentiation under MQL4 code
in simple way ? For example: x^3 ? in the other way (x*x*x)
Piotr
Added topic MQL4: Last closed order - I looking for the IDEA
Does anybody know how to find and select (in SIMPLE WAY) last closed order in OrdersHistoryTotal () ? Any function how to do it can I please
Piotr
Added topic EXTERN VARIABLE under MT4 - NEED HELP
Many times I lose connection with my broker. I dont know when extern variables are loaded into PC MEMORY. What are differences between EXTERN VARIABLE and VARIABLE initalized under init() function ? I would like to know when the SETTINGs of EXTERN
Piotr
Added topic How to refresh current chart screen every 60 second without logoff and login ?
Is there any function under MQL what we can insert into Expert Advisor or Indicator which refresh the current chart screen every 60 second without logoff and login or restart Meta Trader
Piotr
Added topic Is there the possibility in near future to start Meta Trader on Linux Fedora Core 11 ?
Will be made Linux version of Meta Trader whenever
Piotr
Added topic Pending orders - QUESTION
If I set pending orders ( as following ) OP_BUYLIMIT - buy limit pending position, OP_BUYSTOP - buy stop pending position, OP_SELLLIMIT - sell limit pending position, OP_SELLSTOP - sell stop pending position. and a few hours after the orders will be
Piotr
Added topic Does Meta Trader 4 support DUAL, QUAD or more CORES processors ?
What is better for the META TRADER 4 transaction server AMD or INTEL processor? What MEMORY MODULES are better for META TRADER 4 DDR3 or DDR2 ? Please for the answers for above 3 questions
Piotr
Added topic init() function
Is init() function used only one time when the expert advisor is initalized or init() function is used more times by the expert ? I ask because I don't know where is better set default values for defined variables : on init() function or as an extern
Piotr
Added topic How to resolve the OLD TICK problem on DEMO/REAL ACCOUNTs ?
RefreshRates() before OrderSend() function does not resolve the problem. Have anybody any other idea
Piotr
Added topic Why Broker has 1, 3 or 5 Digits but real Ask/Bid Price has always 8 places after decimal point ?
I have made simple script which give me the information about the decimal places after decimal point and Digits function. I have strange result for http://www.fxcm.co.uk/ BROKER. It always have 8 places after decimal point but you will see only 1,3
Piotr
Added topic MQL4 - OrdersHistoryTotal() - one question
I have to know, how many closed orders was opened in current day. If there was more than 9 orders in current day, then Expert Advisor should not open next order. I would like max 10 orders daily. How to use OrdersHistoryTotal() function in this case