Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
4 registered members (AndrewAMD, Baklazhan, Ayumi, Hanky27), 1,387 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 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