Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 552 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, 11honza11, ccorrea, sakolin, rajesh7827
19046 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Trouble using Asset selection from the drop down menu #473058
06/11/18 18:39
06/11/18 18:39
Joined: May 2018
Posts: 134
S
SBGuy Offline OP
Member
SBGuy  Offline OP
Member
S

Joined: May 2018
Posts: 134
This should be an easy one for you more experienced Zorro folks.

I'm having a really hard time trying to use the dropdown Asset selection in a more complex sample scripts, such as OptionSimple.c, which has a hardcoded asset selection, SPY in this case.

I know that the variable "Asset" contains the selection, but every time I try to use it, it just doesn't take it. I want to be able to change the asset selection, press Test, and run the script. Now, I have to change the hardcode in Edit, save to source code file, then Test.

Below is how most of the sample scripts start. What do I have to change to tell the script to use the dropdown menu Asset selection. I tried INITRUN and didn't work, maybe I'm not doing it right.

Many thanks!

============================
void run()
{
StartDate = 20120101;
EndDate = 20151231;
BarPeriod = 1440;
BarZone = ET;
BarOffset = 15*60+20; // trade at 15:20 ET
LookBack = 1;
PlotMode = 0;
set(PLOTNOW);
set(PRELOAD|LOGFILE);

assetList("AssetsIB");
asset("SPY");

Price = priceClose();
contractUpdate("SPYa",0,CALL|PUT);
...
...
...

=========================

Re: Trouble using Asset selection from the drop down menu [Re: SBGuy] #473059
06/11/18 18:44
06/11/18 18:44
Joined: Feb 2017
Posts: 1,725
Chicago
AndrewAMD Online
Serious User
AndrewAMD  Online
Serious User

Joined: Feb 2017
Posts: 1,725
Chicago
If you have this:

Code:
assetList("AssetsIB");
asset("SPY");


... then dropdowns are automatically ignored.

But if you leave these lines out, it depends on whether you have Zorro free or Zorro S.

If you have Zorro S, you can set up Accounts.csv to point to an asset list for every broker.

If you have Zorro free, you can set the drop down list by setting the AssetsFix.csv file.

More info here:
http://zorro-project.com/manual/en/asset.htm
http://zorro-project.com/manual/en/account.htm
And the rest of the manual, it's all good. laugh

Re: Trouble using Asset selection from the drop down menu [Re: AndrewAMD] #473088
06/12/18 19:24
06/12/18 19:24
Joined: May 2018
Posts: 134
S
SBGuy Offline OP
Member
SBGuy  Offline OP
Member
S

Joined: May 2018
Posts: 134
Ah yes, that did it trick.

Thanks!


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