I use an Embedded HTML item to display real time date and time.
HTML:
<!DOCTYPE html>
<html>
<body>
<p style="font-size:xx-large" id="date"></p>
</body>
</html>
Javascript:
<script type="text/javascript">
document.getElementById("date").innerHTML = Date();
</script>
And it works just fine for me