<?php

//Include the PS_Pagination class
require_once 'php/db_interface/autoload.php';
$login = new login(true);
/// REMOVE SOMETHING
if (isset($_GET['delete_hid'])) {
    $holdings = new holdings();
    $holdings->set_variable('holdings_id', $_GET['delete_hid']);
    if ($holdings->load()) {
        $holdings->delete();
    }
}
// Load the information from the database
$tradeTypesToUse = array(LONG_TRADE, PULLBACK_TRADE, SHORT_TRADE, BACKDRAFT_TRADE, BREAKOUT_TRADE, BREAKDOWN_TRADE);
$holdings = array();
foreach ($tradeTypesToUse as $tradeType) {
    $holdings[$tradeType] = ticker_group_info::retrieveHoldingsArray($tradeType);
}
?>


<!DOCTYPE html>
<html>
<head>
<title>BioBounce.com</title>

<meta name = "keywords" content = "biotech, stock, market, swing trading, stock trading" />
<meta name = "description" content = "" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, minimum-scale=1 user-scalable=no">