+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
Line 25: Line 25:
6E  -  23833.00
6E  -  23833.00
</syntaxhighlight>
</syntaxhighlight>
[[Category:Functions]]

Revision as of 10:43, 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

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

returns:

6E  -  23833.00