C
carl
I use these 2 queries and then paste the results into excel...
Q1
SELECT Query3.OCC_Vol, AS BOX_Vol, (/OCC_Vol) AS BOX, [A]/
OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol AS BATS, [C]/OCC_Vol
AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE, [Q]/OCC_Vol AS NOM,
[X]/OCC_Vol AS PHLX
FROM Query3
ORDER BY OCC_Vol DESC;
Q2
SELECT Query3.OCC_Vol, AS BOX_Vol, (/OCC_Vol) AS BOX, [A]/
OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol AS BATS, [C]/OCC_Vol
AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE, [Q]/OCC_Vol AS NOM,
[X]/OCC_Vol AS PHLX
FROM Query3
ORDER BY OCC_Vol DESC;
The excel spreadsheet looks something like this:
Trade Date 4/27/2011
Result Q1 OCC_Vol BOX_Vol
17,439,351 513,649
Result Q2 underlying OCC_Vol BOX_Vol
SPY 2,212,187 46,832
SLV 1,285,651 46,377
STX 983,631 809
IWM 419,558 6,851
I type in trade date manually.
Can a form be used so I do not need to copy/paste into excel ?
Thanks you in advance.
Q1
SELECT Query3.OCC_Vol, AS BOX_Vol, (/OCC_Vol) AS BOX, [A]/
OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol AS BATS, [C]/OCC_Vol
AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE, [Q]/OCC_Vol AS NOM,
[X]/OCC_Vol AS PHLX
FROM Query3
ORDER BY OCC_Vol DESC;
Q2
SELECT Query3.OCC_Vol, AS BOX_Vol, (/OCC_Vol) AS BOX, [A]/
OCC_Vol AS AMEX, [P]/OCC_Vol AS ARCA, [Z]/OCC_Vol AS BATS, [C]/OCC_Vol
AS CBOE, [W]/OCC_Vol AS C2, /OCC_Vol AS ISE, [Q]/OCC_Vol AS NOM,
[X]/OCC_Vol AS PHLX
FROM Query3
ORDER BY OCC_Vol DESC;
The excel spreadsheet looks something like this:
Trade Date 4/27/2011
Result Q1 OCC_Vol BOX_Vol
17,439,351 513,649
Result Q2 underlying OCC_Vol BOX_Vol
SPY 2,212,187 46,832
SLV 1,285,651 46,377
STX 983,631 809
IWM 419,558 6,851
I type in trade date manually.
Can a form be used so I do not need to copy/paste into excel ?
Thanks you in advance.