<?php

require_once 'php/member.pagebase.php';
$watchlist = ticker_group_info::retrieveWatchlistArray($tradeTypes);
$holdings = ticker_group_info::retrieveHoldingsArray($tradeTypes);
$abandon = ticker_group_info::retrieveAbandonArray($tradeTypes);
?>


<div class = "newwrap small_bottom_margin">
	<div class="section n1 <?php 
echo $login->showClass;
?>
">
		<div id="maintitle">
			Watchlist
		</div >
		<div class="tablegroup">
			<table id="watchTable" class="watchtable" cellspacing="0" cellpadding ="0" border="0">
				<thead>
					<tr class="table_head">
						<td class="new"></td>
						<th class="bottom left"><span class="hastooltip" title="Ticker Symbol">Symbol</span><div class="none">The ticker symbol of a BioBounce stock to watch.</div></th>
						<th class="bottom"><span class="hastooltip" title="Last Price">Last</span><div class="none">The most recent sell price.</div></th>
						<th class="bottom"><span class="hastooltip" title="Percent Change">Today</span><div class="none">The percent change of this ticker today.</div></th>
						<th class="bottom"><span class="hastooltip" title="Entry Price">Entry Price</span><div class="none"><?php 
echo $typeStrings->entryWatchDesc;
?>
</div></th>
						<th class="bottom"><span class="hastooltip" title="Percent From Entry">% from Entry</span><div class="none">The percentage difference from the last sell price and the entry price.</div></th>
						<th class="bottom"><span class="hastooltip" title="First Target">Target</span><div class="none"><?php 
Exemple #2
0
			<table id="holdingsTable" class="holdingstable" cellspacing="0" cellpadding ="0" border="0">
				<thead>
					<tr class="table_head">
						<th class="bottom lowpriority"> <span class="hastooltip" title="Entry Date">Entry Date</span><div class="none">The date when this stock was purchased.</div></th>
						<th class="bottom lowpriority">Abandon Date</th>
						<th class="bottom"> <span class="hastooltip" title="Ticker Symbol">Symbol </span><div class="none">The ticker symbol of this BioBounce holding.</div></th>
						<th class="bottom"> <span class="hastooltip" title="First Target">Target 1 </span><div class="none">The First BioBounce Target. Sell 33% of your holdings at this price.</div></th>
						<th class="bottom"> <span class="hastooltip" title="Second Target">Target 2 </span><div class="none">The Second BioBounce Target. Sell 33% of your original holdings at this price.</div></th>
						<th class="bottom"> <span class="hastooltip" title="Third Target">Target 3 </span><div class="none">The Third BioBounce Target. Sell all of your original holdings at this price.</div></th>
						<th class="bottom"> <span class="hastooltip" title="Abandon Price">Abandon Price</span><div class="none">The  end of day price limit. Sell the next day if this stock CLOSES below this price.</div><div class="note">(sell if closes below)</div></th>
						<th class="bottom"> <span class="hastooltip" title="Entry Price">Entry Price</span><div class="none">The price when this stock was purchased.</div> </th>
						<th class="bottom"> <span class="hastooltip" title="BioBounce Return">Return</span><div class="none">The current return percent of this stock based on the original price.</div> </th>
					</tr>
				</thead>
<?php 
$abandon = ticker_group_info::retrieveAbandonArray(REVERSAL_TRADE);
$tablestate = "row_odd";
$prevMonth = "";
$allMonths = array();
$first = true;
foreach ($abandon as $holding) {
    $hid = $holding['holdings_id'];
    $counter = 0;
    $sum = 0;
    if ($holding['holdings_t1_marked'] == 1) {
        $counter++;
        $sum += $holding['holdings_t1'];
    }
    if ($holding['holdings_t2_marked'] == 1) {
        $counter++;
        $sum += $holding['holdings_t2'];
Exemple #3
0
			<table id="holdingsTable" class="holdingstable" cellspacing="0" cellpadding ="0" border="0">
				<thead>
					<tr class="table_head">
						<th class="bottom lowpriority"> <span class="hastooltip" title="Entry Date">Entry Date</span><div class="none">The date that this stock climbed above the entry price.</div></th>
						<th class="bottom lowpriority">Abandon Date</th>
						<th class="bottom"> <span class="hastooltip" title="Ticker Symbol">Symbol </span><div class="none">The ticker symbol of this BioBounce holding.</div></th>
						<th class="bottom"> <span class="hastooltip" title="First Target">Target 1 </span><div class="none">The First BioBounce Target. Buy to cover 33% of your holdings at this price.</div></th>
						<th class="bottom"> <span class="hastooltip" title="Second Target">Target 2 </span><div class="none">The Second BioBounce Target. Buy to cover 33% of your original holdings at this price.</div></th>
						<th class="bottom"> <span class="hastooltip" title="Third Target">Target 3 </span><div class="none">The Third BioBounce Target. Buy to cover the rest of your original holdings at this price.</div></th>
						<th class="bottom"> <span class="hastooltip" title="Abandon Price">Abandon Price</span><div class="none">The end of day price limit. Buy to cover the next day if this stock CLOSES below this price.</div><div class="note">(cover short if closes above)</div></th>
						<th class="bottom"> <span class="hastooltip" title="Entry Price">Entry Price</span><div class="none">The price when this stock was shorted.</div> </th>
						<th class="bottom"> <span class="hastooltip" title="BioBounce Return">Return</span><div class="none">The current return percent of this stock based on the original price.</div> </th>
					</tr>
				</thead>
<?php 
$abandon = ticker_group_info::retrieveAbandonArray(SHORT_TRADE);
$tablestate = "row_odd";
$prevMonth = "";
$allMonths = array();
$first = true;
foreach ($abandon as $holding) {
    $hid = $holding['holdings_id'];
    $counter = 0;
    $sum = 0;
    if ($holding['holdings_t1_marked'] == 1) {
        $counter++;
        $sum += $holding['holdings_t1'];
    }
    if ($holding['holdings_t2_marked'] == 1) {
        $counter++;
        $sum += $holding['holdings_t2'];
//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::retrieveAbandonArray($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">

<link href="css/biobounce.css" rel="stylesheet" type="text/css">
<link href="css/biomembers.css" rel="stylesheet" type="text/css">