QuickCalc supports a large set of mathematical, logical, and GlobalView data functions, which can be used to create user-defined formulas against live quotes.
The ASK data function returns the latest asking price for the symbol provided. For applicable symbols, this price updates in real time.
ASK(“symbol”)
=ASK(“/NGF4”) returns the current ask price for the /NGF4 contract
=ASK(“/NGF4”)*2 returns 10.64 if the current ask price is 5.32 for the /NGF4 contract
The ASKSIZE data function returns the quantity offered at the latest ask price. For applicable symbols, this value updates in real time.
ASKSIZE(“symbol”)
=ASKSIZE(“/NGF4”) returns the quantity offered at the latest ask price for the /NGF4 contract
=(ASKSIZE(“/NGF4”)+ASKSIZE(“/NGG4”)+ASKSIZE(“/NGH4”))/3 averages the quantity offered at the latest ask price for the symbols shown.
The BID data function returns the latest bid price for the symbol provided. For applicable symbols, this price updates in real time.
BID(“symbol”)
=BID(“/NGF4”) returns the latest bid price for the /NGF4 contract
=BID(“/NGF4”)*2 returns 10.38 if the latest bid price is 5.19 for the /NGF4 contract
The BIDSIZE data function returns the quantity offered at the latest bid price. For applicable symbols, this value updates in real time.
BIDSIZE(“symbol”)
=BIDSIZE(“/NGF4”) returns the quantity offered at the latest bid price for the /NGF4 contract
=(BIDSIZE(“/NGF4”)+BIDSIZE(“/NGG4”)+BIDSIZE(“/NGH4”))/3 averages the quantity offered at the latest bid price for the symbols shown.
The CONTRACT data function returns the formatted name of the contract specified. The formatted name consists of the contract’s expiration month and year.
CONTRACT(“symbol”)
=CONTRACT(“/NGF4”) returns “Jan 04”
The DESC data function returns the symbol’s description.
DESC(“symbol”)
=DESC(“/NGF4”) returns “JAN 04 Natural Gas”
The HIGH data function returns the session's highest transaction value. For applicable symbols, this value updates in real time.
HIGH(“symbol”)
=HIGH(“/NGF4”) returns the session’s highest transaction value for /NGF4.
=HIGH(“/NGF4”)/7 returns 0.774285 if the session’s high value is 5.42
The HISTORICAL CLOSE data function returns the previous session's close or settle value. For applicable symbols, this value updates in real time.
HISTCLOSE(“symbol”)
=HISTCLOSE(“/NGF4”) returns the previous session’s settle value for /NGF4.
=HISTCLOSE(“/NGF4”)/7 returns 0.774285 if the previous session’s settle value is 5.42
The LAST data function returns the last trade price or value (most recent). For applicable symbols, this value updates in real time.
LAST(“symbol”)
=LAST(“/NGF4”) returns the last trade price for /NGF4.
=LAST(“/NGF4”)*5 returns 26.65 if the last price is 5.33
The LOW data function returns the session's lowest transaction value. For applicable symbols, this value updates in real time.
LOW(“symbol”)
=LOW(“/NGF4”) returns the session’s lowest transaction value for /NGF4.
=LOW(“/NGF4”)*5 returns 25.2 if the lowest price is 5.04.
The NETCHG data function returns the net change from previous close. For applicable symbols, this value updates in real time.
NETCHG(“symbol”)
=NETCHG(“/NGF4”) returns the net change from previous close.
=OPEN(“/NGF4”)/NETCHG(“/NGF4”) returns 15.849057 if open and net change are 5.04 and 0.318, respectively
The OPEN data function returns the session's opening price. For applicable symbols, this value updates in real time.
OPEN(“symbol”)
=OPEN(“/NGF4”) returns the session’s opening price for /NGF4.
=OPEN(“/NGF4”)*5 returns 25.2 if the session’s opening price is 5.04
The SETTLE data function returns the settlement price, e.g. the official closing price of a commodity. For applicable symbols, this value updates in real time.
SETTLE(“symbol”)
=SETTLE(“/NGF4”) returns the session’s settle value for /NGF4.
=SETTLE(“/NGF4”)*5 returns 26.65 if the session’s settle value is 5.33
The TICKCT data function returns the number of trades this session for a particular symbol. For applicable symbols, this value updates in real time.
TICKCT(“symbol”)
=TICKCT(“/NGF4”) returns the number of trades in the current session for /NGF4.
The TRDDATE data function returns the date of the last reported trade. For applicable symbols, this value updates in real time.
TRDDATE(“symbol”)
=TRDDATE(“/NGF4”) returns the date of the last reported trade.
=MONTH(TRDDATE(“/NGF4”)) returns 11 if the last reported trade is 2003-11-14.
The TRDTIME data function returns the time of the last reported trade. For applicable symbols, this value updates in real time.
TRDTIME(“symbol”)
=TRDTIME(“/NGF4”) returns the time of the last reported trade for /NGF4.