HALO (HALO): Results for Last 10 Financial Years (Summary) (2024)

Table of Contents

"; return html; }, source: function(term, response){ $.getJSON(url, { q: term }, function(data){ var json = JSON.parse(data); response(json); }); }, onSelect: function(e, term, item){ if (typeof onSelectStockFn === "function") { var code = item.getAttribute('data-code'); var name = item.getAttribute('data-name'); onSelectStockFn(code, name); } }, }); } function onSelectStockFn(code){ var url = stock_overview_url.replace("12345", code); location.href = url; }

New Portfolio

You should check in on some of those fields below.

PORTFOLIO: maintain record of your purchases, sales and cash transactions.
WATCHLIST: track a list of stocks to "watch" or follow.

Name

Description

Tag

Confirmation

Click Confirm to delete this list.

HALO (HALO): Results for Last 10 Financial Years (Summary) (8)

Halozyme Therapeutics, Inc.

NASDAQ (USD): Halozyme Therapeutics, Inc. (HALO)

Share this:

Last Price

49.62

Today's Change

-0.04 (0.08%)

Day's Change

48.86 - 49.91

Trading Volume

1,113,839

  • Overview
  • Prices
    • Latest Prices
  • Price Target
  • Discussions
  • Market Buzz
  • Historical Data
  • Financials
    • Summary
    • Last 10 FY
    • Quarter
    • Annual
    • Annual Report
  • Profile
  • Key Executives
Create Alert

You are setting up a price and signal alert with 15 minutes delay. Click here to enjoy real-time price and signal alerts.

Stock

Alert Type

Current Price

Value (USD)

Signal

Signal Duration

Signal Type

Frequency

Expiration Date

Alert Actions

Last Trigger Date:

-

Alert Name

Note

"; return html; }, source: function(term, response){ $.getJSON(url, { q: term }, function(data){ var json = JSON.parse(data); response(json); }); }, onSelect: function(e, term, item){ var code = item.getAttribute('data-code'); var name = item.getAttribute('data-name'); var alertName = name + " (" + code + ")"; alertName = code + " (" + name + ")"; $(inputElem).closest("div").find("#stock-alert-name").val(alertName); $(inputElem).closest("div").find("#stock-alert-code").val(code); retrieveCurrentPrice(code, $(inputElem).closest(".card-body")); setAlertName(); } }); $(inputElem).on("input", function() { $("#stock-alert-code").val(""); $("#stock-alert-name").val(""); $("#curr-price-message").html(""); }); $(inputElem).blur(function() { var td = $(this).closest("div"); var value = td.find("#stock-alert-code").val(); if(!value){ $(inputElem).val(""); $("#stock-alert-code").val(""); $("#stock-alert-name").val(""); $("#curr-price-message").html(""); } }); } function retrieveCurrentPrice(stockCode, elem){ if(!elem || elem.length == 0){ elem = $("#price-alert-modal"); } elem.find("#curr-price-loading").show(); elem.find("#curr-price-message").html("Retrieving Current Price."); if(stockCode){ $.ajax({ type: "POST", url: apiRoot + "/pricetarget/ret-curr-price", async: true, contentType: "application/json;charset=UTF-8", data: JSON.stringify({ "stockCode": stockCode, "showPricePercentage": true, "showColor": true }), success: function(data, textStatus, xhr) { if("E" == data){ elem.find("#curr-price-message").html("Error: Current Price not found."); }else{ elem.find("#curr-price-message").html(data); } elem.find("#curr-price-loading").hide(); }, error: function(xhr, status, error) { var msg = getHttpErrorMsg(xhr); if (msg != "") { elem.find("#curr-price-message").html("Error: " + msg); } $("#curr-price-loading").hide(); } }); } } function setAlertName(){ var selected = $("#price-alert-modal").is(":visible") ? $("#price-alert-modal") : $(".detail-div:visible"); var display_name = selected.find("#price-alert-type-select").find("option:selected").attr("data-name"); if(display_name){ var signal = selected.find("#signal-select").find("option:selected").attr("data-name"); signal = isEmptyString(signal) ? "" : signal; var duration = selected.find("#duration-select").find("option:selected").attr("data-name"); duration = isEmptyString(duration) ? "" : duration; var signal_type = selected.find("#signal-type-select").find("option:selected").attr("data-name"); signal_type = isEmptyString(signal_type) ? "" : signal_type; display_name = display_name.replace("$\{stock\}", selected.find("#stock-alert-name").val()); display_name = display_name.replace("$\{price\}", selected.find("#price-alert-value-input").val()); display_name = display_name.replace("$\{signal\}", signal); display_name = display_name.replace("$\{duration\}", duration); display_name = display_name.replace("$\{signal_type\}", signal_type); } selected.find("#price-alert-name-input").val(display_name); checkEnteredValue(); } function checkEnteredValue(elem){ var selected = $("#price-alert-modal").is(":visible") ? $("#price-alert-modal") : $(".detail-div:visible"); var selected_field = selected.find("#price-alert-value-input"); var valid = true; var entered_value = Number(selected_field.val()); var stock_price = Number(selected.find("#curr-price-label").html()); var type_field = selected.find("#price-alert-type-select"); var selected_type = selected.find("#price-alert-type-select").find("option:selected").val(); var selected_signal = selected.find("#signal-select"); var signal = selected.find("#signal-select").find("option:selected").attr("data-sysname"); var duration_field = selected.find("#duration-select"); var selected_duration = selected.find("#duration-select").find("option:selected").html(); var duration = selected.find("#duration-select").find("option:selected").attr("data-sysname"); if(elem){ selected_field = elem.find("#price-alert-value-input"); entered_value = Number(elem.find("#price-alert-value-input").val()); stock_price = Number(elem.find("#curr-price-label").html()); type_field = elem.find("#price-alert-type-select"); selected_type = elem.find("#price-alert-type-select").find("option:selected").val(); selected_signal = elem.find("#signal-select"); signal = elem.find("#signal-select").find("option:selected").attr("data-sysname"); duration_field = elem.find("#duration-select"); selected_duration = elem.find("#duration-select").find("option:selected").html(); duration = elem.find("#duration-select").find("option:selected").attr("data-sysname"); } if(cd_above_id == selected_type){ if(entered_value < stock_price){ valid = false; showErrorOnField(selected_field, "Value must greater than " + stock_price); } if(activePriceCount == 0) { valid = false; var reachedLimitMsg = "Oops, your account is not eligible for Price Alert."; showErrorOnField(type_field, reachedLimitMsg); } if(usedPriceCount >= activePriceCount) { valid = false; var reachedLimitMsg = "Oops, your account have reached the limit of active Price Alert."; showErrorOnField(type_field, reachedLimitMsg); } } else if(cd_below_id == selected_type){ if(entered_value > stock_price){ valid = false; showErrorOnField(selected_field, "Value must lower than " + stock_price); } if(activePriceCount == 0) { valid = false; var reachedLimitMsg = "Oops, your account is not eligible for Price Alert."; showErrorOnField(type_field, reachedLimitMsg); } else if(usedPriceCount >= activePriceCount) { valid = false; var reachedLimitMsg = "Oops, your account have reached the limit of active Price Alert."; showErrorOnField(type_field, reachedLimitMsg); } } else if(cd_signal_id == selected_type){ var notEligibleForStrategyMsg = "Oops, your account is not eligible for this strategy."; if(signal == "OBV") { showErrorOnField(selected_signal, notEligibleForStrategyMsg); valid = false; } if(signal == "VOLUME BREAKOUT") { showErrorOnField(selected_signal, notEligibleForStrategyMsg); valid = false; } if(signal == "TURTLE SYSTEM 20" || signal == "TURTLE SYSTEM 55") { showErrorOnField(selected_signal, notEligibleForStrategyMsg); valid = false; } if(activeMqSignalCount == 0) { valid = false; var reachedLimitMsg = "Oops, your account is not eligible for MQ Signal Alert."; showErrorOnField(type_field, reachedLimitMsg); if (typeof showSignalModal === "function") { showSignalModal(); } } else if(usedMqSignalCount >= activeMqSignalCount) { valid = false; var reachedLimitMsg = "Oops, your account have reached the limit of active MQ Signal Alert."; showErrorOnField(type_field, reachedLimitMsg); if (typeof showSignalModal === "function") { showSignalModal(); } } var validDuration = true; if(chartDuration == "Weekly" && duration != "Weekly") { validDuration = false; } else if(chartDuration == "Daily" && (duration == "Hourly" || duration == "30 Mins" || duration == "10 Mins" || duration == "5 Mins")) { validDuration = false; } else if(chartDuration == "Hourly" && (duration == "30 Mins" || duration == "10 Mins" || duration == "5 Mins")) { validDuration = false; } else if(chartDuration == "30 Mins" && (duration == "10 Mins" || duration == "5 Mins")) { validDuration = false; } else if(chartDuration == "10 Mins" && (duration == "5 Mins")) { validDuration = false; } if(!validDuration) { valid = false; var reachedLimitMsg = "Oops, your account only can use Signal Duration up to " + chartDuration + "."; showErrorOnField(duration_field, reachedLimitMsg); } } valid &= validateDatePeriod("price-alert-expiration-date-input", signalValidityMonth); return valid; } function validateDatePeriod(date_to_id, month_interval){ //set today date for Date To var date_to = $("#" + date_to_id).val(); if(isEmptyString(date_to)) return true; var date_to_obj = checkField($("#" + date_to_id).get(), true); var valid = date_to_obj.isValid(); if(!valid) return false; //date period field are mandatory var from_date_moment = moment("2024-06-13","YYYY-MM-DD"); var to_date_moment = moment(date_to,"YYYY-MM-DD"); //from date cannot greater than to date if(from_date_moment > to_date_moment){ showTbModalMesg(tbmesgtypeError, "Invalid Date Period.", null, true); return false; } if(month_interval == null) return true; //set today date for Date From month_interval = !isNaN(month_interval) ? Number(month_interval) : 0; //difference month var diff_month = to_date_moment.diff(from_date_moment, 'months', true); if(diff_month > month_interval){ var datePeriodWithinMsg = "Date Period must be within " + month_interval + " months."; showErrorOnField($("#" + date_to_id), datePeriodWithinMsg); return false; } return true; } function toggleAlertTypeField(elem) { var selected_div = $(elem).closest(".card-body"); if(!selected_div || selected_div.length == 0){ selected_div = $("#price-alert-modal"); } var alert_type = checkField(selected_div.find("#price-alert-type-select").get()); var alert_type_signal = false; if(cd_signal_id == alert_type.getValue()) { alert_type_signal = true; } if(alert_type_signal) { $(".type-signal").show(); $(".type-price").hide(); selected_div.find("#price-alert-value-input").val(""); } else { $(".type-signal").hide(); $(".type-price").show(); selected_div.find("#signal-select").val(""); selected_div.find("#duration-select").val(""); selected_div.find("#signal-type-select").val(""); } } function savePriceAlert(elem){ toggleSaveButton(elem, true); var selected_div = $(elem).closest(".card-body"); if(!selected_div || selected_div.length == 0){ selected_div = $("#price-alert-modal"); } var record_id = selected_div.find("#price-alert-record-id").val(); var stock_name = checkField(selected_div.find(".stock-input").get(), true); var alert_type = checkField(selected_div.find("#price-alert-type-select").get(), true); var alert_type_signal = false; if(cd_signal_id == alert_type.getValue()) { alert_type_signal = true; } var value = checkField(selected_div.find("#price-alert-value-input").get(), !alert_type_signal); var formatted_value = Math.round(Number(value.getValue()) * 10000); var signal = checkField(selected_div.find("#signal-select").get(), alert_type_signal); var duration = checkField(selected_div.find("#duration-select").get(), alert_type_signal); var signal_type = checkField(selected_div.find("#signal-type-select").get(), alert_type_signal); var ori_frequency = selected_div.find('#frequency-checkbox').attr("data-orig"); var frequency = checkField(selected_div.find("#price-alert-frequency-select").get(), true); var expired_date = checkField(selected_div.find("#price-alert-expiration-date-input").get(), true); var ori_alert_action = selected_div.find('#alert-action-label').attr("data-orig"); var alert_action = ""; selected_div.find(".alert-actions:checked").each(function(){ alert_action += $(this).val() + ","; }); if(alert_action){ alert_action = alert_action.slice(0, -1); } var alert_name = checkField(selected_div.find("#price-alert-name-input").get(), true); var note = checkField(selected_div.find("#price-alert-note-input").get()); var valid = stock_name.isValid() && alert_type.isValid() && value.isValid() && expired_date.isValid() && alert_name.isValid() && frequency.isValid() && signal.isValid() && duration.isValid() && signal_type.isValid(); valid &= checkEnteredValue(selected_div); var change = getAllValue(selected_div) != price_alert_orig_value; if (valid && change){ $.ajax({ type: "POST", url: apiRoot + "/pricealert/save", async: true, contentType: "application/json;charset=UTF-8", data: JSON.stringify({ id: record_id, stockCode: selected_div.find("#stock-alert-code").val(), value: formatted_value, signalId: signal.getValue(), durationId: duration.getValue(), signalTypeId: signal_type.getValue(), expiredDate: expired_date.getValue(), alertName: alert_name.getValue(), note: note.getValue(), alertTypeId: alert_type.getValue(), alertActionIds: alert_action, frequencyId: frequency.getValue(), userid: "", }), success: function(data, textStatus, xhr) { if(record_id != "0"){ showPgTopToast("Alert updated successfully."); }else{ showPgTopToast("Alert added successfully."); } setTimeout(function() { toggleSaveButton(elem, false); if(record_id != "0"){ if (typeof callbackAfterUpdate === "function") { callbackAfterUpdate(data, elem); } }else{ if (typeof callbackAfterCreation === "function") { callbackAfterCreation(); } } }, 1000); }, error: function(xhr, status, error) { var msg = getHttpErrorMsg(xhr); if (msg != "") { toggleSaveButton(elem, false); showPgTopToast("Failed to create Alert.
" + msg); } } }); }else{ toggleSaveButton(elem, false); } if(valid && !change){ showPgTopToast("No change."); } } function deletePriceAlertFromModal(){ showStockConfirmModal("Click Confirm to delete this alert."); $("#stock-confirm-btn").unbind('click'); $("#stock-confirm-btn").click(function() { deletePriceAlert($("#price-alert-record-id").val()); }); } function deletePriceAlert(id){ $.ajax({ type: "POST", url: apiRoot + "/pricealert/delete/" + id, async: true, success: function(data, textStatus, xhr) { showPgTopToast("Alert deleted successfully."); setTimeout(function() { if($("#dttable-price-alert").is(":visible")){ dttable.row(curr_selected_tr).remove().draw(); $("#price-alert-log-table tbody").html(""); } hideStockConfirmModal(); hidePriceAlertModal(); }, 1000); }, error: function(xhr, status, error) { var msg = getHttpErrorMsg(xhr); if (msg != "") { toggleSaveButton(elem, false); showPgTopToast("Failed to delete Alert.
" + msg); } } }); } function toggleSaveButton(selected, show_saving){ if(!selected) return; if(show_saving){ $(selected).attr("disabled", true); $(selected).find(".fa-save").hide(); $(selected).find(".fa-spinner").show(); }else{ $(selected).attr("disabled", false); $(selected).find(".fa-save").show(); $(selected).find(".fa-spinner").hide(); } } function addPriceAlertCount (){ usedPriceCount++; } function addMqSignalAlertCount (){ usedMqSignalCount++; } function minusPriceAlertCount (){ usedPriceCount--; } function minusMqSignalAlertCount (){ usedMqSignalCount--; }

Financial

Market Cap

6Billion

Shares Outstanding

127Million

Latest Quarter

31-Mar-2024 [Q1]

Announcement Date

07-May-2024

Reported Currency

USD

Revenue QoQ | YoY

-14.85% | 20.81%

NP QoQ | YoY

-10.03% | 93.92%

Announcement Date

20-Feb-2024

Reported Currency

USD

Revenue | Net Profit

829,253,000.00 | 281,594,000.00

EPS | EPS Diluted

2.13Cent | 2.10Cent

YoY

39.31%

NP Margin

33.96%

  • Summary
  • Last 10 FY
  • Quarter
  • Annual
  • Cumulative
  • T4Q
  • Annualized
  • Annual (Unaudited)
  • Income Statement
  • Balance Sheet
  • Cash Flow
  • Statistics
  • Valuation
  • Annual Report

Reported Currency in USD

Show?

Last 10 FY Result (Thousand)
31/12/23 31/12/22 31/12/21 31/12/20 31/12/19 31/12/18 31/12/17 31/12/16 31/12/15 31/12/14 CAGR
Revenue 829,253 660,116 443,310 267,594 195,992 151,862 316,613 146,691 135,057 75,334 30.51%
PBT 348,329 248,918 248,518 129,302 -72,251 -79,793 61,610 -101,861 -32,231 -68,375 -
Tax 66,735 46,789 -154,192 217 -11 537 -1,361 1,162 3,524 3,819 37.39%
NP 281,594 202,129 402,710 129,085 -72,240 -80,330 62,971 -103,023 -32,231 -68,375 -
Tax Rate -19.16% -18.80% 62.04% -0.17% - - 2.21% - - - -
Total Cost 547,659 457,987 40,600 138,509 268,232 232,192 253,642 249,714 167,288 143,709 16.01%
Ratio Analysis
31/12/23 31/12/22 31/12/21 31/12/20 31/12/19 31/12/18 31/12/17 31/12/16 31/12/15 31/12/14 CAGR
NP Margin 33.96 30.62 90.84 48.24 -36.86 -52.90 19.89 -70.23 -23.86 -90.76 -
Per Share
31/12/23 31/12/22 31/12/21 31/12/20 31/12/19 31/12/18 31/12/17 31/12/16 31/12/15 31/12/14 CAGR
EPS 2.13 1.48 2.86 0.95 -0.50 -0.56 0.46 -0.81 -0.25 -0.56 -
EPS Diluted 2.10 1.44 2.74 0.91 -0.50 -0.56 0.45 -0.81 -0.25 -0.56 -

PBT = Profit before Tax, NP = Net Profit, NP Margin = Net Profit Margin, EPS = Earning Per Share, EPS Diluted = Earning Per Share Diluted.

NP Margin, QoQ & YoY figures in Percentage; EPS & EPS Diluted figures in Cent.

All figures in '000 unless specified.

Discussions

Be the first to like this. Showing 0 of 0 comments

Post a Comment
People who like this

Latest Videos

MQ Market Updates - 13 June 2024

HALO (HALO): Results for Last 10 Financial Years (Summary) (9)

MQ Trader

Share this:

Apps

HALO (HALO): Results for Last 10 Financial Years (Summary) (10)

MQ Chat

Send individual or group chats with anyone on i3investor

HALO (HALO): Results for Last 10 Financial Years (Summary) (11)

MQ Trader

Earn MQ Points while trading with MQ Trader

HALO (HALO): Results for Last 10 Financial Years (Summary) (12)

MQ Affiliate

Earn side income from Affiliate Program

HALO (HALO): Results for Last 10 Financial Years (Summary) (13)

MQdemy

Online learning and teaching marketplace

Top Articles

1

CEO Morning Brief

Wall Street Ties to Amazon Forest Depletion Mapped Out in New Report

2

CEO Morning Brief

Meta Platforms to Use Social Media Posts From Europe to Train AI

3

CEO Morning Brief

Musk Warns That He Will Ban Apple Devices If OpenAI Is Integrated at Operating System Level

4

CEO Morning Brief

Bitcoin Faces ‘crucial’ 36 Hours on Heightened Sensitivity to US Yields

5

CEO Morning Brief

US Small-business Optimism Improves to Highest Level This Year

Hot Stocks Today >

#

Stock

Score

1

HALO (HALO): Results for Last 10 Financial Years (Summary) (14)

AAPL

Apple Inc.

1000

2

576

3

HALO (HALO): Results for Last 10 Financial Years (Summary) (15)

NVDA

NVIDIA Corporation

576

4

HALO (HALO): Results for Last 10 Financial Years (Summary) (16)

WCC

WESCO International, Inc.

384

5

HALO (HALO): Results for Last 10 Financial Years (Summary) (17)

GME

GameStop Corp.

384

6

HALO (HALO): Results for Last 10 Financial Years (Summary) (18)

AMD

Advanced Micro Devices, Inc.

384

7

HALO (HALO): Results for Last 10 Financial Years (Summary) (19)

ALEX

Alexander & Baldwin, Inc.

192

8

HALO (HALO): Results for Last 10 Financial Years (Summary) (20)

DDOG

Datadog, Inc.

192

9

HALO (HALO): Results for Last 10 Financial Years (Summary) (21)

GRAB

Grab Holdings Limited

192

10

HALO (HALO): Results for Last 10 Financial Years (Summary) (22)

PLTR

Palantir Technologies Inc.

192

Daily Stocks
  • Active
  • Gainers
  • Losers

Stock

Last

Change

Volume

NVDA

129.61

+4.41

249,918,549

LGVN

2.69

+0.88

190,664,791

LMDX

0.016

-0.018

120,553,903

SQQQ

8.54

-0.14

114,967,838

TSLA

182.47

+5.18

114,074,055

STSS

0.358

+0.059

98,132,000

GME

29.12

+3.66

97,902,792

AAPL

214.24

+1.17

93,418,654

BRTX

1.95

+0.615

93,124,136

NVDA

762.00

-84.71

85,558,284

More active Stocks

Stock

Last

Change

Volume

AVGO

1,678.99

+183.48

8,777,574

SMCI

871.10

+96.36

11,482,730

CMG

3,265.26

+94.50

360,405

QXO

205.40

+26.09

27,774

ANET

331.67

+20.34

3,843,065

FNGU

426.00

+17.79

1,047,244

LLY

883.33

+16.03

2,149,005

MTD

1,474.44

+14.93

176,005

RYVLX

526.50

+13.50

RYVYX

526.34

+13.49

More gainer Stocks

Stock

Last

Change

Volume

BRK-A

611,500.00

-4,091.812

2,729

MSTR

1,065.03

-227.94

2,455,399

MELI

1,629.32

-188.66

1,851,535

MSTR

1,483.88

-119.79

2,030,546

MKL

1,395.13

-102.30

318,280

NOW

643.29

-87.83

5,025,012

NVDA

762.00

-84.71

85,558,284

MDB

236.06

-73.94

10,812,930

SEB

3,079.00

-61.88

1,567

PVH

108.68

-31.05

6,719,437

More loser Stocks

Top Brokers >
Books Review >

HALO (HALO): Results for Last 10 Financial Years (Summary) (23)

Ride The Bull Short The Bear

CS Tan

4.9 / 5.0

This book is the result of the author's many years of experience and observation throughout his 26 years in the stockbroking industry. It was written for general public to learn to invest based on facts and not on fantasies or hearsay....

Read More

HALO (HALO): Results for Last 10 Financial Years (Summary) (2024)
Top Articles
Latest Posts
Article information

Author: Pres. Carey Rath

Last Updated:

Views: 6758

Rating: 4 / 5 (61 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Pres. Carey Rath

Birthday: 1997-03-06

Address: 14955 Ledner Trail, East Rodrickfort, NE 85127-8369

Phone: +18682428114917

Job: National Technology Representative

Hobby: Sand art, Drama, Web surfing, Cycling, Brazilian jiu-jitsu, Leather crafting, Creative writing

Introduction: My name is Pres. Carey Rath, I am a faithful, funny, vast, joyous, lively, brave, glamorous person who loves writing and wants to share my knowledge and understanding with you.