diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6b59fb4b..2bc8d614 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,8 @@
- Improved overall chart formatting (highlighting, colors, bar width, etc.)
- Adjusted tooltips and headers for better clarity.
- Improved the Risk Monitor view for larger screens. Thanks @GD_NL.
+- Improved chart loading performance
+- Updating TradingView Icon
## Bugs
- Fixed a few spelling mistakes across the app
diff --git a/assets/assets/tradingview-v2-svgrepo-com.svg b/assets/assets/tradingview-v2-svgrepo-com.svg
new file mode 100644
index 00000000..235ffe35
--- /dev/null
+++ b/assets/assets/tradingview-v2-svgrepo-com.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/app/App.global.scss b/src/app/App.global.scss
index 28e76792..6ea7a9b6 100644
--- a/src/app/App.global.scss
+++ b/src/app/App.global.scss
@@ -58,7 +58,7 @@
.mainWindow{
flex-grow: 1;
background-color: var(--color-background);
- padding: 3%;
+ padding: 3% 1% 1% 1%;
overflow: auto;
display: flex;
flex-direction: column;
diff --git a/src/app/Components/Sidebar/Sidebar.tsx b/src/app/Components/Sidebar/Sidebar.tsx
index b0f73dab..c2f03b22 100644
--- a/src/app/Components/Sidebar/Sidebar.tsx
+++ b/src/app/Components/Sidebar/Sidebar.tsx
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
import './Sidebar.scss';
-import { ActiveDealsIcon, BackwardClock, BotPlannerIcon, Coffee, Cog, PieChart } from '@/app/Components/icons/Index';
+import { ActiveDealsIcon, TradingViewLogo, BotPlannerIcon, Coffee, Cog, PieChart } from '@/app/Components/icons/Index';
import MenuBookIcon from '@mui/icons-material/MenuBook';
import { SidebarNav, SidebarLink } from './Components';
import { ProfileSwitcher } from '@/app/Features/Profiles/Components/Index'
@@ -24,7 +24,7 @@ class Sidebar extends Component {