First in prestashop Back Office, find id for each currency and each language, after that
Find init.php at your prestashop folder, before the following code :
$currency = Tools::setCurrency();Place below code :
if ($cookie->id_lang == 1){set $cookie->id_currency = 2;}else{set $cookie->id_currency = 4;}Note: the id for languages and currencies above is just example, use your own id.