Hi guys,
Can you help me give me the idea of my problem please ?
first,
I got the input like this from the table (
We also got formula to produce the output
Value of Vol10=0.01*(AUD10D+AUD50D)
Value of Vol25=0.01*(AUD25D+AUD50D)
Value of Vol50=0.01*(AUD50D)
Value of Vol75=0.01*(AUD75D+AUD50D)
Value of Vol90=0.01*(AUD90D+AUD50D)
So the output I'm expecting is
So the main question is how to store all the data in array in different date because the date range is going to be hundreds so i can't put it in temp table.. too much..
Guys, please throw some ideas here.
Thanks.
Can you help me give me the idea of my problem please ?
first,
I got the input like this from the table (
Code:
dateTime curve data
20/11/2006 AUD10D 10
20/11/2006 AUD25D 20
20/11/2006 AUD50D 30
20/11/2006 AUD75D 40
20/11/2006 AUD90D 50
21/11/2006 AUD10D 300
21/11/2006 AUD25D 400
21/11/2006 AUD50D 500
21/11/2006 AUD75D 600
21/11/2006 AUD90D 700
...
We also got formula to produce the output
Value of Vol10=0.01*(AUD10D+AUD50D)
Value of Vol25=0.01*(AUD25D+AUD50D)
Value of Vol50=0.01*(AUD50D)
Value of Vol75=0.01*(AUD75D+AUD50D)
Value of Vol90=0.01*(AUD90D+AUD50D)
So the output I'm expecting is
Code:
dateTime curve vol value from the formula
20/11/2006 AUD10D 10 0.4
20/11/2006 AUD10D 25 0.5
20/11/2006 AUD10D 50 0.3
20/11/2006 AUD10D 75 0.7
20/11/2006 AUD10D 90 0.8
21/11/2006 AUD10D 10 8
21/11/2006 AUD10D 25 9
21/11/2006 AUD10D 50 5
21/11/2006 AUD10D 75 11
21/11/2006 AUD10D 90 12
...
So the main question is how to store all the data in array in different date because the date range is going to be hundreds so i can't put it in temp table.. too much..
Guys, please throw some ideas here.
Thanks.