Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
2 registered members (AndrewAMD, TipmyPip), 13,353 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 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