急,MQL4怎么获取K线宽度,或者间接计算出K线宽度

 
如题,请问有大神知道怎么弄吗?查了全网都没找到解决办法。
 
在线等
 
bool  ChartTimePriceToXY( 
   long           chart_id,     // Chart ID 
   int            sub_window,   // The number of the subwindow 
   datetime       time,         // Time on the chart 
   double         price,        // Price on the chart 
   int&           x,            // The X coordinate for the time on the chart 
   int&           y             // The Y coordinates for the price on the chart 
   );


变通下,算下Time[0]和Time[1]的像素距离。

 
Ziheng Zhuang:


变通下,算下Time[0]和Time[1]的像素距离。

感谢大神,这就弄