Using mqh file or using purely - which one is fastest

 

Hello, 


Using 


#include <Trade\PositionInfo.mqh>
#include <Trade\Trade.mqh>
CPositionInfo  m_position;                   // trade position object
CTrade         m_trade;                      // trading object


Will make my EA slow? or should i use purely 


for example CTrade m_trade;  or directly MqlTradeRequest?

 
It's the same. And you should always prefer to use CTrade.