diff --git a/static/app-strings.json b/static/app-strings.json
index c7b2445fc..d076943ff 100644
--- a/static/app-strings.json
+++ b/static/app-strings.json
@@ -1185,6 +1185,7 @@
   "Download the app to track files you've viewed and downloaded.": "Download the app to track files you've viewed and downloaded.",
   "Create a New Channel": "Create a New Channel",
   "Create a new channel": "Create a new channel",
+  "Go Live": "Go Live",
   "Thumbnail source": "Thumbnail source",
   "Cover source": "Cover source",
   "Your changes will be live in a few minutes": "Your changes will be live in a few minutes",
diff --git a/ui/component/header/view.jsx b/ui/component/header/view.jsx
index 79e39af55..00bb5b348 100644
--- a/ui/component/header/view.jsx
+++ b/ui/component/header/view.jsx
@@ -374,6 +374,10 @@ function HeaderMenuButtons(props: HeaderMenuButtonProps) {
               <Icon aria-hidden icon={ICONS.CHANNEL} />
               {__('New Channel')}
             </MenuItem>
+            <MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.GO_LIVE}`)}>
+              <Icon aria-hidden icon={ICONS.VIDEO} />
+              {__('Go Live')}
+            </MenuItem>
           </MenuList>
         </Menu>
       )}
diff --git a/ui/constants/pages.js b/ui/constants/pages.js
index 4d688a7f5..d79eebf4c 100644
--- a/ui/constants/pages.js
+++ b/ui/constants/pages.js
@@ -48,3 +48,4 @@ exports.BUY = 'buy';
 exports.CHANNEL_NEW = 'channel/new';
 exports.NOTIFICATIONS = 'notifications';
 exports.YOUTUBE_SYNC = 'youtube';
+exports.GO_LIVE = 'livestream';