×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

Difference between revisions of "TickValue" - MultiCharts
Open main menu

Difference between revisions of "TickValue"

(Created page with "The TickValue function returns the currency value of one tick. == Code == <syntaxhighlight> TickValue = (MinMove / PriceScale) * BigPointValue; </syntaxhighlight> == Usage ==...")
 
m
 
(One intermediate revision by the same user not shown)
(No difference)

Latest revision as of 17:29, 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.