Updated IMML for Stock Market Ticker
I’ve made some adjustments to the stock ticker built as part of my building a stock ticker in vastpark post to take advantage of the new Tooltip Plugin and the Define element in IMML. Rather than going all out, I’ve simply added a tip that shows the volume for the current day when the mouse is over one of the green bars and a Define that lets you more easily choose which stocks should be displayed.
If you haven’t already read the original article and are interested in how it works, be sure to have a read before continuing.
Define Element
The Define element is a declarative way of expressing a variable in IMML. It’s equivalent to doing element:set(‘variableName’, variableValue) but doesn’t require interpretation via the scripting engine which results in much better performance. It’s also a much nicer way to store global variables as they can be placed in more a easily identifiable location in the IMML rather than being buried within a script.
My Define in the sample looks similar to this (truncated for brevity):
<!--Use any Yahoo stock codes in the below define to control the stocks being generated and updated--> <Define Key="stocks" Value="IPL.AX,VIL.AX,FMG.AX,RIO.AX,BHP.AX,BOQ.AX" />
To change the ticker to show different stocks, replace any of the entries in the Value of the Define with the appropriate Yahoo ticker code for the relevant stock.
Tooltip Plugin
Note: To use the Tooltip plugin, you’ll need to be running either the most recent Player snapshot or version 0.98+ as it uses the Handle property that was added recently to the IRenderEngine interface.
The tooltip concept has been around for quite a while and is used by just about every modern desktop application. Ever wondered what that big red button does and hovered your mouse to find out? If yes, you’ve seen a tooltip. This plugin extends the concept to allow developers to associate a tip with an element in world.
To do so is quite simple, the following functions are provided with the plugin:
int Add(string text, ImmlElement element) void Remove(int id) void SetText(int id, string text)
To make use of these, I’ve added 2 lines to _updateStock in the UpdateStocks script:
--update the volume tooltip id = lastTradeVisual:get('tooltipId') tooltipplugin:settext(id, 'Volume: '..volume)
…and 3 lines to _generateStock in the GenerateStocks script:
--store a define value on the last trade to represent volume for the tooltip lastTradePrim:set('volume', volume) id = tooltipplugin:add('Volume: '..volume, lastTradePrim) lastTradePrim:set('tooltipId', id)
The end result still looks similar to before, but we now get tooltips when hovering:
Download the updated IMML here: stock-ticker.imml
Comments
One Response to “Updated IMML for Stock Market Ticker”
[…] Update: Revised IMML here: http://theparkisvast.com/2010/02/17/updated-imml-for-stock-market-ticker/ […]