x32x01
  • by x32x01 ||
View all information about the candle
C:
input int shift=0;
//+------------------------------------------------------------------+
//| Function-event handler "tick"                                    |
//+------------------------------------------------------------------+
void OnTick()
  {
   datetime time  = iTime(Symbol(),Period(),shift);
   double   open  = iOpen(Symbol(),Period(),shift);
   double   high  = iHigh(Symbol(),Period(),shift);
   double   low   = iLow(Symbol(),Period(),shift);
   double   close = iClose(NULL,PERIOD_CURRENT,shift);
   long     volume= iVolume(Symbol(),0,shift);
   int      bars  = iBars(NULL,0);
 
   Comment(Symbol(),",",EnumToString(Period()),"\n",
           "Time: "  ,TimeToString(time,TIME_DATE|TIME_SECONDS),"\n",
           "Open: "  ,DoubleToString(open,Digits()),"\n",
           "High: "  ,DoubleToString(high,Digits()),"\n",
           "Low: "   ,DoubleToString(low,Digits()),"\n",
           "Close: " ,DoubleToString(close,Digits()),"\n",
           "Volume: ",IntegerToString(volume),"\n",
           "Bars: "  ,IntegerToString(bars),"\n"
           );
  }
 
Similar Threads
x32x01
Replies
0
Views
431
x32x01
x32x01
x32x01
  • Locked
  • x32x01
Replies
0
Views
614
x32x01
x32x01
x32x01
Replies
0
Views
388
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
374
x32x01
x32x01
x32x01
  • x32x01
Replies
0
Views
421
x32x01
x32x01
TAGs: Tags
forex metatrader mql5 mql5 language
Register & Login Faster
Forgot your password?
Forum Statistics
Threads
517
Messages
519
Members
51
Latest Member
chaoukidz
Back
Top