Gamestudio Links
Zorro Links
Newest Posts
Zorro Trader GPT
by TipmyPip. 03/06/24 09:27
VSCode instead of SED
by 3run. 03/01/24 19:06
Deeplearning Script
by wolfi. 02/26/24 12:46
Sam Foster Sound | Experienced Game Composer for Hire
by titanicpiano14. 02/22/24 16:22
AssetAdd() vs. modern asset list?
by jcl. 02/21/24 15:01
How many still using A8
by Aku_Aku. 02/20/24 12:18
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (TipmyPip, 1 invisible), 521 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
sakolin, rajesh7827, juergen_wue, NITRO_FOREVER, jack0roses
19043 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 5
Page 2 of 4 1 2 3 4
Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: j45p41] #476446
02/26/19 18:57
02/26/19 18:57
Joined: Dec 2014
Posts: 204
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 204
Germany
Thanks!

My broker is FXChoice (MT4).
I just created the attached AssetsFix.csv with this script:

Code:
// connect to your broker and click the "Trade" button.
// this script creates this file: /zorro/log/assets.csv
// replace your assetsfix.csv in /zorro/history/ with this file!
// (better make a backup of the old one, jsut in case you need it again!)

function run()
{
	StartDate = 20180101;
	EndDate = 20181231;
	LookBack = 1;
	BarPeriod = 1440;


	while(asset(loop("AUD/CAD","AUD/CHF","AUD/JPY","AUD/NZD","AUD/USD","CAD/CHF","CAD/JPY","CHF/JPY","EUR/AUD","EUR/CAD","EUR/CHF","EUR/GBP","EUR/JPY","EUR/NZD","EUR/USD","GBP/AUD","GBP/CAD","GBP/CHF","GBP/JPY","GBP/NZD","GBP/USD","NZD/CAD","NZD/CHF","NZD/JPY","NZD/USD","USD/CAD","USD/CHF","USD/JPY"))) 
									
	{
		vars Price = series(price());
	}
}


Attached Files
AssetsFix.csv (16 downloads)
Last edited by sdh309795gaas; 02/26/19 19:00.
Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #476450
02/27/19 13:50
02/27/19 13:50
Joined: Aug 2018
Posts: 98
O
OptimusPrime Offline
Junior Member
OptimusPrime  Offline
Junior Member
O

Joined: Aug 2018
Posts: 98
Many thanks!


Thanks so much,

OptimusPrime

Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: j45p41] #476905
04/22/19 12:14
04/22/19 12:14
Joined: Dec 2014
Posts: 204
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 204
Germany
I just found out that the dataset has some gaps. AUD/CAD is really bad in 2008. Use the script below to detect gaps. I commented it out to check for other gaps:

Code:
function run()
{
	StartDate = 20080101;
	EndDate = 20120101;
	
	BarPeriod = 15;
	
	//"AUD/CAD",
	while(asset(loop("AUD/CHF","AUD/JPY","AUD/NZD","AUD/USD","CAD/CHF","CAD/JPY",
									"CHF/JPY","EUR/AUD","EUR/CAD","EUR/CHF","EUR/GBP","EUR/JPY","EUR/NZD",
									"EUR/USD","GBP/AUD","GBP/CAD","GBP/CHF","GBP/JPY","GBP/NZD","GBP/USD",
									"NZD/CAD","NZD/CHF","NZD/JPY","NZD/USD","USD/CAD","USD/CHF","USD/JPY"))) 
									
	{
		
		var tdiff = (wdate() - wdate(1)); //time difference in days of the last consecutive bars

		//search for time differences at 1.5 times longer than BarPeriod:
		if(tdiff > (BarPeriod/1440)*1.5 && tdiff < 1) //1 day = 1440 minutes....
		{
			printf("n%d-%02d-%02d %02d:%02d        %s gap: %.0f minutes missing",
				year(), month(), day(), hour(), minute(), Asset, (wdate() - wdate(1))*1440);
		}
	}
}


Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #476907
04/22/19 13:18
04/22/19 13:18
Joined: Dec 2014
Posts: 204
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 204
Germany
StartDate = 20060101;
EndDate = 20181231;

->

Asset Gaps
AUDJPY 4
EURGBP 5
GBPCHF 5
USDCHF 5
CHFJPY 6
EURUSD 6
GBPUSD 6
USDCAD 6
EURCHF 7
GBPJPY 7
NZDUSD 14
AUDNZD 19
EURJPY 23
USDJPY 24
AUDUSD 58
EURCAD 81
EURAUD 94
GBPAUD 119
AUDCHF 142
EURNZD 167
CADJPY 168
NZDCAD 181
GBPCAD 183
NZDCHF 187
CADCHF 193
NZDJPY 197
GBPNZD 221
AUDCAD 6263

Optimized asset loop:

while(asset(loop(
"AUD/JPY","EUR/GBP","GBP/CHF","USD/CHF","CHF/JPY","EUR/USD","GBP/USD",
"USD/CAD","EUR/CHF","GBP/JPY","NZD/USD","AUD/NZD","EUR/JPY","USD/JPY",
"AUD/USD","EUR/CAD","EUR/AUD","GBP/AUD","AUD/CHF","EUR/NZD","CAD/JPY",
"NZD/CAD","GBP/CAD","NZD/CHF","CAD/CHF","NZD/JPY","GBP/NZD","AUD/CAD")))

Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #478631
11/17/19 13:45
11/17/19 13:45
Joined: Nov 2018
Posts: 11
A
aventador Offline
Newbie
aventador  Offline
Newbie
A

Joined: Nov 2018
Posts: 11
Originally Posted by sdh309795gaas
Try qBittorrent. The torrent seems okay. I have already uploaded the package 1,76 times.



Hi sdh309795gaas,


It seems tickdownloader has been upgraded to latest Quant data manager.

The format of the data has been changed.

Would you have plan to update the script in http://statsmage.com/zorro-on-steroids-ii-data-conversion/ to cater the changes accordingly ?

Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: aventador] #478706
11/30/19 14:32
11/30/19 14:32
Joined: Dec 2014
Posts: 204
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 204
Germany
As Zorro has a python bridge now, I will try to create a hassle free solution to update / create t1 and t6 files with just a few clicks.

I plan to share the complete 2019 package in January.

By the way, I'm not the guy behind statsmage!

Last edited by sdh309795gaas; 11/30/19 14:33.
Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #478769
12/13/19 20:51
12/13/19 20:51
Joined: Nov 2018
Posts: 11
A
aventador Offline
Newbie
aventador  Offline
Newbie
A

Joined: Nov 2018
Posts: 11
Originally Posted by sdh309795gaas
As Zorro has a python bridge now, I will try to create a hassle free solution to update / create t1 and t6 files with just a few clicks.

I plan to share the complete 2019 package in January.

By the way, I'm not the guy behind statsmage!


Great to hear that

Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #478864
01/02/20 19:18
01/02/20 19:18
Joined: Dec 2014
Posts: 204
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 204
Germany
Okay, as 2019 is completed, it's time for the next torrent. However, something must have changed with Python and Cygwin.

I'm busy with other problems at the moment. If somebody creates a zorro script that does the job, I will release the new package immediately.

Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #479141
02/22/20 09:41
02/22/20 09:41
Joined: Mar 2019
Posts: 357
D
danatrader Offline
Senior Member
danatrader  Offline
Senior Member
D

Joined: Mar 2019
Posts: 357
Anyone has 2019 data without gaps?
I have 11 months nothing frown

Last edited by danatrader; 02/22/20 09:41.
Re: Dukascopy T1&T6 files for all Forex Pairs and Crosses - get it! [Re: Smon] #479158
02/25/20 21:19
02/25/20 21:19
Joined: Mar 2019
Posts: 357
D
danatrader Offline
Senior Member
danatrader  Offline
Senior Member
D

Joined: Mar 2019
Posts: 357
News on 2019 data?

My 2019 Data from the broker is really bad...

Page 2 of 4 1 2 3 4

Moderated by  Petra 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1