- Syd
[dust is my bed...]
Help Needed to Debug Existing EA with proven strategy 760 replies
Developer Needed To Debug my EA 2 replies
MT4 EA coder required to fine-tune/debug existing EA 0 replies
Debug code in strategy tester 1 reply
Debug this Indicator please 2 replies
DislikedGuys, I wanted to display debug messages (variable values) in my first EA while doing backtesting using strategy test. How can I achieve it?
ThanksIgnored
DislikedHi Syed,
It is me again. Just use Print command and the variables you include will be printed in Journal Tab (and also in Log file it seems). For example,
Print("my first data = ",Data1,"; my second data = ",Data2);
You can make just one command at a time and move it down slowly checking each point (changing variables according to the place of code).
chandraIgnored
DislikedChandra, thanks mate, this is what I havebeen doing and thought that may be there is anyother better way to achieve it but no worries. I'll stick to it cheers mate.Ignored
DislikedSyedks, if you use Comment() instead of Print(), it will be displayed in the upper left corner while doing a viual backtest.
This will save you from switching back and forth to the Journal tab, while still being able to use the forward/pause button.
CheersIgnored
DislikedSyedks, if you use Comment() instead of Print(), it will be displayed in the upper left corner while doing a viual backtest.
This will save you from switching back and forth to the Journal tab, while still being able to use the forward/pause button.
CheersIgnored
Dislikedwhere is the forward / pause button? (i use interbankfx binary download) neIgnored
DislikedIn the lower left corner of the Strategy tester window you will see the "Visual mode" mark.
Right next to it is the speed sliderbar and right next to that you will have the Pause (||) / forward (>>) button
CheersIgnored