Question: in the following code example,
Code: Select all
//--------------------------------------------------------------------
// countticks.mq4
// The code should be used for educational purpose only.
//--------------------------------------------------------------------
int Tick; // Global variable
//--------------------------------------------------------------------
int start() // Special function start()
{
Tick++; // Tick counter
Comment("Received: tick No ",Tick); // Alert that contains number
return; // start() exit operator
}
//--------------------------------------------------------------------
I now it seems a really small thing but I can't figure out what is being represented by ++. I know what the code sample does as a whole but...
Does it simply mean increment by 1?
Thanks in advance!
Rick