<?php
$json = $gelenveri;

$data = json_decode($json, true);

$total_pnl = 0;
foreach ($data['data']['otherPositionRetList'] as $position) {
    $total_pnl += $position['pnl'];
}

echo "Toplam PNL: " . $total_pnl;
?>