<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Candle Pattern &#8211; The Financial Hacker</title>
	<atom:link href="https://financial-hacker.com/tag/candle-pattern/feed/" rel="self" type="application/rss+xml" />
	<link>https://financial-hacker.com</link>
	<description>A new view on algorithmic trading</description>
	<lastBuildDate>Fri, 25 Dec 2020 09:41:58 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://financial-hacker.com/wp-content/uploads/2017/07/cropped-mask-32x32.jpg</url>
	<title>Candle Pattern &#8211; The Financial Hacker</title>
	<link>https://financial-hacker.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Petra on Programming: Short-Term Candle Patterns</title>
		<link>https://financial-hacker.com/petra-on-programming-short-term-candle-patterns/</link>
					<comments>https://financial-hacker.com/petra-on-programming-short-term-candle-patterns/#comments</comments>
		
		<dc:creator><![CDATA[Petra Volkova]]></dc:creator>
		<pubDate>Wed, 23 Dec 2020 13:33:08 +0000</pubDate>
				<category><![CDATA[Indicators]]></category>
		<category><![CDATA[No Math]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Candle Pattern]]></category>
		<category><![CDATA[Indicator]]></category>
		<guid isPermaLink="false">https://financial-hacker.com/?p=3764</guid>

					<description><![CDATA[Japanese rice merchants invented candle patterns in the eighteenth century. Some traders believe that those patterns are still valid today. But alas, it seems no one yet got rich with them. Still, trading book authors are all the time praising patterns and inventing new ones, in hope to find one pattern that is really superior &#8230; <a href="https://financial-hacker.com/petra-on-programming-short-term-candle-patterns/" class="more-link">Continue reading<span class="screen-reader-text"> "Petra on Programming: Short-Term Candle Patterns"</span></a>]]></description>
										<content:encoded><![CDATA[<p><em>Japanese rice merchants invented candle patterns in the eighteenth century. Some traders believe that those patterns are still valid today. But alas, it seems no one yet got rich with them. Still, trading book authors are all the time praising patterns and inventing new ones, in hope to find one pattern that is really superior to randomly entering positions. In the Stocks &amp; Commodities January 2021 issue, <strong>Perry Kaufman</strong> presented several new candle patterns. Let&#8217;s repeat his pattern tests with major US stocks and indices, and with or without an additional trend filter.</em><span id="more-3764"></span></p>
<p>Kaufman&#8217;s 6 patterns were named Key Reversal, Island Reversal, Outside Days, Wide Ranging days, 3-Day Compression, and Gap opening. All are calculated from the previous 3 or 4 candles or price ranges. All but one are symmetric, meaning they deliver bullish and bearish signals. And because I&#8217;m a bit on the evil side, I added a 7th pattern that I just invented: TotalRandom.</p>
<p>Here&#8217;s how the patterns look as indicators in C:</p>
<pre class="prettyprint">// a higher high followed by a lower close. 
var cdlKeyReversal()
{
  if(priceHigh(0) &gt; priceHigh(1) &amp;&amp; priceLow(0) &lt; priceLow(1)) {
    if(priceClose(0) &lt; priceLow(1)) return -100; // sell
    if(priceClose(0) &gt; priceHigh(1)) return 100; // buy
  } 
  return 0;
}


// recent 3 days each have a true range smaller than the 4th previous day.
var cdl3DayCompression()
{
  vars TRs = series(TrueRange(),4);
  if(TRs[0] &lt; TRs[3] &amp;&amp; TRs[1] &lt; TRs[3] &amp;&amp; TRs[2] &lt; TRs[3])
    return 100;
  else
    return 0;
}

// a gap higher followed by a lower close, but not filling the gap. 
var cdlIslandReversal()
{
  if(priceLow(0) &gt; priceHigh(1) &amp;&amp; priceClose(0) &lt; priceOpen(0)) 
    return -100; // sell
  if(priceLow(1) &gt; priceHigh(0) &amp;&amp; priceClose(0) &gt; priceOpen(0)) 
    return 100; // buy
  else return 0;
}

// a higher high and a lower low, close in upper or lower 25% of the range.
var cdlOutsideDay()
{
  if(priceHigh(0) &gt; priceHigh(1) &amp;&amp; priceLow(0) &lt; priceLow(1)) {
    if(priceClose(0) &lt; 0.75*priceLow(0) + 0.25*priceHigh(0)) 
      return -100; // sell
    if(priceClose(0) &gt; 0.25*priceLow(0) + 0.75*priceHigh(0)) 
      return 100; // buy
  } 
  return 0; 
}

// same as outside days, but true range must exceed 1.5 × 20-day ATR
var cdlWideRangeDays()
{
  if(TrueRange() &gt; 1.5*ATR(20))
    return cdlOutsideDay();
  else
    return 0;
}

// gap must be larger than 0.5 × 20-day ATR.
var cdlGapOpening()
{
  var Ratio = (priceOpen(0) - priceClose(1))/ATR(20);
  if(Ratio &gt;= 0.5) return 100;
  if(Ratio &lt;= -0.5) return -100;
  return 0; 
}

// just enter a trade when you feel lucky
var cdlTotalRandom()
{
  int Pattern = random(100);
  if(Pattern &gt; 90) return 100;
  if(Pattern &lt; 10) return -100;
  return 0;
}</pre>
<p>Following the convention of the classic candle pattern indicators from the TA library, the pattern functions return +100 for a bullish pattern, -100 for a bearish pattern, and 0 for no pattern.</p>
<p>We&#8217;re now putting them to the  test. We want to trade the patterns with IWM, AAPL, AMZN, GE, WMT, and TSLA stocks, with SPY and QQQ index ETFs, and with and without an additional trend filter. For any detected pattern, we&#8217;re entering a long or short position depending on if it&#8217;s bullish or bearish. We always invest the same amount, regardless of the price of the stock. The position is closed after 1, 2, 3, 4, or 5 days. For any asset and any exit type we&#8217;ll export the number of trades and the total win and loss to a table in HTML format. That is convenient for me because I can paste it directly in this blog article.</p>
<p>The test script:</p>
<pre class="prettyprint">var pattern();

function run()
{
  pattern = cdlKeyReversal;
  bool WithTrend = 0;
  string Name = "KeyRev";

  BarPeriod = 1440;
  StartDate = 20100101; // TSLA went public in 2010
  EndDate = 2020; // test until 2020
  var Investment = 10000;
  TradesPerBar = 40; // 8 assets * 5 algos

  char File[100];
  if(is(EXITRUN)) {
    sprintf(File,"Log\\%s.htm",strf("%s%s",
      Name,ifelse(WithTrend,"WithTrend","NoTrend")));
    printf("\nStoring results in %s",File);
    file_write(File,strf("&lt;p&gt;%s:&lt;/p&gt;\n&lt;table&gt;&lt;tr&gt;",File),0);
// write the table header
    file_append(File,"&lt;td&gt;Asset&lt;/td&gt;",0);
    file_append(File,"&lt;td&gt;Long/Short&lt;/td&gt;",0);
    file_append(File,"&lt;td&gt;Day 1&lt;/td&gt;",0);
    file_append(File,"&lt;td&gt;Day 2&lt;/td&gt;",0);
    file_append(File,"&lt;td&gt;Day 3&lt;/td&gt;",0);
    file_append(File,"&lt;td&gt;Day 4&lt;/td&gt;",0);
    file_append(File,"&lt;td&gt;Day 5&lt;/td&gt;&lt;/tr&gt;",0);
  }

  assetAdd("SPY","STOOQ:*.US"); // load price history from Stooq
  assetAdd("QQQ","STOOQ:*.US");
  assetAdd("IWM","STOOQ:*.US");
  assetAdd("AAPL","STOOQ:*.US");
  assetAdd("AMZN","STOOQ:*.US");
  assetAdd("GE","STOOQ:*.US");
  assetAdd("WMT","STOOQ:*.US");
  assetAdd("TSLA","STOOQ:*.US");

  while(asset(loop("SPY","QQQ","IWM","AAPL","AMZN","GE","WMT","TSLA"))) {
  vars Trend = series(SMA(seriesC(),80));
  while(algo(loop("Day1","Day2","Day3","Day4","Day5"))) {

  Lots = Investment/priceClose();
  LifeTime = Itor2+1; // life time in days
  int Signal = pattern();
  if(Signal &gt; 0 &amp;&amp; (!WithTrend || rising(Trend)))
    enterLong();
  else if(Signal &lt; 0 &amp;&amp; (!WithTrend || falling(Trend)))
    enterShort();
  if(is(EXITRUN)) {
    if(Algo == "Day1") // first loop run
      file_append(File,strf("\n&lt;tr&gt;&lt;td&gt;%s&lt;/td&gt;&lt;td&gt;%i/%i&lt;/td&gt;",
        Asset,NumWinLong+NumLossLong,NumWinShort+NumLossShort),0);
    string Color = ifelse(WinLong-LossLong+WinShort-LossShort &gt; 0,
      "bgcolor=\"lime\"","bgcolor=\"red\"");
    file_append(File,strf("&lt;td %s&gt;%.0f/%.0f&lt;/td&gt;",
      Color,WinLong-LossLong,WinShort-LossShort),0);
    if(Algo == "Day5")
      file_append(File,"&lt;/tr&gt;",0);
  }

  }} // loops
  if(is(EXITRUN)) {
    file_append(File,"&lt;/table&gt;",0);
    file_append(File,strf("&lt;p&gt;Total Profit: %.0f (%.0f%%)&lt;/p&gt;",
      WinTotal-LossTotal,100*(WinTotal-LossTotal)/Investment),0);
  }
}
</pre>
<p>Some explanations about the code. At the begin of the <strong>run()</strong> function the pattern and the trend mode are set up. For convenience we&#8217;re using a function pointer that is set to the pattern function to be tested. Afterwards, when it&#8217;s the last run, the table header is written into the HTM file. A char array (<strong>File</strong>) and the <strong>sprintf()</strong> function is used for the file name instead of the more convenient <strong>strf()</strong>, because we need to keep the file name for later writing into the table.</p>
<p>The test uses two nested loops, first for selecting the stocks, second for selecting the trade life time to get the results from a 1-day trade up to a 5-days trade. The predefined <strong>Itor2</strong> variable is the iterator of the second loop and runs from 0 to 4, so we just use it to set the LifeTime variable for the subsequent trade. The results are printed in the EXITRUN at the last day of the simulation.</p>
<p>The numbers in the tables are the results from long/short trades. A winning pattern is displayed in green, a losing pattern in red. Transaction costs are considered.</p>
<div data-tadv-p="keep">
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">KeyRev, No Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">54/73</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">379/-74</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">787/-1126</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1276/-1753</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1203/-2587</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">986/-3444</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">66/80</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1028/-2222</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1842/-1958</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2042/-2242</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2008/-2681</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1179/-4133</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">63/84</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19/-300</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">756/-488</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1298/-502</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1386/-900</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2063/-2429</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">59/61</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1346/-7827</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-947/-9158</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-559/-13563</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1237/-11751</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">356/-11040</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">69/58</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">142/-1259</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2013/-2446</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1252/-2293</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2208/-4940</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3134/-7322</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">66/61</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4510/-2948</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-7995/-6381</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-8232/-6583</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-7267/-8451</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-7646/-10219</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">62/69</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-337/-177</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">228/-100</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1709/-821</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1612/-128</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1472/-983</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">65/52</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5480/2377</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11321/814</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11299/-206</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9784/-1291</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5640/-5471</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -103182 (-1032%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">KeyRev, With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">44/13</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">208/472</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">276/260</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">744/198</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">96/-236</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">345/-855</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">53/12</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">448/-490</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1350/-427</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1763/-488</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1806/-1524</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">985/-1860</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">43/22</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">563/557</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">831/-150</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">81/-773</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">225/-1174</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-55/-2342</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">46/10</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-842/-475</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">55/-926</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">955/-1562</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-149/-1882</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">603/-2556</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">58/16</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">314/-661</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1254/-897</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-727/-566</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-680/-1734</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-27/-1628</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">36/29</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1967/-645</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2990/-2871</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1527/-3644</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-262/-4542</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1106/-6970</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">42/26</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-438/215</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-379/676</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">610/-9</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">312/706</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1050/-76</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">41/17</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5530/-1068</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11484/-1301</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10308/-3273</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10240/-3127</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7723/-3471</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -2109 (-21%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Compression, No Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">699/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6795/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11511/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">17027/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">18998/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">23941/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">694/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13941/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">22562/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">28398/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">33369/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">35845/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">719/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9964/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15613/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19472/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">22317/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">22088/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">740/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-32636/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-19330/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-12002/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2776/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2230/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">733/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">25188/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">37365/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">49592/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">52783/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">62537/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">728/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-48784/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-45754/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-40932/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-41726/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-44097/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">743/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4060/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9378/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19676/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19954/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19714/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">701/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">34085/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">39053/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">50163/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">74096/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">93178/0</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: 606857 (6069%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Compression With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">561/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5212/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8658/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9792/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10530/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12164/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">571/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10895/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">18052/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">20473/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">24411/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">26917/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">525/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6363/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9300/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9143/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">14086/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15742/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">547/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-20085/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4174/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1241/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5801/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5899/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">557/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19877/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">28991/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">34042/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">32737/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">38519/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">385/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-24387/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-22127/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-16754/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-16487/0</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-19714/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">501/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4228/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9813/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">18114/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">21492/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">20353/0</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">443/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">29320/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">34921/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">42957/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">58827/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">66305/0</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: 548966 (5490%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Island, No Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19/32</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">547/696</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">540/314</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-262/1357</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-282/1186</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-517/133</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">24/26</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">300/-283</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-684/-452</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1190/360</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2194/-65</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1274/-920</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10/27</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">921/-15</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1587/-112</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1610/1583</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1936/918</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1698/924</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">30/33</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2304/-1850</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2055/-2128</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3958/-2921</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4046/-3311</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-5085/-3696</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">20/25</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">498/-1995</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">454/-1575</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-28/-1469</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-150/-2013</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-214/-2048</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">20/28</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">24/-1885</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1181/-221</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-719/1343</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2468/106</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">682/-1594</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">23/17</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1099/972</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2056/605</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2508/697</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3300/1188</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3094/782</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">25/28</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1029/-5539</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1732/-7774</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3167/-5777</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1278/-6200</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2787/-10091</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -47171 (-472%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Island With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11/5</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">348/391</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-19/444</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">104/841</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-69/910</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">133/411</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15/4</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-43/376</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-274/407</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1069/948</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1588/1139</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1544/557</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5/7</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">47/173</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">461/234</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">562/1312</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">539/1506</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">643/1364</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">24/4</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1095/-337</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1625/104</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3931/26</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4541/175</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-5013/115</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12/3</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">90/-377</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1049/-311</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1364/-3</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2070/214</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1720/-32</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10/15</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-407/-829</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2018/34</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2323/1562</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1673/767</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2358/-155</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13/3</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">813/58</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1138/-257</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1269/185</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1484/365</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1389/-15</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13/8</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-12/-1216</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1134/-1731</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1574/-1913</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-41/-2357</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-5443/-2904</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -27380 (-274%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Outside, No Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">77/77</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">888/-1105</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1410/-1913</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2295/-2788</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1849/-3487</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1555/-3798</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">86/86</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">919/-1641</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1510/-2001</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1638/-1562</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2132/-2919</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1198/-3920</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">89/83</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-17/-740</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">205/216</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15/155</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">885/-739</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">419/-1453</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">65/65</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2441/-3824</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3324/-5405</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4000/-7484</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4439/-7002</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6148/-7471</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">85/68</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">489/-561</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2895/-1176</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2629/-2024</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2498/-3505</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4767/-6733</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">74/73</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-239/-4137</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-2582/-6322</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3096/-7272</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3567/-8987</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3550/-11511</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">72/84</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-491/1036</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">461/361</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1678/-514</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1991/-700</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">879/-2724</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">74/59</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6927/1382</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11200/0</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12701/-1546</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11173/-5879</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6769/-6498</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -35405 (-354%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Outside With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">63/13</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">664/123</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">977/-243</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1430/-396</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">596/-887</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">830/-1168</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">69/11</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">214/-123</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">371/-70</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">481/-8</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">919/-998</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-43/-1275</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">59/23</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">918/-59</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1629/-481</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1346/-1381</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1447/-2182</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1339/-2496</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">51/11</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2210/-377</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3673/-635</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4927/-799</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5244/-1175</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6062/-2042</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">67/14</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">979/-563</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1886/-906</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">89/-377</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">316/-1515</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1795/-1141</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">42/34</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">677/-2682</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-353/-4345</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1801/-5183</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1663/-6603</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-732/-10460</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">49/31</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-746/1081</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-482/1016</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1165/267</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">644/244</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1183/-976</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">49/23</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6834/-1174</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11638/333</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10403/-871</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10899/-1795</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8143/-2696</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: 38018 (380%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Range, NoTrend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">18/27</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">205/-520</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">206/-1392</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">179/-1244</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-10/-1337</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-254/-2635</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">18/30</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-64/-214</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">274/-741</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">412/161</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">839/72</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">558/-1528</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19/25</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-392/-382</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-873/-88</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-711/1284</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1083/1207</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-886/456</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9/13</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">404/-293</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">318/-951</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1193/-420</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1187/-576</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">980/-1500</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13/17</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1100/-1315</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1785/-843</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">938/612</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1702/526</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2577/-667</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">17/23</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1281/-181</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1833/-2128</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3415/-2288</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4833/-1910</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-5257/-3787</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12/14</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-142/399</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-433/915</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1078/801</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1232/998</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1746/697</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">21/17</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">849/33</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3714/-1998</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3761/-3474</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2735/-7781</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">386/-7093</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -38348 (-383%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Range With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15/4</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-245/51</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-193/283</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11/413</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-409/105</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-522/-507</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13/5</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-585/-99</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-374/151</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-293/514</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-138/86</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-539/-216</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11/5</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">393/-230</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">304/-222</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">212/-246</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-74/-9</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">77/-157</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8/2</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">517/295</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">254/21</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1049/448</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1092/335</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">840/103</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11/4</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-34/-1248</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">252/-1603</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-759/-364</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-603/-1203</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-141/-1438</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9/10</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">906/319</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">496/-1302</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">389/-1897</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-343/-1786</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1874/-3716</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6/4</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-262/154</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-545/604</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-328/404</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-704/424</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-558/61</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13/3</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">386/-191</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4201/309</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1815/-35</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1290/-206</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1/-597</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -7235 (-72%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Gap, No Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">349/281</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1843/-2647</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5590/-3626</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7139/-5568</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8563/-8215</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9461/-9622</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">307/249</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-436/-2679</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">947/-5712</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3275/-8531</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7805/-12092</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9842/-13431</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">234/209</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2551/-84</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3639/-418</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5118/-2119</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6055/-3499</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9321/-5574</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">270/192</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6959/-1638</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7870/-5676</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9847/-7260</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13533/-5428</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">16900/-8041</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">195/135</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1427/-2939</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2777/-4051</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4995/-4568</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8998/-6259</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13534/-6271</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">241/195</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">112/371</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4831/5254</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3762/3531</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1410/5945</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1695/4319</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">125/180</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1507/-7044</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">329/-7500</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">448/-6792</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">24/-6722</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">876/-7916</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">197/154</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">21127/-6332</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">36571/-12591</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">46932/-11143</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">58537/-9760</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">71862/-9286</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: 192941 (1929%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Gap With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">282/82</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2592/-488</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5160/166</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7869/-2794</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8352/-3565</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8935/-5882</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">249/68</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-718/-2463</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1388/-5109</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">91/-9515</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4466/-11318</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5774/-12975</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">163/82</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2456/617</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3057/2235</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">5188/917</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6955/2870</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8950/2094</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">219/60</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3901/-978</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1837/-2601</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2008/-5555</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6634/-5316</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10460/-6654</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">169/34</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1685/-2236</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1130/-5903</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-397/-6310</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3148/-7550</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6830/-6188</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">138/91</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">969/1315</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1600/6072</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-679/5257</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">748/5819</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3337/2798</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">90/79</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-465/-1144</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">174/-456</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-93/-1071</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-760/-1130</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">135/-2431</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">151/62</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">16146/-4006</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">30939/-3936</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">42024/-3501</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">54105/-1597</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">70309/-915</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: 221201 (2212%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Random, NoTrend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">264/245</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2161/-2628</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3479/-4002</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4118/-3867</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8184/-5686</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3223/-7478</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">274/256</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6391/-6434</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4669/-3082</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">6549/-7386</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4095/-2891</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">11244/-6941</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">247/227</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4546/-2869</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7429/114</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4610/1211</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10551/1705</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8259/-6920</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">265/248</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2130/-9670</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2688/-4795</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12171/-6907</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">17141/-9278</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12451/-25170</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">239/215</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2970/-4240</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3796/-6628</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4579/-8738</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7889/-6822</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10022/-11536</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">254/259</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1016/-4440</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1860/-3617</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3682/-2421</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">10588/552</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-8794/-12820</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">258/260</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">670/-2260</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2830/-459</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-55/-2294</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3118/-5824</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4529/-3994</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">209/250</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8366/-9571</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-4906/-32877</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">17063/-33473</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">19937/-13389</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8788/-53044</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: -115840 (-1158%)</span></p>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Random With Trend:</span></p>
<table>
<tbody>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Asset</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Long/Short</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 1</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 2</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 3</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 4</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Day 5</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">SPY</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">189/55</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2273/-386</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">597/-600</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2753/-747</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1864/883</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-1143/-3324</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">QQQ</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">194/53</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2461/-2976</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3675/-947</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1360/-3750</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7607/-7892</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">12958/-2974</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">IWM</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">182/85</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3478/2507</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">4262/-969</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3827/-2263</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">902/-3130</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8135/-4938</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AAPL</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">183/70</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">7704/-2776</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9537/-3962</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">8168/-759</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13781/-5973</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13117/-2048</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">AMZN</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">174/70</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1795/-4108</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-362/-2203</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">3809/-5626</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">9710/-8699</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">16006/-8834</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">GE</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">125/109</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1187/3311</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3939/-1684</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">264/2732</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-3265/4335</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">425/-8270</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">WMT</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">174/91</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1962/132</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">2008/-1731</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">-946/-285</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1927/1556</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">1790/-5483</span></td>
</tr>
<tr>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">TSLA</span></td>
<td><span style="font-family: 'andale mono', monospace; font-size: 8pt;">148/92</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13794/-7286</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">13013/-3592</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15655/-6054</span></td>
<td bgcolor="lime"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15511/-10460</span></td>
<td bgcolor="red"><span style="font-family: 'andale mono', monospace; font-size: 8pt;">15264/-18641</span></td>
</tr>
</tbody>
</table>
<p><span style="font-family: 'andale mono', monospace; font-size: 8pt;">Total Profit: 85014 (850%)</span></p>
<p>We can see that the trend filter always improves the results, which indicates some momentum in the stock markets. Aside from that, patterns show no real advantage over random trading. But wait, there&#8217;s an exception: the Compression pattern looks extraordinarily successful. Have we finally found the one pattern that beats randomness?</p>
<p>Unfortunately, a closer look reveals the real reason. The compression pattern opens only long positions, and since most stocks are bullish in the long term, a positive result is to be expected. If you modify the random pattern function so that it only opens long positions, you&#8217;ll get the same effect. Randomly opening long positions beats hands down all symmetric candle patterns. So it seems that trading with candle patterns, no matter old or new, still requires strong faith &#8211; and some disposable money.</p>
<p>The pattern functions and the test script can be downloaded from the 2020 script repository.</p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://financial-hacker.com/petra-on-programming-short-term-candle-patterns/feed/</wfw:commentRss>
			<slash:comments>14</slash:comments>
		
		
			</item>
	</channel>
</rss>
