Difference between revisions of "TickValue"

From MultiCharts
Jump to navigation Jump to search
(Created page with "The TickValue function returns the currency value of one tick. == Code == <syntaxhighlight> TickValue = (MinMove / PriceScale) * BigPointValue; </syntaxhighlight> == Usage ==...")
 
m
Line 16: Line 16:
 
Here the 6E is has a tick value of $12.50.
 
Here the 6E is has a tick value of $12.50.
  
[[Category:Functions]]
+
[[Category:EasyLanguageFunctions]]

Revision as of 17:28, 27 January 2012

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.