Questions from a "dummy" - page 8

 
OS - Windows Server 2008R2
EURUSD
Interval - last year
Trade Mode - Normal - All ticks
Build - 458
Документация по MQL5: Стандартные константы, перечисления и структуры / Состояние окружения / Информация об инструменте
Документация по MQL5: Стандартные константы, перечисления и структуры / Состояние окружения / Информация об инструменте
  • www.mql5.com
Стандартные константы, перечисления и структуры / Состояние окружения / Информация об инструменте - Документация по MQL5
 
Europa:

Operating System - Windows Server 2008R2
EURUSD
Interval - last year
Trade mode - normal - all ticks
Build - 458

Apart from "Core 1 tester stopped because OnInit critical error" what else does the log say?

Easier to attach the tester agent's log.

 
LJ 0 Core 1 12:58:46 EURUSD: contains 367194 M1 records of beginning data from 2010.01.04 00:00 to 2010.12.31 22:59
CK 0 Core 1 12:58:46 EURUSD,H1: history cache reserved for estimated 8845 bars
OL 0 Core 1 12:58:46 EURUSD,H1: history begins since 2010.01.04 00:00
DD 0 Core 1 12:58:46 EURUSD,H1 (MetaQuotes-Demo): every tick generating
FF 0 Core 1 12:58:46 EURUSD,H1: testing of experts\theFirst.ex5 from 2011.01.01 00:00 to 2011.06.01 00:00 started with inputs:
QJ 0 Core 1 12:58:46 Expert_Title=TheFirst
NG 0 Core 1 12:58:46 Signal_ThresholdOpen=10
LS 0 Core 1 12:58:46 Signal_ThresholdClose=10
ME 0 Core 1 12:58:46 Signal_PriceLevel=0.00
OS 0 Core 1 12:58:46 Signal_StopLevel=50.00
PM 0 Core 1 12:58:46 Signal_TakeLevel=50.00
MJ 0 Core 1 12:58:46 Signal_Expiration=4
OM 0 Core 1 12:58:46 Signal_SAR_Step=0.02
CL 0 Core 1 12:58:46 Signal_SAR_Maximum=0.20
NH 0 Core 1 12:58:46 Signal_SAR_Weight=1.00
DR 0 Core 1 12:58:46 Trailing_ParabolicSAR_Step=0.02
ND 0 Core 1 12:58:46 Trailing_ParabolicSAR_Maximum=0.20
MR 0 Core 1 12:58:46 Money_FixLot_Percent=10.00
NG 0 Core 1 12:58:46 Money_FixLot_Lots=0.10
CJ 0 Core 1 12:58:46 2011.01.01 00:00:00 CExpert::Init: wrong symbol or timeframe (must be EURUSD:PERIOD_M15)
HI 0 Core 1 12:58:46 2011.01.01 00:00:00 OnInit: error initializing expert
HS 2 Core 1 12:58:46 tester stopped because OnInit critical error
GG 0 Core 1 12:58:46 log file "C:\Users\Administrator\AppData\Roaming\MetaQuotes\Tester\D0E8209F77C8CF37AD8BF550E51FF075\Agent-127.0.0.1-3000\logs\20110602.log" written
FS 0 Core 1 12:58:46 connection closed
 
I'm... Got it, sorry to bother you :)
 
uncleVic:

Apart from "Core 1 tester stopped because OnInit critical error" what else is written in the log?

It's easier to attach the log of the tester agent.

Win XP SP3, EURUSD 1D, from 01/01/2011 to 02/06/2010.

The log is in the trailer...

 
uncleVic:

Apart from "Core 1 tester stopped because OnInit critical error" what else does the log say?

It's easier to attach the tester agent's log.

This is how I started trading.

//--- Initializing expert
   if(!ExtExpert.Init(_Symbol,PERIOD_D1,Expert_EveryTick,Expert_MagicNumber))
 
Interesting:

Win XP SP3, EURUSD 1D, from 01/01/2011 to 02/06/2010.

The log is in the trailer...


Here, the log says:

II 0 TheFirst (EURUSD,D1) 18:08:33 2011.01.29 00:00:00 CExpert::Init: wrong symbol or timeframe (must be EURUSD:PERIOD_M15)

This means that the Expert Advisor has been created for EURUSD:PERIOD_M15, but you are running it on EURUSD,D1. It will not work that way (kind of protection).

When creating an EA in the Wizard, do not override the Symbol and TimeFrame fields (leave the value current). In the article it says (maybe not very clearly):

There are also input parameters in the Expert Advisor:

  • Symbol (string type) - the work symbol of the Expert Advisor;
  • TimeFrame (ENUM_TIMEFRAMES type) - EA working timeframe.

By default, both parameters have the value "current" (i.e., the EA will be tested and traded on any symbol / timeframe).

 
Europa:
LJ 0 Core 1 12:58:46 EURUSD: contains 367194 M1 records of beginning data from 2010.01.04 00:00 to 2010.12.31 22:59
CK 0 Core 1 12:58:46 EURUSD,H1: history cache reserved for estimated 8845 bars
OL 0 Core 1 12:58:46 EURUSD,H1: history begins from 2010.01.04 00:00
DD 0 Core 1 12:58:46 EURUSD,H1 (MetaQuotes-Demo): every tick generating
FF 0 Core 1 12:58:46 EURUSD,H1: testing of experts\TheFirst.ex5 from 2011.01.01 00:00 to 2011.06.01 00:00 started with inputs
QJ 0 Core 1 12:58:46 Expert_Title=TheFirst
NG 0 Core 1 12:58:46 Signal_ThresholdOpen=10
LS 0 Core 1 12:58:46 Signal_ThresholdClose=10
ME 0 Core 1 12:58:46 Signal_PriceLevel=0.00
OS 0 Core 1 12:58:46 Signal_StopLevel=50.00
PM 0 Core 1 12:58:46 Signal_TakeLevel=50.00
MJ 0 Core 1 12:58:46 Signal_Expiration=4
OM 0 Core 1 12:58:46 Signal_SAR_Step=0.02
CL 0 Core 1 12:58:46 Signal_SAR_Maximum=0.20
NH 0 Core 1 12:58:46 Signal_SAR_Weight=1.00
DR 0 Core 1 12:58:46 Trailing_ParabolicSAR_Step=0.02
ND 0 Core 1 12:58:46 Trailing_ParabolicSAR_Maximum=0.20
MR 0 Core 1 12:58:46 Money_FixLot_Percent=10.00
NG 0 Core 1 12:58:46 Money_FixLot_Lots=0.10
CJ 0 Core 1 12:58:46 2011.01.01 00:00:00 CExpert::Init: wrong symbol or timeframe (must be EURUSD:PERIOD_M15)
HI 0 Core 1 12:58:46 2011.01.01 00:00:00 OnInit: error initializing expert
HS 2 Core 1 12:58:46 tester stopped because OnInit critical error
GG 0 Core 1 12:58:46:46 log file "C:\Users\Administrator\AppData\Roaming\MetaQuotes\Tester\D0E8209F77C8CF37AD8BF550E51FF075\Agent-127.0.0.1-3000\logs\20110602.log" written
FS 0 Core 1 12:58:46 connection closed

You were asked to attach the tester agent log, not the tester log. Where to get the tester agent log is written in the penultimate line of the log you submitted

log file "C:\Users\Администратор\AppData\Roaming\MetaQuotes\Tester\D0E8209F77C8CF37AD8BF550E51FF075\Agent-127.0.0.1-3000\logs\20110602.log" written

 
stringo:

You were asked to attach the tester agent log, not the tester log. Where to get the tester agent log is written in the penultimate line of the log you submitted

We've already worked out what's what...
 
Interesting:
We've already figured out what's what...

That's not the point I was making.

It says tester agent logs, it means tester agent logs.

Reason: