$cat_name = 'Investor Relations';
require 'page_top2.html';
/*
$link = mysql_connect($cl_database, $cl_database_user, $cl_database_pass);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
if (!mysql_select_db('stocks')) {
die('Could not select database: ' . mysql_error());
}
$dbTable = 'yahoo_intra';
$result_stockdata=mysql_query("SELECT last_trade, last_change, last_change_per, volume, date_format(last_time,'%h:%i %p') as last_trade_time, date_format(last_time,'%a. %b %e, %Y') as last_trade_date, day_high, day_low, day_open, previous_close FROM $dbTable where (ticker='$ticker') ORDER BY last_time DESC LIMIT 1");
while ($row_stockdata=mysql_fetch_array($result_stockdata)){
$last_trade = $row_stockdata["last_trade"];
$last_change = $row_stockdata["last_change"];
$last_change_per = $row_stockdata["last_change_per"];
$last_time = $row_stockdata["last_trade_time"];
$volume = number_format($row_stockdata["volume"]);
$day_open = $row_stockdata["day_open"];
$day_high = $row_stockdata["day_high"];
$day_low = $row_stockdata["day_low"];
$previous_close = $row_stockdata["previous_close"];
$year_high = $row_stockdata["year_high"];
$year_low = $row_stockdata["year_low"];
$eps = $row_stockdata["eps"];
$pe_ratio = $row_stockdata["pe_ratio"];
$last_trade_time = $row_stockdata["last_trade_time"];
$last_trade_date = $row_stockdata["last_trade_date"];
}
mysql_close($link);
*/
?>
|
require 'inc/sidenav_ir22.html'; ?>
|
|
|
Stock Information |
|
As of Thu. Oct 18, 2018 at 04:00 PM
Last Trade:
|
$ 5.95
|
Day High:
|
$ 6.90
|
Day Low:
|
$ 4.80
|
Volume:
|
358,029
|
Open:
|
$ 5.05
|
Number of Shares:
|
3,206,507
|
Market Capitalization:
|
$ 19,078,717
|
Globus Maritime is listed on the Nasdaq Capital Market under ticker GLBS.
Click for live stock data
|
|
|
require 'page_bottom.html';
?>