TickValue

From MultiCharts
Revision as of 10:48, 27 January 2012 by JoshM (talk | contribs) (Created page with "The TickValue function returns the currency value of one tick. == Code == <syntaxhighlight> TickValue = (MinMove / PriceScale) * BigPointValue; </syntaxhighlight> == Usage ==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The TickValue function returns the currency value of one tick.

Code

TickValue = (MinMove / PriceScale) * BigPointValue;

Usage

if (LastBarOnChart_s = True) then
	Print(GetSymbolName, "  -  ", TickValue);

returns

6E  -     12.5

Here the 6E is has a tick value of $12.50.