CTrade vs MqlTradeRequest - help

 
I'm just confused, it appears to me that both CTrade and MqlTradeRequest can be used to place a trade independently. Is this true? And if so, is one better that the other?
Documentation on MQL5: Standard Constants, Enumerations and Structures / Data Structures / Trade Request Structure
Documentation on MQL5: Standard Constants, Enumerations and Structures / Data Structures / Trade Request Structure
  • www.mql5.com
Standard Constants, Enumerations and Structures / Data Structures / Trade Request Structure - Documentation on MQL5
 
theDUDE:
I'm just confused, it appears to me that both CTrade and MqlTradeRequest can be used to place a trade independently. Is this true? And if so, is one better that the other?

Hi theDUDE,

Dude, CTrade is a class that using MqlTradeRequest. We can create any other class similar to CTrade and we can name it "whatever trade", but as long as it using MqlTradeRequest then its all the same with using MqlTradeRequest alone.

If we open CTrade class we'll see MqlTradeRequest all over it. 

I prefer using CTrade coz its already well written, but execution wise : its all the same.