Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
desktop:desktop_dde [2021/12/21 17:23] – [Getting Data Into Excel] rob | desktop:desktop_dde [2023/09/21 19:58] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 24: | Line 24: | ||
< | < | ||
^ Value ^ Meaning ^ | ^ Value ^ Meaning ^ | ||
- | | Description | + | | Description |
- | | Numerator | + | | Numerator |
- | | Denominator | + | | Denominator |
- | | Settlement_Price, | + | | Settlement_Price, |
- | | Open_Price, | + | | Open_Price, |
- | | High_Price, | + | | High_Price, |
- | | Low_Price, | + | | Low_Price, |
- | | Mode | + | | Mode |
- | | Total_Traded_Volume | + | | Total_Traded_Volume |
- | | Last_Trade_Volume | + | | Last_Trade_Volume |
- | | Last_Trade_Price, | + | | Last_Trade_Price, |
- | | Bid_Volume | + | | Bid_Volume |
- | | Bid_Price, | + | | Bid_Price, |
- | | Offer_Volume | + | | Offer_Volume |
- | | Offer_Price, | + | | Offer_Price, |
- | | Net_Change_Price, | + | | Net_Change_Price, |
</ | </ | ||
+ | The last trade information will include trades in outrights due to spreads trading if the frontend is configured to show that information itself. | ||
+ | |||
+ | The Bid and Offer information will include implied prices if the frontend is configured to show it. | ||
+ | |||
+ | The difference between the ‘_TICKS’ and ‘_PRICE’ values is that the ‘_PRICE’ values are display prices (what you see on the frontend, e.g. 30yr bond = 11215) and the ‘_TICKS’ values are the decimal equivalent that can have math done on it (e.g. 30yr bond = 11215 = 112 points + 15/32 = expressed as a decimal is (112 + (15/32) = 112.46875). Please note that the decimal point is not present for all markets and must be added in programmatically if desired. | ||
+ | |||
+ | To send account and position data you can use the same method as above, except using the Account window instead of the Quote Board. Note that if you trade in a new market then Excel will not automatically detect that position, you must place links in Excel for each specific position that you want. | ||
+ | |||
+ | The DDE link format for account data in Excel is: | ||
+ | |||
+ | =T4Screen|' | ||
+ | |||
+ | Where: | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | ^ Value ^ Meaning ^ | ||
+ | | Description | ||
+ | | Account | ||
+ | | Firm | The firm this account belongs to. | | ||
+ | | Status | ||
+ | | PL | The total P&L of all the positions for this account | ||
+ | | UPL | The total unrealized P&L of all the positions for this account. | ||
+ | | RPL | The total realized P&L of all the positions for this account. | ||
+ | | Overnight_UPL | ||
+ | | Cash | The amount of available cash the account has available to trade with. Takes into consideration the Balance, P&L and Margin. | ||
+ | | Net_Equity | ||
+ | | Margin | ||
+ | | Balance | ||
+ | </ | ||
+ | |||
+ | The DDE link format for position data in Excel is: | ||
+ | |||
+ | =T4Screen|' | ||
+ | |||
+ | Where: | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | ^ Column A ^ Column B ^ | ||
+ | | Description| The name of the market this position is for. | | ||
+ | | Net | The net position of this account in this market. | ||
+ | | PL | The total P&L of this position. | ||
+ | | UPL | The unrealized P&L from the open position. | ||
+ | | RPL | The realized P&L from the closed position. | ||
+ | | Overnight_UPL | The unrealized P&L due to positions carried over from the previous trading day. | | ||
+ | | Margin | ||
+ | | Buys | The total number of contracts bought. | ||
+ | | Sells | The total number of contracts sold. | | ||
+ | | Working_Buys | ||
+ | | Working_Sells | ||
+ | </ | ||
====== DDE Commands ====== | ====== DDE Commands ====== | ||
+ | You can control some aspects of the T4 frontend via DDE commands. These are aimed at people programming applications within Excel that interact with T4. | ||
+ | |||
+ | ====== Opening a Contract Window====== | ||
+ | You can cause T4 to activate or open a Contract window with a specific market displayed. To do this you need to enter the following in a cell: | ||
+ | |||
+ | =T4Screen|' | ||
+ | |||
+ | where < | ||
+ | |||
+ | e.g. =T4Screen|' | ||
+ | |||
+ | Sending this command will cause the frontend to look for the most recently used Contract window for that Contract and bring it on top of any other application, | ||
+ | |||
+ | If you wish to repeatedly display the same market (e.g. user clicks a cell to display the contract window, then closes the contract window and clicks the cell again) then you need to replace the above cell contents with: | ||
+ | |||
+ | =T4Screen|' | ||
+ | |||
+ | where < | ||
+ | |||
+ | This clears out the last command processed and will allow the previous command to be sent again as a new command. | ||
+ | |||
+ | If the command succeeds then the value '< | ||
+ | ====== Changing the DDE Advertise Interval ====== | ||
+ | |||
+ | You can change the timer interval that DDE advertisements are sent on. An advertisement is sent when a piece of data you are interested in has changed, e.g. last trade price. This is set at 10ms by default. If you want to slow down the updates then you can change this to be anything up to 60,000ms. | ||
+ | |||
+ | To change the timer you need to enter the following into a cell: | ||
+ | |||
+ | =T4Screen|' | ||
+ | |||
+ | where < | ||
+ | |||
+ | e.g. =T4Screen|' | ||
+ | |||
+ | If the command succeeds then the value '< | ||
+ | |||
+ | If you close T4 desktop and reopen it then you would need to execute this command again for it to take effect. | ||
+ | |||
+ | |||
====== Breaking DDE Links ====== | ====== Breaking DDE Links ====== | ||
+ | Excel will allow a user to manually edit excel links. This provides the opportunity for end user error in the form of a typo as Excel DDE links are case sensitive. If a typo occurs the user will have no choice but to remove the broken link and create it correctly from scratch. This is a limitation in Excel. | ||
+ | |||
+ | An example would be if the month is changed using lower case charactors. Excel won't allow the correction of the formula and the formula will never again work. | ||
+ | |||
+ | In Excel 2010 go to the Data tab and click Edit Links. | ||
+ | |||
+ | A dialog will be displayed. | ||
+ | |||
+ | Find the broken link and click "Break Link" and close the dialog. | ||
+ | |||
+ | Use T4 to generate the correct link so that there is no chance of a typo. | ||
+ | |||
+ | {{: | ||