Why not simply reorder your products listing in the backend based on the ordering but in descending order (it's ascending by default) ?You can just click on the ordering column title for that when you want it in that order.
If you want something more permanent, you would have to hack hikashop products listing view file administrator/components/com_hikashop/views/product/view.html.php and change the default ordering there:
$pageInfo->filter->order->dir = $app->getUserStateFromRequest( $this->paramBase.".filter_order_Dir", 'filter_order_Dir', 'asc', 'word' );
to:
$pageInfo->filter->order->dir = $app->getUserStateFromRequest( $this->paramBase.".filter_order_Dir", 'filter_order_Dir', 'desc', 'word' );