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, AndrewAMD, Quad, Ayumi), 806 guests, and 5 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 1 of 2 1 2
export asset to .txt file #477067
05/15/19 01:28
05/15/19 01:28
Joined: May 2018
Posts: 65
T
tuuPaul Offline OP
Junior Member
tuuPaul  Offline OP
Junior Member
T

Joined: May 2018
Posts: 65
Hello all, Is it possible to export assets(USDJPY, EURUSD, CADJPY...etc) to .txt file using zorro script? if it is possible give me some advice. To export assets to .txt file manually is needs more time.

Re: export asset to .txt file [Re: tuuPaul] #477068
05/15/19 04:47
05/15/19 04:47
Joined: May 2018
Posts: 65
T
tuuPaul Offline OP
Junior Member
tuuPaul  Offline OP
Junior Member
T

Joined: May 2018
Posts: 65
Also it needs to automatically export assets in time frequency

Re: export asset to .txt file [Re: tuuPaul] #477070
05/15/19 05:36
05/15/19 05:36
Joined: Apr 2008
Posts: 586
Austria
Petra Offline
Support
Petra  Offline
Support

Joined: Apr 2008
Posts: 586
Austria
There is a command print(TO_CSV...) for this.

Re: export asset to .txt file [Re: Petra] #477071
05/15/19 09:29
05/15/19 09:29
Joined: May 2018
Posts: 65
T
tuuPaul Offline OP
Junior Member
tuuPaul  Offline OP
Junior Member
T

Joined: May 2018
Posts: 65
is it really true?

Re: export asset to .txt file [Re: tuuPaul] #477072
05/15/19 09:54
05/15/19 09:54
Joined: Feb 2017
Posts: 1,725
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,725
Chicago
Yes.

Re: export asset to .txt file [Re: Petra] #477074
05/15/19 12:06
05/15/19 12:06
Joined: May 2018
Posts: 65
T
tuuPaul Offline OP
Junior Member
tuuPaul  Offline OP
Junior Member
T

Joined: May 2018
Posts: 65
this script works but in file-export_USDJPY.csv there is no price only many string of 'une'. How to get price value?

function run(){
StartDate = 20160101;
EndDate = 20161231;
TimeFrame = 1;
vars une = series(priceClose());
print(TO_CSV,"une",une);
plot("une",une,NEW,BLUE);
}

Re: export asset to .txt file [Re: tuuPaul] #477078
05/15/19 15:35
05/15/19 15:35
Joined: May 2018
Posts: 134
S
SBGuy Offline
Member
SBGuy  Offline
Member
S

Joined: May 2018
Posts: 134
Dude... it's:

print(TO_CSV,"%f",une[0])

It adds a new CSV line at every run()

You can't just print a vars variable directly.

Re: export asset to .txt file [Re: SBGuy] #477079
05/15/19 16:02
05/15/19 16:02
Joined: May 2018
Posts: 65
T
tuuPaul Offline OP
Junior Member
tuuPaul  Offline OP
Junior Member
T

Joined: May 2018
Posts: 65
Also i want to print dates with time. This price is timeframe of 1hour time. How?

Re: export asset to .txt file [Re: tuuPaul] #477081
05/15/19 16:51
05/15/19 16:51
Joined: May 2018
Posts: 134
S
SBGuy Offline
Member
SBGuy  Offline
Member
S

Joined: May 2018
Posts: 134
One of these functions should get what you want.

https://zorro-project.com/manual/en/month.htm

Off the top of my head, this will probably work

wdateBar(Bar)

play around with them.

Re: export asset to .txt file [Re: SBGuy] #477085
05/16/19 02:24
05/16/19 02:24
Joined: May 2018
Posts: 65
T
tuuPaul Offline OP
Junior Member
tuuPaul  Offline OP
Junior Member
T

Joined: May 2018
Posts: 65
i tried to rewrite under your advice. Script is below but there is an error not work. What is the problem?

function run()
{
asset("EUR/JPY");
StartDate = 20160101;
EndDate = 20161231;
TimeFrame = 1;
vars une = series(priceClose());
printf(TO_CSV,"nDate: %s",strdate(YMDH,0));
print(TO_CSV,"une=%.3f",une[0])
}

Page 1 of 2 1 2

Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1