Gamestudio Links
Zorro Links
Newest Posts
Trading Journey
by M_D. 04/26/24 20:22
Help with plotting multiple ZigZag
by M_D. 04/26/24 20:03
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
M1 Oversampling
by jcl. 04/26/24 11:12
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
Eigenwerbung
by jcl. 04/26/24 11:08
MT5 bridge not working on MT5 v. 5 build 4160
by EternallyCurious. 04/25/24 20:49
Zorro FIX plugin - Experimental
by flink. 04/21/24 07:12
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (M_D, Quad, Ayumi, AndrewAMD), 810 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
wandaluciaia, Mega_Rod, EternallyCurious, howardR, 11honza11
19049 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 2 of 4 1 2 3 4
Re: New Zorro version 1.54 [Re: jcl] #464586
02/27/17 23:01
02/27/17 23:01
Joined: Apr 2014
Posts: 482
Sydney, Australia
B
boatman Offline
Senior Member
boatman  Offline
Senior Member
B

Joined: Apr 2014
Posts: 482
Sydney, Australia
This is great. Thanks jcl and the development team.

Re: New Zorro version 1.54 [Re: jcl] #464589
02/28/17 01:05
02/28/17 01:05
Joined: Nov 2016
Posts: 55
Taipei
ytc Offline
Junior Member
ytc  Offline
Junior Member

Joined: Nov 2016
Posts: 55
Taipei
The Z12 test looked weird of Zorro1543. Did someone have a better?

Attached Files 123.png
Last edited by ytc; 02/28/17 01:16.
Re: New Zorro version 1.54 [Re: ytc] #464590
02/28/17 02:00
02/28/17 02:00
Joined: Apr 2014
Posts: 482
Sydney, Australia
B
boatman Offline
Senior Member
boatman  Offline
Senior Member
B

Joined: Apr 2014
Posts: 482
Sydney, Australia
Can the developers confirm that the dayOpen() functions were updated? The source code in indicators.c hasn't changed from what I can tell.

Thanks!

Re: New Zorro version 1.54 [Re: jcl] #464602
02/28/17 21:56
02/28/17 21:56
Joined: Jan 2017
Posts: 4
Kowloon
I
initialitaly Offline
Guest
initialitaly  Offline
Guest
I

Joined: Jan 2017
Posts: 4
Kowloon
Just downloaded and installed v1.544.
When trying to trade with Z2 algo, an error message appeared:
Error 051: Can't load DataZ12_d.trd

Please kindly advise.

*****************************************************
Seems no such problem now after downloading history.
*****************************************************

Last edited by initialitaly; 03/01/17 20:57.
Re: New Zorro version 1.54 [Re: ytc] #464612
03/01/17 12:24
03/01/17 12:24
Joined: Nov 2016
Posts: 55
Taipei
ytc Offline
Junior Member
ytc  Offline
Junior Member

Joined: Nov 2016
Posts: 55
Taipei
Anyone?

Originally Posted By: ytc
The Z12 test looked weird of Zorro1543. Did someone have a better?

Re: New Zorro version 1.54 [Re: ytc] #464632
03/02/17 13:16
03/02/17 13:16
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
Z12 test looks weird: Please check what files or settings you have changed. If you can't find the reason this way, the always-working solution is deleting your changes or installing Zorro in a fresh folder.

dayHigh etc. was updated: Yes, at least according to my list.

Can't load Z12_d.trd: Otherwise I'd be surprised, since the format has changed. Under "What's new" you'll find all changes and update instructions.



Re: New Zorro version 1.54 [Re: jcl] #464637
03/02/17 13:57
03/02/17 13:57
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
New version 1.545: http://opserver.de/down/Zorro_setup.exe

A bug with parsing CSV files with two date/time fields has been fixed.

Re: New Zorro version 1.54 [Re: jcl] #464691
03/06/17 10:43
03/06/17 10:43
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline OP

Chief Engineer
jcl  Offline OP

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
Version 1.54 has now been officially released. Subscribers to the MT4 bridge will receive their new versions in the next days. Thanks to all beta testers!

Re: New Zorro version 1.54 [Re: jcl] #464735
03/07/17 15:39
03/07/17 15:39
Joined: Mar 2017
Posts: 23
A
atr Offline
Newbie
atr  Offline
Newbie
A

Joined: Mar 2017
Posts: 23
I am starting with Zorro and I tested the following script with Zorro 1.50.6 and Zorro 1.54.5 and I got two different results. Why are they so different? I used the same data, time frame and the same script for testing. I attach the script and the performance reports. I would be very grateful if anyone could answer me in order to know what I am doing wrong.

Thank you.

function run()
{
BarPeriod=60;
vars Price = series(price());
vars Trend = series(LowPass(Price,500));
vars Signals = series(0);

Stop = 4*ATR(100);


vars MMI_Raw = series(MMI(Price,300));
vars MMI_Smooth = series(LowPass(MMI_Raw,500));

if(falling(MMI_Smooth)) {
if(valley(Trend))
enterLong();
else if(peak(Trend))
enterShort();
}
}


**************************************************************
Test 1-PRU EUR/USD - ZORRO 1.50.6
**************************************************************
Simulated account AssetsFix
Bar period 1 hour (avg 92 min)
Test period 18.01.2012-27.01.2017 (28550 bars)
Lookback period 300 bars (18 days)
Monte Carlo cycles 200
Simulation mode Realistic (slippage 5.0 sec)
Spread 0.5 pips (roll -0.02/0.01)
Commission 0.60
Contracts per lot 1000.0

Gross win/loss 595$ / -577$ (+214p)
Average profit 3.72$/year, 0.31$/month, 0.01$/day
Max drawdown -205$ 1097% (MAE -250$ 1338%)
Total down time 74% (TAE 60%)
Max down time 68 weeks from Mar 2013
Max open margin 30$
Max open risk 24$
Trade volume 201119$ (40011$/year)
Transaction costs -8.19$ spr, -57$ slp, -0.45$ rol, -11$ com
Capital required 188$

Number of trades 188 (38/year, 1/week, 1/day)
Percent winning 19.7%
Max win/loss 88$ / -53$
Avg trade profit 0.10$ 1.1p (+184.7p / -43.8p)
Avg trade slippage -0.31$ -3.5p (+3.3p / -5.2p)
Avg trade bars 105 (+380 / -37)
Max trade bars 1372 (11 weeks)
Time in market 69%
Max open trades 3
Max loss streak 16 (uncorrelated 27)

Annual return 2%
Profit factor 1.03 (PRR 0.80)
Sharpe ratio 0.04
Kelly criterion 0.08
R2 coefficient 0.000
Ulcer index 34.7%

Confidence level AR DDMax Capital

10% 4% 78$ 90$
20% 4% 86$ 97$
30% 3% 100$ 107$
40% 3% 108$ 113$
50% 3% 118$ 121$
60% 3% 133$ 133$
70% 3% 146$ 143$
80% 2% 165$ 157$
90% 2% 195$ 180$
95% 2% 227$ 206$
100% 1% 370$ 316$

Portfolio analysis OptF ProF Win/Loss Wgt%

EUR/USD .006 1.03 37/151 100.0
EUR/USD:L .000 0.48 15/84 -1008.7
EUR/USD:S .188 1.98 22/67 1108.7

****************************************************************
Test 2-PRU EUR/USD - ZORRO 1.54.5
****************************************************************

Simulated account AssetsFix
Bar period 1 hour (avg 92 min)
Test period 18.01.2012-27.01.2017 (28549 bars)
Lookback period 300 bars (18 days)
Monte Carlo cycles 200
Simulation mode Realistic (slippage 5.0 sec)
Spread 0.5 pips (roll -0.02/0.01)
Commission 0.60
Contracts per lot 1000.0

Gross win/loss 746$ / -514$ (+2664p)
Average profit 46$/year, 3.85$/month, 0.18$/day
Max drawdown -129$ 56% (MAE -161$ 69%)
Total down time 72% (TAE 65%)
Max down time 93 weeks from May 2013
Max open margin 40$
Max open risk 26$
Trade volume 210105$ (41799$/year)
Transaction costs -8.54$ spr, 1.68$ slp, -0.49$ rol, -12$ com
Capital required 140$

Number of trades 196 (39/year, 1/week, 1/day)
Percent winning 20.4%
Max win/loss 88$ / -11$
Avg trade profit 1.18$ 13.6p (+214.2p / -37.9p)
Avg trade slippage 0.01$ 0.1p (+5.4p / -1.3p)
Avg trade bars 114 (+426 / -34)
Max trade bars 1366 (11 weeks)
Time in market 79%
Max open trades 4
Max loss streak 16 (uncorrelated 26)

Annual return 33%
Profit factor 1.45 (PRR 1.13)
Sharpe ratio 0.47
Kelly criterion 0.67
R2 coefficient 0.000
Ulcer index 17.9%

Confidence level AR DDMax Capital

10% 46% 78$ 100$
20% 43% 86$ 106$
30% 41% 93$ 112$
40% 39% 101$ 118$
50% 38% 107$ 123$
60% 35% 118$ 131$
70% 33% 129$ 140$
80% 30% 148$ 154$
90% 26% 180$ 179$
95% 24% 199$ 194$
100% 14% 369$ 325$

Portfolio analysis OptF ProF Win/Loss Wgt%

EUR/USD .093 1.45 40/156 100.0
EUR/USD:L .000 0.99 20/79 -1.6
EUR/USD:S .191 2.03 20/77 101.6

Re: New Zorro version 1.54 [Re: atr] #464736
03/07/17 16:21
03/07/17 16:21
Joined: May 2016
Posts: 180
Prague
pcz Offline
Member
pcz  Offline
Member

Joined: May 2016
Posts: 180
Prague
Maybe it could be the Slippage issue in older Zorro versions? Check this thread: Are all backtest results potentially flawed?

You can try to set the Slippage to 0 and see how the results change.

Page 2 of 4 1 2 3 4

Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1