<?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
                $trialMessage = "**** TRIAL MEMBERSHIP EXPIRES IN " . $diff . " DAYS! ****";
            }
        }
    }
} else {
    if ($diff >= -3) {
        $useSubscriptionText = false;
    } else {
        $trialTimeClass = "";
        $trialMessage = "**** YOUR SUBSCRIPTION HAS EXPIRED! ****";
        $showData = false;
        $showClass = "none";
    }
}
$watchlist = ticker_group_info::retrieveWatchlistArray(REVERSAL_TRADE);
$holdings = ticker_group_info::retrieveHoldingsArray(REVERSAL_TRADE);
?>


<!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">
<!--
-->
<meta http-equiv="refresh" content="300" > 
Exemple #3
0
                $trialMessage = "**** TRIAL MEMBERSHIP EXPIRES IN " . $diff . " DAYS! ****";
            }
        }
    }
} else {
    if ($diff >= -3) {
        $useSubscriptionText = false;
    } else {
        $trialTimeClass = "";
        $trialMessage = "**** YOUR SUBSCRIPTION HAS EXPIRED! ****";
        $showData = false;
        $showClass = "none";
    }
}
$watchlist = ticker_group_info::retrieveWatchlistArray(SHORT_TRADE);
$holdings = ticker_group_info::retrieveHoldingsArray(SHORT_TRADE);
?>


<!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">
<!--
-->
<meta http-equiv="refresh" content="300" > 
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
Exemple #4
0
					<tr class="table_head1">
						<th colspan="6" class="center"> Currently Held Positions</th>
					</tr>
					<tr class="table_head2">
						<th class="left"> Symbol </th>
						<th class="center" > Type </th>
						<th class="center"> Last </th>
						<th class="center"> Orig Price </th>
						<th class="center"> Orig Date </th>
						<th class="center"> Return </th>
						<th></th>
					</tr>
				</thead>
				<tbody>
<?php 
$holdings = ticker_group_info::retrieveHoldingsArray(LONG_TRADE, true);
$tablestate = "row_odd";
$borderTop = "borderTop";
foreach ($holdings as $holding) {
    $tt = intval($holding['holdings_tradetype']);
    //if ($tt == BREAKDOWN_TRADE) continue;
    $last = $holding['last'];
    $ttStr = GetTradeTypeConstantNameSingular($tt);
    $tablerowtype = strtolower($ttStr);
    $start = $holding['holdings_orig_price'];
    $return_percent = holdings::GetReturnPercent($tt, $last, $start, 0, 0, 0, 0, 0, 0);
    echo '<tr class="table_row2 ' . $tablestate . ' ' . $tablerowtype . '">';
    echo '<td class="left borderLeft ' . $borderTop . '">' . strtoupper($holding['ticker_symbol']) . '</td>';
    echo '<td class="center ' . $borderTop . '">' . $ttStr . '</td>';
    echo '<td class="center ' . $borderTop . '">' . number_format($holding['last'], 2) . '</td>';
    echo '<td class="center ' . $borderTop . '">' . number_format($start, 2) . '</td>';