MQL4: Can I manage closed orders using the OrderMagicNumber() function ?

 
or is this function only for opened orders ? I would like to refer to the closed orders using the OrderMagicNumber(). Is this possible ? If YES can I please any example?
 

of course

   int i=OrdersHistoryTotal()-1;
   //----
   if(OrderSelect(i,SELECT_BY_POS,MODE_HISTORY)==true)
      {                                     
      int OT = OrderType();
      string symbol = OrderSymbol();
      int Magic = OrderMagicNumber();
         {
         Print ("Magic Number is: ", Magic);
         }
      }
 
qjol:

of course


Thank you.