Index: frontend/src/pages/Dashboard/AllocationSection/AllocationSection.jsx
===================================================================
--- frontend/src/pages/Dashboard/AllocationSection/AllocationSection.jsx	(revision f9b6a0afbd297a228836d391d54b5d5f8e5e57a2)
+++ frontend/src/pages/Dashboard/AllocationSection/AllocationSection.jsx	(revision 473ccd2fe1b540a575f8b7ac6e13e4c957ac1973)
@@ -24,5 +24,8 @@
         fetch("http://localhost:8080/api/stocks")
             .then((res) => res.json())
-            .then((data) => setStocks(data))
+            .then((data) => {
+                const sortedData = data.sort((a, b) => new Date(b.lastUpdated) - new Date(a.lastUpdated));
+                setStocks(sortedData);
+            })
             .catch((err) => console.error("Error fetching stocks:", err));
     }, []);
@@ -32,8 +35,5 @@
             <div className="flex flex-row justify-between space-y-1.5 p-6">
                 <h3 className="text-xl font-semibold text-gray-800 ">MBI10 Elements</h3>
-                {stocks.length > 0 && <h3 className="border-b-2 border-blue-400 rounded-md">{new Date(stocks[2].lastUpdated).toLocaleTimeString([], {
-                    hour: '2-digit',
-                    minute: '2-digit'
-                })}</h3>}
+                    <h3 className=""><span className="w-2 h-2 bg-blue-400 rounded-full inline-block mr-2"></span>Last update of the price</h3>
             </div>
             <div className="p-6 pt-0">
@@ -55,6 +55,21 @@
                                         <div className="font-medium text-sm">{token.name}</div>
                                         <div className="text-xs opacity-75">{token.symbol}</div>
+
+                                    </div>
+                                    <div className="text-xs text-gray-600 border-b-2 border-blue-400 rounded-md ml-auto">
+                                        {new Date(token.lastUpdated).toLocaleDateString([], {
+                                            year: 'numeric',
+                                            month: '2-digit',
+                                            day: '2-digit'
+                                        })}{' '}
+                                        {new Date(token.lastUpdated).toLocaleTimeString([], {
+                                            hour: '2-digit',
+                                            minute: '2-digit'
+                                        })}
                                     </div>
                                 </div>
+
+
+
                                 <div className="flex justify-between items-end">
                                     <span className="font-bold text-lg">{token.currentPrice} MKD</span>
