Gamestudio Links
Zorro Links
Newest Posts
ZorroGPT
by TipmyPip. 03/08/26 18:50
zorro with ccxt?
by opm. 03/03/26 03:17
WFO Training with parallel cores Zorro64
by Martin_HH. 02/26/26 16:03
Zorro version 3.0 prerelease!
by TipmyPip. 02/25/26 16:38
AUM Magazine
Latest Screens
Dorifto samurai
Shadow 2
Rocker`s Revenge
Stug 3 Stormartillery
Who's Online Now
3 registered members (USER0328, Quad, 1 invisible), 14,101 guests, and 1 spider.
Key: Admin, Global Mod, Mod
Newest Members
the1, alx, ApprenticeInMuc, PatrickH90, USER0328
19200 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Loop through option chain #482347
01/29/21 03:04
01/29/21 03:04
Joined: Jan 2021
Posts: 22
Singapore
S
strimp099 Offline OP
Newbie
strimp099  Offline OP
Newbie
S

Joined: Jan 2021
Posts: 22
Singapore
Greetings,

I'm trying to loop through every contract in a chain for a given bar.

Code
void run()
{
    	// load today's contract chain
	if(!contractUpdate(Asset,0,CALL|PUT)) return;
	
	int i;
	for (i = 0; i <= NumContracts; i++)
	{
		CONTRACT* C = &Contracts[i];
		
		contractPrice(C);

		printf("\n%f",ContractAsk);
	}

}


This just prints 0.00000. I've already confirmed my .t8 file contains the chain data by exporting to CSV and munally checking.

What is the proper way to iterate through the options chain?

Re: Loop through option chain [Re: strimp099] #482351
01/29/21 07:38
01/29/21 07:38
Joined: Jan 2021
Posts: 22
Singapore
S
strimp099 Offline OP
Newbie
strimp099  Offline OP
Newbie
S

Joined: Jan 2021
Posts: 22
Singapore
Per usual immediately after posting a question, I sorted it. Need to select the contract first so can do it a few ways

Code
	int i;
	for (i = 1; i <= NumContracts; i++)
	{
		
		contract(i);
		
		printf("\n%f - %f",ContractBid,ContractAsk);
	}


or

Code
	int i;
	for (i = 0; i < NumContracts; i++)
	{
		CONTRACT* C = &Contracts[i];
		
		contract(C);
		
		printf("\n%f - %f",ContractBid,ContractAsk);
	}


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1