+1 888 340 6572

BarsSinceStartSession: Difference between revisions

From MultiCharts
(Created page with "With the BarsSinceStartSession function the number of bars since the start of the day will be returned. == Code == <syntaxhighlight> Variables: firstBarOfSession(0); if (...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:


<syntaxhighlight>
<syntaxhighlight>
if (LastBarOnChart_s = True) then
Print(GetSymbolName, "  -  ", BarsSinceStartSession);
Print(GetSymbolName, "  -  ", BarsSinceStartSession);
</syntaxhighlight>
</syntaxhighlight>
returns:
returns:
<syntaxhighlight>
<syntaxhighlight>
6E  -  23833.00
6E  -  238.00
</syntaxhighlight>
</syntaxhighlight>
[[Category:Functions]]

Latest revision as of 10:50, 27 January 2012

With the BarsSinceStartSession function the number of bars since the start of the day will be returned.

Code

Variables:
	firstBarOfSession(0);
	
if (Date <> Date[1]) then begin

	firstBarOfSession = CurrentBar;

end;

BarsSinceStartSession = (CurrentBar - firstBarOfSession + 1);

Usage

Print(GetSymbolName, "  -  ", BarsSinceStartSession);

returns:

6E  -  238.00