How to avoid the Balance Deposit line in the loop browsing account history ?

 
Hello,
How to avoid the Balance Deposit line in this FOR loop, browsing all order in the account history?

    int Ticket,o,CntOR=OrdersHistoryTotal();    
    for(o=CntOR-1;-1<o;o--){
        Ticket=OrderSelect(o,SELECT_BY_POS,MODE_HISTORY);
        if(0<Ticket){
            OrderPrint();
        }else{
           Print("ERROR to Select Ticket "+Ticket+" : "+GetLastError());
        }
    }

PS. How to color syntax for MQL code added in a post?
In the WYSIWYG editor, the style "MQL code" doest color the code :(

Thanks