<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
    <id>https://davemabe.com/feed/atom</id>
    <title type="text">Dave Mabe</title>
    <subtitle type="text">Dave Mabe teaches systems traders how to make more money with their trading strategies.</subtitle>
    <link xmlns="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="https://davemabe.com/feed/atom"/>
    <updated>2026-04-08T22:55:40-04:00</updated>
    <generator uri="https://github.com/mitydigital/feedamic" version="3.0.6">Feedamic: the Atom and RSS Feed generator for Statamic</generator>
    <entry>
        <title type="text">Slippage Over Time</title>
        <link href="https://davemabe.com/slippage-over-time"/>
        <id>https://davemabe.com/slippage-over-time</id>
        <published>2026-04-08T15:30:00-04:00</published>
        <updated>2026-04-08T07:07:51-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;In &lt;a href=&quot;https://davemabe.com/measuring-slippage&quot;&gt;yesterday&amp;#039;s post&lt;/a&gt;, I showed how you can compute slippage on a trade-by-trade basis and then sum it up for the entire day.&lt;/p&gt;&lt;p&gt;The next step is to view slippage in aggregate over time.&lt;/p&gt;&lt;p&gt;The ability to use your backtest as a reference is extremely valuable.&lt;/p&gt;&lt;p&gt;Your measure of success goes from &amp;quot;did I make money today?&amp;quot; to &amp;quot;how well did I follow my plan?&amp;quot;&lt;/p&gt;&lt;p&gt;When you have a backtest going back years and a nice, smooth equity curve, the anxiety of any particular trade or day melts away.&lt;/p&gt;&lt;p&gt;The way you get confidence from this point is by gathering proof that the live trades won&amp;#039;t be too far off the backtest.&lt;/p&gt;&lt;p&gt;And when you can generate true confidence, you can scale your strategy over time.&lt;/p&gt;&lt;p&gt;Just like any particular trade isn&amp;#039;t going to make or break your strategy, the slippage from any particular trading day isn&amp;#039;t the full picture.&lt;/p&gt;&lt;p&gt;But start stacking several days together and looking at slippage in aggregate, and it starts to become clear where the real problems are.&lt;/p&gt;&lt;p&gt;Then you can devote resources to things that will move the needle for your strategy.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a slippage TODO list you can use to put this into action:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Generate a list of your live executions by strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Run your backtest to generate a list of trades for the days your executions cover&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Create a Python script to compare the two, categorizing the slippage into 3 buckets: entry, exit, and missed trades/partial fills&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The output should be an easily viewable report showing:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Slippage per trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Aggregate slippage across all the trades&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Once you have this, you can start to address each slippage type.&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll discuss how to tackle the most important and most common type of slippage.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with MabeKit&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Measuring Slippage</title>
        <link href="https://davemabe.com/measuring-slippage"/>
        <id>https://davemabe.com/measuring-slippage</id>
        <published>2026-04-07T15:30:00-04:00</published>
        <updated>2026-04-07T06:18:30-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;In the previous email on &lt;a href=&quot;https://davemabe.com/how-much-slippage-is-too-much&quot;&gt;determining how much slippage&lt;/a&gt; is too much for a strategy, I shared a way to pre-plan your slippage limit, so you have a benchmark to compare against.&lt;/p&gt;&lt;p&gt;Now, let&amp;#039;s go over measuring slippage from your live trades.&lt;/p&gt;&lt;p&gt;Remember, there are three types of slippage (well, &lt;a href=&quot;https://davemabe.com/all-about-slippage&quot;&gt;four really&lt;/a&gt;, but three are the bad kind):&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Entry slippage - you got a worse price than your backtest on your entry order&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Exit slippage - you got a worse price than your backtest on your exit order&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Missed trades/partial fills - you expected to get X shares, but you only got some percent of X&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;We need to compute all three of these to get an accurate measure of the shortfall between your live trading and your backtest.&lt;/p&gt;&lt;p&gt;In my daily review, I have some automation that runs a backtest for the strategy and then compares the fill prices with the backtest.&lt;/p&gt;&lt;p&gt;The Trade Client that comes with MabeKit makes this easy by automatically creating a file with your executions by strategy.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you had one long trade where your ideal entry price was &lt;code&gt;50.00&lt;/code&gt;, but your fill was &lt;code&gt;50.05&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Your slippage is &lt;code&gt;50.05 - 50.00 = 0.05&lt;/code&gt; per share multiplied by the number of shares.&lt;/p&gt;&lt;p&gt;Now, let&amp;#039;s assume you have another signal, but you got no fill on the trade.  How do you compute the slippage there?&lt;/p&gt;&lt;p&gt;Well, it needs to come from the backtest - assuming you got the trade at full size, how much would you have made?&lt;/p&gt;&lt;p&gt;Add that to the missed trades bucket.&lt;/p&gt;&lt;p&gt;Exit slippage is computed in the same way as entry slippage.&lt;/p&gt;&lt;p&gt;Now you have three buckets of slippage.&lt;/p&gt;&lt;p&gt;But there&amp;#039;s one important step to compare apples to apples with your backtest.&lt;/p&gt;&lt;p&gt;You need to normalize the slippage to account for any sizing differences with your backtest.&lt;/p&gt;&lt;p&gt;When you increase your size in live trading, you don&amp;#039;t want to have to change the sizing in your backtest to reflect it.&lt;/p&gt;&lt;p&gt;All my backtests have a standard, easy-to-compute sizing that stays constant.&lt;/p&gt;&lt;p&gt;And then I normalize my live trading to the backtest sizing for comparison.&lt;/p&gt;&lt;p&gt;Now you should have your total slippage for a given trading day, normalized to a number you can compare to the benchmark from your backtest.&lt;/p&gt;&lt;p&gt;Next time, we&amp;#039;ll discuss how to track this over time to prioritize how to address slippage.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &amp;quot;The process of becoming a more systematic trader honestly mirrors the journey of becoming a trader at all—lots of ups and downs, frustration, second-guessing, and moments where you want to quit. And then every once in a while, there’s a real moment of clarity and forward progress. Using the AFL code generator in MabeKit feels like one of those moments.&amp;quot; - Mike A.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=afl_testimonial&quot;&gt;Get Instant Access to the MabeKit AFL Generator&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Interview with Trent Smalley of DTN/IQFeed</title>
        <link href="https://davemabe.com/interview-with-trent-smalley-of-dtniqfeed"/>
        <id>https://davemabe.com/interview-with-trent-smalley-of-dtniqfeed</id>
        <published>2026-04-06T15:30:00-04:00</published>
        <updated>2026-04-06T07:40:18-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we interview Trent Smalley with DTN and IQFeed.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Why it makes sense for traders to pay for market data when brokers offer it for free&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Where bad ticks you see in your charts actually come from&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What happens to market data before it hits your feed&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;When you know you&amp;#039;re ready to upgrade to a high quality feed&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/interview-with-trent-smalley-from-dtn-iqfeed&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you ready to take your trading to the next level? Learn the right way to create your own trading strategies with MabeKit coaching. Here&amp;#039;s what a MabeKit trader I&amp;#039;m coaching recently told me: &amp;quot;I wasn&amp;#039;t prepared for this level of consistency in new equity highs in curves from my strategies.&amp;quot; - Ryan&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=coaching&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Much Slippage is Too Much?</title>
        <link href="https://davemabe.com/how-much-slippage-is-too-much"/>
        <id>https://davemabe.com/how-much-slippage-is-too-much</id>
        <published>2026-04-03T15:30:00-04:00</published>
        <updated>2026-04-03T08:26:05-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;That&amp;#039;s the question you should be asking yourself as you create strategies.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how you determine how much is too much.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say in your backtest, your average profit per trade is $100.&lt;/p&gt;&lt;p&gt;Remember, this $100 of average profit assumes &lt;em&gt;ideal execution&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;That is, you don&amp;#039;t miss any trades, and you get your full size at perfect prices.&lt;/p&gt;&lt;p&gt;Of course, this won&amp;#039;t happen in reality, but it serves as the goal to achieve with every trade the strategy makes.&lt;/p&gt;&lt;p&gt;When you sum up all slippage over a period of time and convert it to average slippage per trade across the entire backtest, at what level would the strategy be not worth trading?&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you summed up all slippage, and it accounted for $25 per trade.  You&amp;#039;re left with $75 average profit per trade.&lt;/p&gt;&lt;p&gt;What would the equity curve look like if every trade had $25 less in profit?&lt;/p&gt;&lt;p&gt;It would look worse - but how much worse?&lt;/p&gt;&lt;p&gt;Now imagine slippage sums up to $50 per trade, on average.&lt;/p&gt;&lt;p&gt;The curve will look even worse.&lt;/p&gt;&lt;p&gt;Continue until you determine your cutoff - what level of slippage you&amp;#039;d need to see such that the strategy wouldn&amp;#039;t be worth trading.&lt;/p&gt;&lt;p&gt;Now you have a pre-planned benchmark to compare against when you start trading the strategy live.&lt;/p&gt;&lt;p&gt;Next time I&amp;#039;ll discuss measuring slippage in your live trades so you can compare...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;WEBINAR ALERT&lt;/strong&gt; - A few weeks ago, I gave a presentation for SMB Capital on the Bionic Trader webinar titled &lt;strong&gt;How to Avoid Curve Fitting&lt;/strong&gt;.  In case you missed that, Interactive Brokers has invited me to give the talk on April 16th at 2pm ET.  Registration is below.  I hope to see you there:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.interactivebrokers.com/campus/webinars/how-to-avoid-curve-fitting-in-a-trading-strategy/?blst=NL-Wnr_cps_webnrBtn&quot;&gt;REGISTER FOR THE WEBINAR&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Estimating Slippage in a Backtest</title>
        <link href="https://davemabe.com/estimating-slippage-in-a-backtest"/>
        <id>https://davemabe.com/estimating-slippage-in-a-backtest</id>
        <published>2026-04-02T15:30:00-04:00</published>
        <updated>2026-04-02T07:11:58-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;Most systematic traders overcomplicate things by trying to model a slippage estimation for every trade in their backtest.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thought process:&lt;/p&gt;&lt;p&gt;Since backtesting is theoretical, you can engineer a solution that makes it reflect the reality of live trading.&lt;/p&gt;&lt;p&gt;Some trades will have more slippage than others, so just add some built-in slippage into your backtest based on some &amp;quot;thickness&amp;quot; criteria like volume, average volume, or something else.&lt;/p&gt;&lt;p&gt;Add level one data (L1) to get more &amp;quot;accuracy.&amp;quot;&lt;/p&gt;&lt;p&gt;But if L1 data can make it more accurate, then L2 data can make it even better!&lt;/p&gt;&lt;p&gt;I&amp;#039;m sure your overeager LLM will be happy to help you overengineer a backtest that makes all sorts of crazy attempts to reflect live trades.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;I think this is a total waste of time.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;(Especially as you size up your live trades and now your slippage estimate in your backtest needs to adjust.)&lt;/p&gt;&lt;p&gt;It&amp;#039;s ok if your backtest reflects perfect execution, even though your live trading will never measure up.&lt;/p&gt;&lt;p&gt;In fact, I &lt;em&gt;prefer&lt;/em&gt; my backtests to simulate ideal executions.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why.&lt;/p&gt;&lt;p&gt;Because it provides an ideal baseline - a goal for my trade execution to shoot for.&lt;/p&gt;&lt;p&gt;Once you give in to the fact that your live trading isn&amp;#039;t going to measure up to the backtest, you can think about the problem more clearly.&lt;/p&gt;&lt;p&gt;The question isn&amp;#039;t &lt;strong&gt;whether your live trading will measure up&lt;/strong&gt;, but &lt;strong&gt;how big the difference will be&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Any attempts to model slippage in your backtest just muddy the waters and make that question &lt;strong&gt;harder to answer&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;The real question you&amp;#039;re trying to answer is:&lt;/p&gt;&lt;p&gt;What level of slippage would be needed to make this strategy unprofitable to trade?&lt;/p&gt;&lt;p&gt;I&amp;#039;ll break that down tomorrow...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Wish you could backtest your ideas - without spending months learning to code? Run your first backtest in an afternoon using my &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;Amibroker AFL Course&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">All About Slippage</title>
        <link href="https://davemabe.com/all-about-slippage"/>
        <id>https://davemabe.com/all-about-slippage</id>
        <published>2026-04-01T15:30:00-04:00</published>
        <updated>2026-04-01T08:40:56-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;Over the next few days, I&amp;#039;ll be focusing on one of the most important and misunderstood topics among systematic traders: &lt;strong&gt;SLIPPAGE&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;When I say slippage, this is the definition I&amp;#039;m referring to:&lt;/p&gt;&lt;p&gt;Slippage is the difference between your ideal fills in your backtest and the actual fills you get trading live.&lt;/p&gt;&lt;p&gt;Why is it so important?&lt;/p&gt;&lt;p&gt;That&amp;#039;s easy - for many strategies, slippage will be the main reason it doesn&amp;#039;t live up to the backtest.&lt;/p&gt;&lt;p&gt;The more you understand about slippage, the more you can prepare and design strategies that are resilient to it.&lt;/p&gt;&lt;p&gt;The first thing to consider is the different types of slippage.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Entry slippage - you got a worse price than your backtest on your entry order&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Exit slippage - you got a worse price than your backtest on your exit order&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Missed trades/partial fills - you expected to get X shares, but you only got some percent of X&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Positive slippage - you get a &lt;em&gt;better&lt;/em&gt; price than your backtest (my favorite kind lol), rare and mostly seen on target orders&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;All of these will wear away at your trading strategy (except the last one!).&lt;/p&gt;&lt;p&gt;It can be frustrating, but this is an unavoidable part of trading that you simply have to get used to.&lt;/p&gt;&lt;p&gt;Over the coming days, I&amp;#039;ll address measuring slippage, how to include it (if at all) in a backtest, and the most important thing: what you can actually do about it.&lt;/p&gt;&lt;p&gt;More soon...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money? Create your own in minutes, not months, with MabeKit&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategy Creation Workflow Submitted from MabeKit User</title>
        <link href="https://davemabe.com/strategy-creation-workflow-submitted-from-mabekit-user"/>
        <id>https://davemabe.com/strategy-creation-workflow-submitted-from-mabekit-user</id>
        <published>2026-03-31T15:30:00-04:00</published>
        <updated>2026-03-31T17:18:04-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;MabeKit user Aben created an excellent diagram for the entire workflow of creating a systematic trading strategy.&lt;/p&gt;&lt;p&gt;Steps highlighted include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Getting the initial backtesting infrastructure ready&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Optimizing the strategy using the Cruncher&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Refining the strategy further (inspecting trades, further backtesting, more crunching)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Paper trading using the MK Trade Client&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Transitioning to real capital and scaling up&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Here&amp;#039;s the diagram:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/systematic-trading-road-map_dave_v1.1.png&quot;&gt;&lt;/p&gt;&lt;p&gt;It&amp;#039;s quite good.&lt;/p&gt;&lt;p&gt;Take a look and let me know what you think.  Any missing steps?&lt;/p&gt;&lt;p&gt;(BTW, Aben tells me he created this using MindManager software - very cool.)&lt;/p&gt;&lt;p&gt;Thanks for sharing, Aben!  With work like this, I&amp;#039;m confident we&amp;#039;ll be sharing a success story here soon.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you sick of second-guessing yourself every time you click buy or sell? Trade with conviction using MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=second_guess&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using AI Agents for Backtesting Part 3</title>
        <link href="https://davemabe.com/using-ai-agents-for-backtesting-part-3"/>
        <id>https://davemabe.com/using-ai-agents-for-backtesting-part-3</id>
        <published>2026-03-30T15:30:00-04:00</published>
        <updated>2026-03-30T06:56:08-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we continue the discussion of using AI agents for strategy creation gruntwork.&lt;/p&gt;&lt;p&gt;Topics discussed:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Delegation skills are important - the more specific, the better&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How my approach differs from Michael&amp;#039;s regarding Claude use&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to implement &amp;quot;unit tests&amp;quot; for your trading strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Developers always want to build - here&amp;#039;s why you shouldn&amp;#039;t&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Starting points for developers&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;p&gt;I think this was the best one yet on AI.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/using-ai-agents-for-strategies-part-3&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you ready to take your trading to the next level? Learn the right way to create your own trading strategies with MabeKit coaching. Here&amp;#039;s what a MabeKit trader I&amp;#039;m coaching recently told me: &amp;quot;I wasn&amp;#039;t prepared for this level of consistency in new equity highs in curves from my strategies.&amp;quot; - Ryan&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=coaching&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How can I stop holding my losers too long and selling my winners too quickly?&quot;</title>
        <link href="https://davemabe.com/how-can-i-stop-holding-my-losers-too-long-and-selling-my-winners-too-quickly"/>
        <id>https://davemabe.com/how-can-i-stop-holding-my-losers-too-long-and-selling-my-winners-too-quickly</id>
        <published>2026-03-27T15:30:00-04:00</published>
        <updated>2026-03-31T06:50:44-04:00</updated>
        <summary type="text"/>
        <content type="html">&lt;p&gt;Here&amp;#039;s an email I received from Omar T. (&lt;em&gt;name used with permission, edited lightly for clarity&lt;/em&gt;):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Omar T:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I seem to hold my losers and sell my winners too quickly. Sometimes I look back and I could have made a lot more profit, or could’ve lost if I held the trade longer.&lt;/p&gt;&lt;p&gt;I just feel like I understand the market and reading price action, but I seem to find myself chasing into a trade.&lt;/p&gt;&lt;p&gt;It’s a hard habit to break. I know I’ll never catch the bottom or top of every trade, but I’d like to have better entry points. So that’s one thing I’m working on changing. I’m so fascinated with the stock market, and I’ve learned a lot during this journey. I’m just trying to keep positive and not give up.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a classic situation for traders just starting.&lt;/p&gt;&lt;p&gt;You have a decent plan for getting into trades, but then expect some magical intuition to eventually form so you can manage each trade to its optimal conclusion.&lt;/p&gt;&lt;p&gt;When trying to &amp;quot;understand the market and read price action,&amp;quot; most traders look at way too much data and try to draw conclusions in real-time.&lt;/p&gt;&lt;p&gt;Add to that the psychology of money and the bouncing P&amp;amp;L on your trading platform, and you have a recipe for mediocrity.&lt;/p&gt;&lt;p&gt;I&amp;#039;m convinced humans are hard-wired to make the least profitable decision when they&amp;#039;re in a trade without a well-defined plan.&lt;/p&gt;&lt;p&gt;And a plan is not hoping to &amp;quot;get better at reading price action.&amp;quot;&lt;/p&gt;&lt;p&gt;Step back and think about how you could create the confidence to make the right decision during a trade.&lt;/p&gt;&lt;p&gt;It&amp;#039;s impossible to formulate a plan that will be optimal for every &lt;em&gt;specific trade&lt;/em&gt; you&amp;#039;re in.&lt;/p&gt;&lt;p&gt;But you can create a plan that&amp;#039;s optimal across similar trades &lt;em&gt;in aggregate&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;And you won&amp;#039;t care about &amp;quot;reading the tea leaves&amp;quot; to decide how to exit a trade.&lt;/p&gt;&lt;p&gt;Why?  Because any individual trade won&amp;#039;t matter that much.&lt;/p&gt;&lt;p&gt;Any given trade might look like you completely bungled it, but that&amp;#039;s irrelevant.&lt;/p&gt;&lt;p&gt;Confidence comes from knowing you&amp;#039;re doing the right thing across a large number of trades.&lt;/p&gt;&lt;p&gt;When you start answering that question, you can see a path to trading with larger and larger size over time.&lt;/p&gt;&lt;p&gt;Without that, you&amp;#039;ll never move beyond the cycle of trading a strategy, having a drawdown, getting frustrated, and moving on to another strategy.&lt;/p&gt;&lt;p&gt;Thanks for the question, Omar!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;What if some years in my backtest have lots of trades?&quot;</title>
        <link href="https://davemabe.com/what-if-some-years-in-my-backtest-have-lots-of-trades"/>
        <id>https://davemabe.com/what-if-some-years-in-my-backtest-have-lots-of-trades</id>
        <published>2026-03-26T15:30:00-04:00</published>
        <updated>2026-03-26T08:21:31-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from Andrew K. (name used with permission, lightly edited for clarity).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Andrew K:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve created a pullback strategy for swing trading. My main problem is that I keep facing some years where many, many trades occur relative to other years in the backtest. If I allow all trades to get a large sample, a majority of them are during these years.&lt;/p&gt;&lt;p&gt;When I optimize, this leads the filters to focus more on the years with more trades.&lt;/p&gt;&lt;p&gt;Essentially, my strategy now performs really well during these years in comparison to a typical year, which is not what I want.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve experimented with maxing out the number of trades to allow a little more than the typical year, but I&amp;#039;m not sure how I feel about that, so I wanted a second opinion.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a common scenario, especially with swing trading.  And yet another reason day trading is superior (and easier).&lt;/p&gt;&lt;p&gt;With swing trading, you&amp;#039;re often going to need to expand your backtest window over a large period of time.&lt;/p&gt;&lt;p&gt;And by doing that, you&amp;#039;re going to have to include periods of unique market action.&lt;/p&gt;&lt;p&gt;For example, the COVID period in 2020.&lt;/p&gt;&lt;p&gt;When you backtest and optimize on that period, you&amp;#039;re optimizing for something not likely to happen again in our lifetimes.  (But if COVID happens again, your trading strategy will be ready lol!)&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing:&lt;/p&gt;&lt;p&gt;Your strategy should be based on a signal that&amp;#039;s &lt;em&gt;relatively unusual&lt;/em&gt; during &lt;em&gt;relatively normal&lt;/em&gt; market periods.&lt;/p&gt;&lt;p&gt;If your strategy requires a unique market situation to work, there&amp;#039;s a good chance the unique market situation won&amp;#039;t occur again.  Maybe ever.&lt;/p&gt;&lt;p&gt;Here are some next steps to think about for this strategy:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;When optimizing, focus on trades per day and how evenly distributed the trades are&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Add more columns - this will make it easier to incorporate trades per day in your analysis&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Try excluding one of the big trade years and optimize - some suggestions can suggest a better starting point you can use to create a strategy where the trades are better distributed&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I think the entire process gets easier when you&amp;#039;re day trading - for plenty of strategies, you can start your backtest on 2021-01-01 and avoid COVID entirely.&lt;/p&gt;&lt;p&gt;That&amp;#039;s much harder with swing trading.&lt;/p&gt;&lt;p&gt;Nice work, Andrew - I&amp;#039;m looking forward to hearing how this works for your strategy.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Success Story from Glenn B. and a Question</title>
        <link href="https://davemabe.com/success-story-from-glenn-b-and-a-question"/>
        <id>https://davemabe.com/success-story-from-glenn-b-and-a-question</id>
        <published>2026-03-25T15:30:00-04:00</published>
        <updated>2026-03-25T08:03:17-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s an update from MabeKit user Glenn B., and a question (&lt;em&gt;name used with permission, lightly edited for clarity&lt;/em&gt;)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Glenn B.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve recently completed my first model, thanks to MabeKit.&lt;/p&gt;&lt;p&gt;Below are my first successful strategy, which probably has some mistakes, but the insights from this process are immeasurable!&lt;/p&gt;&lt;p&gt;Crunched 3 times:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/glenn_equity_curve.png&quot;&gt;&lt;/p&gt;&lt;p&gt;To be honest, I&amp;#039;m MORE happy about the process I&amp;#039;ve developed to build a new strategy than I am about this particular one.&lt;/p&gt;&lt;p&gt;With reduced self-inflicted coding bottlenecks, I&amp;#039;m really focusing on the data and the bigger picture.&lt;/p&gt;&lt;p&gt;My time is spent more on questions like:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What does the data say about timed exits?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What does the data say about risk management?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What can&amp;#039;t my data tell me?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How can I validate the results?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;etc...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;All my preconceived notions have been abandoned, and I&amp;#039;m feeling pretty hyped about my new perspective!&lt;/p&gt;&lt;p&gt;My main question: in your experience, what percentage of completed models will pass paper/live trading?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Nice work, Glenn!  You&amp;#039;re right: the power here isn&amp;#039;t necessarily in any one particular strategy, but in a generic process for building reliable strategies.&lt;/p&gt;&lt;p&gt;And your mindset at this particular point in the process is ideal!&lt;/p&gt;&lt;p&gt;Most traders at this point feel like the work is done - the equity curve looks good, and it&amp;#039;s off to the races.&lt;/p&gt;&lt;p&gt;But a healthy dose of skepticism at this point will take you a long way.&lt;/p&gt;&lt;p&gt;The next phase is where the real learning begins.&lt;/p&gt;&lt;p&gt;The moment you go live, even at a minuscule size, you are getting feedback about your strategy from the best traders in the world in real-time.&lt;/p&gt;&lt;blockquote&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How can I validate the results?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/blockquote&gt;&lt;p&gt;This is the right question to ask yourself.&lt;/p&gt;&lt;p&gt;The quicker you can validate your results, the quicker your path to confidence with the strategy.&lt;/p&gt;&lt;p&gt;This is one reason why backtesting is so powerful.&lt;/p&gt;&lt;p&gt;Think about discretionary trading - it might take you months or years to get confident enough in a strategy to trade it responsibly with large size.&lt;/p&gt;&lt;p&gt;That&amp;#039;s because there is no way to validate the results of a discretionary strategy quickly.&lt;/p&gt;&lt;p&gt;But back to your question.  First, there are no &amp;quot;completed&amp;quot; models - there&amp;#039;s always some way to improve them.&lt;/p&gt;&lt;p&gt;And there is no pass/fail test for live trading, there&amp;#039;s just varying confidence in the strategy over time.&lt;/p&gt;&lt;p&gt;The real question to ask yourself: what questions would I need to answer to trade this strategy with bigger size?&lt;/p&gt;&lt;p&gt;More on this topic in the coming days...&lt;/p&gt;&lt;p&gt;Congrats, Glenn, and thanks for sharing with the list!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money? Create your own in minutes, not months with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Success Story from Chad - 77R in a Month</title>
        <link href="https://davemabe.com/success-story-from-chad-77r-in-a-month"/>
        <id>https://davemabe.com/success-story-from-chad-77r-in-a-month</id>
        <published>2026-03-24T15:30:00-04:00</published>
        <updated>2026-03-24T05:47:29-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;m receiving more and more success stories from traders who&amp;#039;ve started down the systematic route, but more importantly, have started using columns in their backtests.&lt;/p&gt;&lt;p&gt;This one is from Chad (name used with permission, lightly edited for readability)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Chad:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;My first column-based strategy has been running for a month now - so far, so good. It peaked at 77R and is in a slight drawdown. I have so many ideas to improve things.&lt;/p&gt;&lt;p&gt;I want to experiment with limiting the number of open trades. It opened 50 trades in a short period (after a Trump tweet), and all I could think was that if I were trading with large size, that would really scare me. &lt;/p&gt;&lt;p&gt;Thanks for sharing your concepts and ideas!&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;77R in a month - I love it!&lt;/p&gt;&lt;p&gt;One of the metrics I study closely when optimizing a strategy like this is &lt;strong&gt;trades per day&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I want that number to be as large as I can, but also, importantly, I want the trades to be spread out.&lt;/p&gt;&lt;p&gt;That is, I&amp;#039;m careful to make sure there aren&amp;#039;t large clumps of trades on a small number of days.&lt;/p&gt;&lt;p&gt;Of course, you can&amp;#039;t control the fact there could be days with more trades in your system than occur on any single day in your backtest.&lt;/p&gt;&lt;p&gt;If you want to reduce the number of trades, I would go back to the backtest and use one more pass through the Cruncher to find a way to:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Reduce the trades per day (since you have a lot of room to play with)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Increase the profit per trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Create a smoother equity curve&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;With the right columns in your backtest, there&amp;#039;s no doubt this is possible.&lt;/p&gt;&lt;p&gt;And with this new version of your strategy, you&amp;#039;ll have eliminated an obstacle in your path to confidence for this strategy.&lt;/p&gt;&lt;p&gt;Nice work, Chad!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using AI Agents for Trading Strategies Part 2</title>
        <link href="https://davemabe.com/using-ai-agents-for-trading-strategies-part-2"/>
        <id>https://davemabe.com/using-ai-agents-for-trading-strategies-part-2</id>
        <published>2026-03-23T15:30:00-04:00</published>
        <updated>2026-03-23T07:49:52-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we continue last week&amp;#039;s discussion on using Claude and OpenClaw to automate strategy creation.&lt;/p&gt;&lt;p&gt;We touch on:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How to get AI to do the grunt work so you can be the CEO of your trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why Michael switched from OpenClaw to Claude Code&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Teaching Claude to automate Amibroker (hint: &lt;a href=&quot;https://davemabe.com/automate-an-amibroker-backtest&quot;&gt;point it here&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How giving Claude Prop Firm constraints helped focus its work&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Auditing its work is critically important - the more you understand, the better&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more, including the next steps of using the Cruncher in this process...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/using-ai-agents-for-trading-strategies-part-2&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker? Generate working backtests in seconds with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;The Backtest Filter I'm Applying Doesn't Get Rid of All the Trades.  Why?</title>
        <link href="https://davemabe.com/the-backtest-filter-im-applying-doesnt-get-rid-of-all-the-trades-why"/>
        <id>https://davemabe.com/the-backtest-filter-im-applying-doesnt-get-rid-of-all-the-trades-why</id>
        <published>2026-03-20T15:30:00-04:00</published>
        <updated>2026-03-20T08:13:09-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Brad (name used with permission, lightly edited for clarity).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Brad:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I recently purchased your AFL course and template and have been working with it extensively. It has been an excellent foundation for building strategies and learning AmiBroker.&lt;/p&gt;&lt;p&gt;I am currently working with a smaller database of approximately 1.5 to 2 years of data to learn proper backtesting techniques more efficiently. I have been using the strategy in your template and adding my own columns over time.&lt;/p&gt;&lt;p&gt;My process involves exporting the results from AmiBroker into Excel, applying filters to the columns, and identifying results that show potential. However, I have encountered an issue: when I apply those same filters within the AmiBroker backtester and re-run the test, I get completely different and almost consistently worse results.&lt;/p&gt;&lt;p&gt;I have reviewed my database settings and code, but I cannot find the source of the discrepancy. Are there some specific settings you know of to check or concepts I might be overlooking that would cause such a difference between the exported data and the backtester results?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I can understand your frustration because I&amp;#039;ve been there!&lt;/p&gt;&lt;p&gt;I can&amp;#039;t see Brad&amp;#039;s code, but I&amp;#039;m reasonably certain he&amp;#039;s running into what I call the &amp;quot;peek-a-boo&amp;quot; problem.&lt;/p&gt;&lt;p&gt;I recently gave a talk on SMB Capital&amp;#039;s Bionic Trader show on this exact topic, so it&amp;#039;s fresh in my mind.&lt;/p&gt;&lt;p&gt;The issue is that unless your code is set up to handle this, you&amp;#039;re likely just &lt;em&gt;postponing&lt;/em&gt; trades rather than filtering them from your backtest.&lt;/p&gt;&lt;p&gt;Take this hypothetical example.  Your strategy&amp;#039;s signal is when a stock reaches a new high.  You go long.&lt;/p&gt;&lt;p&gt;You run the backtest and one of your columns is Volume Today.&lt;/p&gt;&lt;p&gt;In your Excel analysis, it tells you that a minimum value of, say, 500k will improve your strategy by removing 1/3 of the trades.&lt;/p&gt;&lt;p&gt;You add the filter and run the backtest, but find it did NOT remove 1/3 of the trades.  Why?&lt;/p&gt;&lt;p&gt;Well, think about your signal and the Volume Today filter.&lt;/p&gt;&lt;p&gt;New highs can occur &lt;strong&gt;multiple times per day&lt;/strong&gt; for a single symbol.&lt;/p&gt;&lt;p&gt;And the Volume Today continues to increase throughout the trading day.&lt;/p&gt;&lt;p&gt;The earlier trade is gone (when the Volume Today was less than 500k), but you&amp;#039;ve replaced it with a trade in the same symbol later in the day when that Volume Today minimum &lt;strong&gt;is&lt;/strong&gt; finally met.&lt;/p&gt;&lt;p&gt;How do you handle this?&lt;/p&gt;&lt;p&gt;You should handle this like the MabeKit AFL Generator handles this, by having a way to invalidate the symbol for the remainder of the trading day when a signal is found that DOESN&amp;#039;T match your filter set.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what it looks like in the code that the generator produces:&lt;/p&gt;&lt;p&gt;&lt;code&gt;Invalid = VolumeToday &amp;lt; 500000;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;This makes the backtest filter out the earlier trade AND put it on a list that knows to skip any futures signals that might occur for that symbol for the remainder of the day.&lt;/p&gt;&lt;p&gt;More on this topic in the coming days - it&amp;#039;s an important topic to understand!&lt;/p&gt;&lt;p&gt;Great question, Brad.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker? Generate working backtests in seconds with &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">To Infinity and... Beware Infinite Values</title>
        <link href="https://davemabe.com/to-infinity-and-beware-infinite-values"/>
        <id>https://davemabe.com/to-infinity-and-beware-infinite-values</id>
        <published>2026-03-19T15:30:00-04:00</published>
        <updated>2026-03-19T08:37:30-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One phase traders go through is learning just how important position sizing is.&lt;/p&gt;&lt;p&gt;The same strategy can be dramatically different depending on the sizing approach used.  (&lt;a href=&quot;https://davemabe.com/two-position-sizing-approaches/&quot;&gt;Good example here&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;When you size positions based on your risk (distance to the stop) and then measure performance by risk, it can unlock an entirely new dimension of strategies and ideas.&lt;/p&gt;&lt;p&gt;But be very careful - it&amp;#039;s easy to let outliers sneak in a backtest that have inordinately large sizes.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re sizing based on distance to your stop, but your stop is really close to your entry, then it&amp;#039;s easy to get infinite sizing.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you want to risk a certain amount with each trade, say, $100.&lt;/p&gt;&lt;p&gt;In your code, you could size positions like this:&lt;/p&gt;&lt;p&gt;&lt;code&gt;RISK = 100;&lt;br&gt;entry_price = 50.10;&lt;br&gt;stop_price = 50.00;&lt;br&gt;distance_to_stop = entry_price - stop_price;&lt;br&gt;shares = RISK / distance_to_stop;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;In this example, &lt;code&gt;shares&lt;/code&gt; is &lt;code&gt;100 / 0.10 = 1000&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;But let&amp;#039;s say your stop is closer.  Say it&amp;#039;s &lt;code&gt;50.09&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Now your share size is &lt;code&gt;100 / 0.01 = 10,000&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re not careful, this number can get way larger very quickly.&lt;/p&gt;&lt;p&gt;When you go to optimize in the Cruncher, the larger share sizes will naturally weigh more heavily on your analysis.&lt;/p&gt;&lt;p&gt;If you have large outliers, they can make a dramatic difference - even just a trade or two can skew things a lot.&lt;/p&gt;&lt;p&gt;It&amp;#039;s helpful to really understand what&amp;#039;s going on in your code and put safeguards in place to avoid this, not only when you make trades, but much earlier when you are optimizing.&lt;/p&gt;&lt;p&gt;In the example above, the best approach is to use a floor for the stop_distance so you can control how small that can get.&lt;/p&gt;&lt;p&gt;You should also place a ceiling for your share size in case your code does something you didn&amp;#039;t imagine it could do.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you sick of second-guessing yourself every time you click buy or sell? Trade with conviction using MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=second_guess&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Where should I go next with this trading strategy?&quot;</title>
        <link href="https://davemabe.com/where-should-i-go-next-with-this-trading-strategy"/>
        <id>https://davemabe.com/where-should-i-go-next-with-this-trading-strategy</id>
        <published>2026-03-18T15:30:00-04:00</published>
        <updated>2026-03-18T06:50:06-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question about a futures strategy from Arjun (&lt;em&gt;name used with permission, lightly edited for clarity&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Arjun:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I am trying to trade futures now (/NQ and /ES mainly). I bought Amibroker 7, and I am importing data via the IB connection. I have 6 months of 1 min data in my backtesting database. (I will subscribe to IQ to get at least 10 years of minute data.)&lt;/p&gt;&lt;p&gt;I have two strategies I&amp;#039;m trying to backtest:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;one is on 500 tick level&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;another uses 3-minute bar data&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I am getting some results like 20-30%, with 40/60 win rate and 1.45 profit factor with NQ, ES, and CL, but the drawdowns are not ideal (max 10% drawdown).&lt;/p&gt;&lt;p&gt;I have been simtesting the strategy. I am not sure where to go from here.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Is more data a requirement to say these numbers are acceptable?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Should I do more strategy parameters optimization?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Should I add more attributes to better the strategy?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Great questions and nice work getting to this point with your strategies.&lt;/p&gt;&lt;p&gt;The real question here is what would give you more confidence that the strategy will continue to work into the future?&lt;/p&gt;&lt;p&gt;If you had more confidence, then you could create a plan to trade it with increasing size over time.&lt;/p&gt;&lt;p&gt;He doesn&amp;#039;t mention how many trades there are in each system, but I can infer that there are not several thousand simply because of the instruments traded and the time period.&lt;/p&gt;&lt;p&gt;Because you&amp;#039;re applying this to just a few instruments, I would focus on getting more data in your backtest.&lt;/p&gt;&lt;p&gt;The nice thing about that is you&amp;#039;ve already done most of the work.  Now it&amp;#039;s just a matter of getting more data into a backtesting database and running the same code on that instead.&lt;/p&gt;&lt;p&gt;Having more data for your backtest will allow:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;More confidence in the strategy itself since you&amp;#039;ll have a much broader perspective&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Makes more columns/parameters feasible&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Reduces the pressure to have to re-optimize the strategy frequently&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;That last one is important - your strategy will be a lot more robust.&lt;/p&gt;&lt;p&gt;As I often tell futures traders, if you&amp;#039;ve made it this far with a strategy trading just a single instrument, you have the potential to create easier and more plentiful trading edges by applying your ideas to US equities.&lt;/p&gt;&lt;p&gt;That is, you&amp;#039;re doing it the hard way, and the fact that you&amp;#039;ve made it this far is a great sign!&lt;/p&gt;&lt;p&gt;Thanks for sharing with the group, Arjun.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you ready to take your trading to the next level?  Learn the right way to create your own trading strategies with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=coaching&quot;&gt;MabeKit coaching&lt;/a&gt;.  Here&amp;#039;s what a MabeKit trader I&amp;#039;m coaching recently told me:&lt;/p&gt;&lt;p&gt;&amp;quot;I wasn&amp;#039;t prepared for this level of consistency in new equity highs in curves from my strategies.&amp;quot; - Ryan&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Have you considered systematically trading the prediction markets?&quot;</title>
        <link href="https://davemabe.com/have-you-considered-systematically-trading-the-prediction-markets"/>
        <id>https://davemabe.com/have-you-considered-systematically-trading-the-prediction-markets</id>
        <published>2026-03-17T15:30:00-04:00</published>
        <updated>2026-03-17T06:45:17-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Paul (name used with permission, edited lightly for clarity):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Paul:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;m interested in applying automated AI systems to the nascent but growing prediction markets like Polymarket. Have you considered applying your trading mindset and systems to creating automated trading bots in this arena? I do believe there is enough early inefficiency there that it could be a bit of a gold rush for the next year or even several years, for the right systems. &lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I love prediction markets, and I think we should have allowed them a long time ago.&lt;/p&gt;&lt;p&gt;As economist Alex Tabarrak &lt;a href=&quot;https://marginalrevolution.com/marginalrevolution/2012/11/a-bet-is-a-tax-on-bullshit.html&quot;&gt;says&lt;/a&gt;, &amp;quot;Betting is a tax on bullsh*t.&amp;quot;&lt;/p&gt;&lt;p&gt;I also think it&amp;#039;s very likely that there is some trading edge in these new markets.&lt;/p&gt;&lt;p&gt;In fact, I have made some select bets in recent presidential elections that have turned out well.&lt;/p&gt;&lt;p&gt;But there&amp;#039;s one main reason I&amp;#039;m not focusing on prediction markets right now.&lt;/p&gt;&lt;p&gt;It comes down to a phrase you&amp;#039;ve probably heard me say many times.&lt;/p&gt;&lt;p&gt;What&amp;#039;s the &lt;strong&gt;path to confidence&lt;/strong&gt; with a strategy that trades the prediction markets?&lt;/p&gt;&lt;p&gt;There&amp;#039;s a ceiling to how much confidence I feel like I can achieve with a strategy that doesn&amp;#039;t have a lot of historical data to backtest on.&lt;/p&gt;&lt;p&gt;One of the first questions I ask traders I coach is &amp;quot;Are you trading your strategy with full size? And if not, why not?&amp;quot;&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to trade stocks (or prediction markets) with relatively trivial size.&lt;/p&gt;&lt;p&gt;But to trade with meaningful size, you need to have a path to confidence.&lt;/p&gt;&lt;p&gt;The lack of historical data for prediction markets is the roadblock standing in the way of that.&lt;/p&gt;&lt;p&gt;Creating your own path to confidence is just easier in trading financial instruments, and specifically U.S. equities.&lt;/p&gt;&lt;p&gt;Great question, Paul, and thanks for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had more confidence in your trading, so you can trade with bigger size?  Create your own path to confidence with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=confidence&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using AI Agents to Backtest Strategy Ideas</title>
        <link href="https://davemabe.com/using-ai-agents-to-backtest-strategy-ideas"/>
        <id>https://davemabe.com/using-ai-agents-to-backtest-strategy-ideas</id>
        <published>2026-03-16T15:30:00-04:00</published>
        <updated>2026-03-16T06:38:19-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss Michael&amp;#039;s project for having OpenClaw create and run backtests from his list of research ideas for trading strategies.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;His agents have created over 200 backtests&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How they&amp;#039;ve primed the backtests to be used in the Strategy Cruncher&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;SOPs (Standard Operating Procedures) have paved the way for this workflow&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;AI as a research assistant/intern for your trading business&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;If you want to learn how to use AI in your trading business, don&amp;#039;t miss this one!&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/using-ai-agents-to-backtest-strategy-ideas&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money?  Create your own in minutes, not months with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Next steps for these strategies?&quot;</title>
        <link href="https://davemabe.com/next-steps-for-these-strategies"/>
        <id>https://davemabe.com/next-steps-for-these-strategies</id>
        <published>2026-03-13T15:30:00-04:00</published>
        <updated>2026-03-12T08:38:40-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Brent S. on two strategies he sent for review.  (&lt;em&gt;Name used with permission, lightly edited for clarity&lt;/em&gt;.)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Brent S:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I have spent the last month learning .afl and have pulled together two starter strategies, probably very common starters. I started with the AFL template in your course for both. The first is an EMA/EMA crossover. The second is an EMA/VWAP crossover that I used ChatGPT to add some additional filters to, which I modified some myself in the end, but I am not sure how helpful the additional filters actually are. &lt;/p&gt;&lt;p&gt;I can see the strategy results in their respective analyses screens and on the charts look promising, but I&amp;#039;m very skeptical. Could you provide any input on what I would do from here? Optimize? Start over?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Nice work creating these strategies - a lot of traders don&amp;#039;t get this far.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I see when I compare the two strategies:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/strategy_comparison.png&quot;&gt;&lt;/p&gt;&lt;p&gt;The EMA strategy looks a lot stronger, but there are almost twice as many trades in the EMA one, so the equity curve can be slightly deceiving.&lt;/p&gt;&lt;p&gt;I ran both of these strategies through the Cruncher, and here&amp;#039;s what I found:&lt;/p&gt;&lt;p&gt;For the VWAP strategy, applying a rule for Yesterday Dojiness (&lt;a href=&quot;https://davemabe.com/a-column-for-your-backtest&quot;&gt;definition here&lt;/a&gt;):&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/vwap_strategy_yesterday_dojiness.png&quot;&gt;&lt;/p&gt;&lt;p&gt;Applying that one rule would improve the strategy quite a bit by removing several losing trades from the system.&lt;/p&gt;&lt;p&gt;For the EMA strategy, things look even better when you add a rule based on Gap Percent:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/ema_gap_percent_rule.png&quot;&gt;&lt;/p&gt;&lt;p&gt;This is saying that stocks that are gapping up perform significantly better than stocks that are opening flat or gapping down.&lt;/p&gt;&lt;p&gt;Note that this analysis only includes the columns that come with the sample strategy with the AFL course.&lt;/p&gt;&lt;p&gt;When you add the full MabeKit column library to your strategy, there will be many ways to improve the strategy.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I would suggest for next steps:&lt;/p&gt;&lt;p&gt;Now that you know these columns are highly predictive for the strategy, go back and create a new starting point by applying the rules mentioned above, but relaxing some other rules in your original versions.&lt;/p&gt;&lt;p&gt;That should create a starting point with even more trades with a higher average profit per trade.&lt;/p&gt;&lt;p&gt;See how your analysis ends up with the new versions and then compare them to your originals.&lt;/p&gt;&lt;p&gt;Nice progress with your strategy and AFL skills, Brent!  Thanks for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Think you have trading skill but nothing concrete to test? Start with the proven backtest included in my &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=proven&quot;&gt;Amibroker AFL Course&lt;/a&gt; and make it your own, just like Brent did.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Automate an Amibroker Backtest</title>
        <link href="https://davemabe.com/automate-an-amibroker-backtest"/>
        <id>https://davemabe.com/automate-an-amibroker-backtest</id>
        <published>2026-03-12T15:30:00-04:00</published>
        <updated>2026-03-12T08:06:19-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the many nice things about Amibroker is its developer-friendly attitude.&lt;/p&gt;&lt;p&gt;A great example of that is the fact that you can automate backtests (or explorations) from a scripting interface.&lt;/p&gt;&lt;p&gt;This allows you to create scheduled tasks to run backtests or open several analysis windows exactly as you&amp;#039;d like each day.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s some Python code that does the following:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Connects to an already started Amibroker instance&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Opens an APX file (an Analysis window you&amp;#039;ve saved previously)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Runs a backtest (same as clicking the Backtest button manually in the program)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Saves the results to a CSV file&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Closes the Analysis window&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;To simply open the APX file instead of running a backtest, comment out the line with the call to &lt;code&gt;Run&lt;/code&gt; and the remaining lines in that function.&lt;/p&gt;&lt;pre&gt;&lt;code&gt;import argparse
import sys
import time

import win32com.client

BACKTEST_ACTION = 2

def main():
    parser = argparse.ArgumentParser(description=&amp;quot;Run AmiBroker backtest and export CSV&amp;quot;)
    parser.add_argument(&amp;quot;apx_file&amp;quot;, help=&amp;quot;Path to .apx analysis project file&amp;quot;)
    parser.add_argument(&amp;quot;--output&amp;quot;, &amp;quot;-o&amp;quot;, help=&amp;quot;Output CSV path (default: same name as APX)&amp;quot;)
    args = parser.parse_args()

    from pathlib import Path

    apx_path = Path(args.apx_file).resolve()
    if not apx_path.exists():
        print(f&amp;quot;ERROR: APX file not found: {apx_path}&amp;quot;, file=sys.stderr)
        sys.exit(1)

    output = args.output or str(apx_path.with_suffix(&amp;quot;.csv&amp;quot;))

    ami = win32com.client.Dispatch(&amp;quot;Broker.Application&amp;quot;)
    analysis = ami.AnalysisDocs.Open(str(apx_path))

    analysis.Run(BACKTEST_ACTION)
    while analysis.IsBusy:
        time.sleep(1.0)

    analysis.Export(output)
    analysis.Close()

    print(f&amp;quot;Results saved to: {output}&amp;quot;)


if __name__ == &amp;quot;__main__&amp;quot;:
    main()&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;For information on all functions available via this interface, check out &lt;a href=&quot;https://www.amibroker.com/guide/objects.html&quot;&gt;the documentation&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Why is every other trader printing money while you’re stuck? Close the gap with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=printing&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using a Smaller Amibroker Database for Efficiency</title>
        <link href="https://davemabe.com/using-a-smaller-amibroker-database-for-efficiency"/>
        <id>https://davemabe.com/using-a-smaller-amibroker-database-for-efficiency</id>
        <published>2026-03-11T15:30:00-04:00</published>
        <updated>2026-03-11T08:49:01-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Following up on &lt;a href=&quot;https://davemabe.com/how-can-i-split-data-across-multiple-amibroker-databases&quot;&gt;yesterday&amp;#039;s email&lt;/a&gt; on how to split up data across multiple databases, here&amp;#039;s another reason you might want to make your backtesting database smaller.&lt;/p&gt;&lt;p&gt;One quirk about Amibroker - even when you use the &lt;strong&gt;From-To&lt;/strong&gt; dates in the &lt;strong&gt;Range field&lt;/strong&gt; for a backtest, it still parses through all bars in the entire database.&lt;/p&gt;&lt;p&gt;(There&amp;#039;s a good technical reason for this, I&amp;#039;m sure.)&lt;/p&gt;&lt;p&gt;This means that even if you specify just a single day for your backtest, it will take almost as long as if you specified &lt;strong&gt;All quotes&lt;/strong&gt; in the Range field.&lt;/p&gt;&lt;p&gt;So if you have 25 years of minute bars in your database but only backtest on 10 years, you&amp;#039;re essentially wasting resources and could reduce the time your backtest takes.&lt;/p&gt;&lt;p&gt;Once you have the data, it&amp;#039;s trivial to create another database with the optimal number of bars.&lt;/p&gt;&lt;p&gt;Remember, you should always create a new database rather than change the number of bars in an existing database in Amibroker.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &amp;quot;The process of becoming a more systematic trader honestly mirrors the journey of becoming a trader at all—lots of ups and downs, frustration, second-guessing, and moments where you want to quit. And then every once in a while, there’s a real moment of clarity and forward progress. Using the AFL code generator in MabeKit feels like one of those moments.&amp;quot; - Mike A.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=afl_testimonial&quot;&gt;Get Instant Access to MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How can I split data across multiple Amibroker databases?&quot;</title>
        <link href="https://davemabe.com/how-can-i-split-data-across-multiple-amibroker-databases"/>
        <id>https://davemabe.com/how-can-i-split-data-across-multiple-amibroker-databases</id>
        <published>2026-03-10T15:30:00-04:00</published>
        <updated>2026-03-10T07:52:05-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Jason D. (&lt;em&gt;name used with permission, edited lightly for clarity&lt;/em&gt;):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Jason D.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;After obtaining the full 24 years of minute bar data, what is the recommended way to parse or divide it into the five separate databases (each containing about 5 years of data)? Is there a specific tool inside of Amibroker to use?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;By default, I recommend putting all your data into a single backtesting database in Amibroker.&lt;/p&gt;&lt;p&gt;But there are reasons you might want to split it across multiple databases.&lt;/p&gt;&lt;p&gt;For example, your computer doesn&amp;#039;t have enough resources to run a large backtest.&lt;/p&gt;&lt;p&gt;In this case, you could create separate databases for X year segments (say, every 5 years).&lt;/p&gt;&lt;p&gt;You could then choose the database to run your backtest on and generate a CSV file per database, then merge the results into a single CSV file.&lt;/p&gt;&lt;p&gt;You could even create a Python script to run each Amibroker backtest programmatically through the Amibroker COM interface.&lt;/p&gt;&lt;p&gt;There are command-line parameters for Amibroker to open a specific database:&lt;/p&gt;&lt;p&gt;&lt;code&gt;C:\Program Files\AmiBroker&amp;gt;broker /database &amp;quot;C:\path\to\database&amp;quot;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;Another reason is for pure efficiency purposes - I&amp;#039;ll explore this tomorrow.&lt;/p&gt;&lt;p&gt;Thanks for the question, Jason!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable?  My column library is now included with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access to MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategies for Small Accounts</title>
        <link href="https://davemabe.com/strategies-for-small-accounts"/>
        <id>https://davemabe.com/strategies-for-small-accounts</id>
        <published>2026-03-09T15:30:00-04:00</published>
        <updated>2026-03-09T06:44:44-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we continue the discussion about trading small accounts.&lt;/p&gt;&lt;p&gt;We cover:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Making mistakes early when they&amp;#039;re relatively cheap&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Focus on scaling wide versus scaling up&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Learn R-multiples - it normalizes your performance as your account grows&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Become the best in the world at a very specific strategy (it&amp;#039;s not as hard as you think!)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;h3&gt;Sharing is Caring&lt;/h3&gt;&lt;p&gt;Do you know traders who will benefit from this topic? Share this episode with them.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Does it feel like your strategy works for everyone but you? Make it work for your data with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=butyou&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Guest Appearance on Desire to Trade</title>
        <link href="https://davemabe.com/guest-appearance-on-desire-to-trade"/>
        <id>https://davemabe.com/guest-appearance-on-desire-to-trade</id>
        <published>2026-03-06T15:30:00-05:00</published>
        <updated>2026-03-05T09:56:17-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Ettienne had me on the Desire to Trade podcast to talk about systematic trading and how backtesting is a trading superpower.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.desiretotrade.com/549-why-i-trade-25-strategies-after-17-years-of-trading-dave-mabe/&quot;&gt;LISTEN NOW&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://youtu.be/BAiSzcY0jrA&quot;&gt;WATCH NOW&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Here are the show notes:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;[00:00] Introduction&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[00:37] Who is Dave Mabe?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[01:06] Fully automated trading vs manual execution&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[01:40] How Dave started trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[04:04] The problem with learning from intuition-based traders&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[05:50] Can you really make money with discretionary trading?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[06:45] First automated strategy: success or failure?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[09:28] Do algo traders struggle with emotions too?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[11:09] Is coding required for automated trading in 2026?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[12:13] Why backtests look great but live trading fails&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[15:48] How much variance between backtest and live is acceptable?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[16:45] What separates traders who quit from those who last 20 years&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[19:51] Generating new trading strategies consistently&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[23:30] Is there a limit to how many strategies you can run?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;[24:46] Where to find Dave Mabe and his free backtesting course&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Sharing is caring!&lt;/h3&gt;&lt;p&gt;If you enjoyed this episode, please consider sharing it with a few friends who might find it useful. Thanks!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Afraid to size up because you don’t trust your edge? Build confidence to trade your strategy with bigger size with MabeKit. &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=sizing_up&quot;&gt;&lt;strong&gt;&lt;u&gt;Get Instant Access&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Can I use this volume discrepancy to create a profitable strategy?&quot;</title>
        <link href="https://davemabe.com/can-i-use-this-volume-discrepancy-to-create-a-profitable-strategy"/>
        <id>https://davemabe.com/can-i-use-this-volume-discrepancy-to-create-a-profitable-strategy</id>
        <published>2026-03-05T15:30:00-05:00</published>
        <updated>2026-03-05T09:47:43-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Robert B. asks a great follow up question to my post from a few days ago describing the &lt;a href=&quot;https://davemabe.com/volume-discrepancies-in-different-platforms-why&quot;&gt;volume discrepancy you see across data providers&lt;/a&gt; (&lt;em&gt;name used with permission&lt;/em&gt;):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Robert B.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;To follow up on Don&amp;#039;s question:  I wonder what sort of opportunities there might be in comparing the differences between those volume figures.  Could there be a strategy that triggers and profits when there is a greater than normal difference between them?  How would one reliably test for that?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I like the way you&amp;#039;re thinking, Robert!&lt;/p&gt;&lt;p&gt;At first, I was pessimistic about this, but the more I think about it, I can imagine a situation where it could be predictive.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how I would tackle this.&lt;/p&gt;&lt;p&gt;You&amp;#039;d need a feed for both volume counts, so you can include that in a backtest.&lt;/p&gt;&lt;p&gt;There are ways to include this in Amibroker, but it&amp;#039;s for advanced users only.&lt;/p&gt;&lt;p&gt;A better way to do it is to merge the data into a backtest CSV file as another column.&lt;/p&gt;&lt;p&gt;So you&amp;#039;d have two volume columns, one that includes the odd lots and sub-100 share trades, and one that doesn&amp;#039;t.&lt;/p&gt;&lt;p&gt;Then add another column as a ratio of these two volume columns (call it &lt;code&gt;volume_discrepancy_ratio&lt;/code&gt; or something).&lt;/p&gt;&lt;p&gt;Now you&amp;#039;ve got another column that you can optimize on in your column library.&lt;/p&gt;&lt;p&gt;For each of your strategies, run it through the Strategy Cruncher and see how this column affects the strategy.&lt;/p&gt;&lt;p&gt;Different values for this ratio could measure the breadth of participation in a move.&lt;/p&gt;&lt;p&gt;Thanks for the idea, Robert, and for sharing it with the group.&lt;/p&gt;&lt;p&gt;(Robert is trying to broaden his network and asked that I share &lt;a href=&quot;http://www.linkedin.com/in/robert-bruner-0380752aa&quot;&gt;his LinkedIn&lt;/a&gt; - feel free to connect with him.)&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with MabeKit. &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Is it worth upgrading to Amibroker 7.0?&quot;</title>
        <link href="https://davemabe.com/is-it-worth-upgrading-to-amibroker-70"/>
        <id>https://davemabe.com/is-it-worth-upgrading-to-amibroker-70</id>
        <published>2026-03-04T15:30:00-05:00</published>
        <updated>2026-03-03T09:01:32-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several traders have asked me about Amibroker 7.0 and whether it&amp;#039;s worth upgrading to it.&lt;/p&gt;&lt;p&gt;The reliability of Amibroker over the years has been excellent, and I love the emphasis on backwards compatibility.&lt;/p&gt;&lt;p&gt;So normally, I&amp;#039;d say upgrading is worth it, but not an immediate priority.&lt;/p&gt;&lt;p&gt;But there is a specific function in Amibroker 7.0 that makes real-time trading much easier.&lt;/p&gt;&lt;p&gt;It&amp;#039;s called &lt;code&gt;fappend&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;In previous versions, you could append to a local file from Amibroker without much trouble.&lt;/p&gt;&lt;p&gt;But the explorations are multi-threaded, which means every once in a while, your exploration will break when two threads try to append to a local file at the same time.&lt;/p&gt;&lt;p&gt;This is relatively rare, but your real-time trading gets interrupted when it happens, so it&amp;#039;s a big deal.&lt;/p&gt;&lt;p&gt;Before 7.0, there was a workaround for this to make the file appending thread-safe, but it required some ugly code to get it to work.&lt;/p&gt;&lt;p&gt;With 7.0, the new &lt;code&gt;fappend&lt;/code&gt; function is &lt;strong&gt;thread-safe&lt;/strong&gt; and built-in.  No more ugly workarounds.&lt;/p&gt;&lt;p&gt;When I saw this in the Release Notes, I knew this one lowly function would make any hassle of upgrading to 7.0 worth it.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Guest Appearance on Chat with Traders</title>
        <link href="https://davemabe.com/guest-appearance-on-chat-with-traders"/>
        <id>https://davemabe.com/guest-appearance-on-chat-with-traders</id>
        <published>2026-03-03T15:30:00-05:00</published>
        <updated>2026-03-01T11:01:22-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Ian and Tessa had me on the Chat with Traders podcast to talk about my background and my transition to backtesting and automating my trades.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://chatwithtraders.com/episode/318-dave-mabe&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Here are the show notes:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How Dave got introduced to markets: From early exposure to investing through his family to actively seeking more control over his capital and moving from swing trading into day trading.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why rules matter: The transition from discretionary decisions to systematic frameworks — and why trading without a process is a fast path to inconsistency.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Backtesting as a “superpower”: What backtesting really does for strategy development and confidence in your edge.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Reconciling backtests with real life: Practical realities of execution, slippage, and market structure — and how to build a feedback loop so your live results get closer to your simulations.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Drawdowns and mindset: How to handle periods where a strategy doesn’t behave as expected, and why many traders quit in drawdowns rather than at all-time highs.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Scaling a trading business: The difference between scaling size versus scaling breadth — and why uncorrelated strategies matter.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Practical first step for systematic traders: How to start adding structure to your trading with backtesting, even if you’re not a programmer.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Sharing is caring!&lt;/h3&gt;&lt;p&gt;If you enjoyed this episode, please consider sharing it with a few friends who might find it useful. Thanks!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Afraid to size up because you don’t trust your edge? Build confidence to trade your strategy with bigger size with MabeKit. &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=sizing_up&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Trade with a Small Account</title>
        <link href="https://davemabe.com/how-to-trade-with-a-small-account"/>
        <id>https://davemabe.com/how-to-trade-with-a-small-account</id>
        <published>2026-03-02T15:30:00-05:00</published>
        <updated>2026-03-01T10:48:55-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss trading with a small account.&lt;/p&gt;&lt;p&gt;Topics discussed:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Don&amp;#039;t wait until you have &amp;quot;enough&amp;quot; money to start learning&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How trading with a small account is an &lt;em&gt;advantage&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Funding options: an overview of the prop trading landscape&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;No matter how big your account is, your trading strategy is paramount - focus on that&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Lessons learned at this stage will be valuable to your trading forever&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more... including my rant about a trading mistake I made just before we recorded this.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-to-trade-with-a-small-account&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Think you have trading skill but nothing concrete to test? Start with the proven backtest included in my Amibroker AFL Course and make it your own. &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=proven&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Minimize the Effects of Corporate Actions</title>
        <link href="https://davemabe.com/how-to-minimize-the-effects-of-corporate-actions"/>
        <id>https://davemabe.com/how-to-minimize-the-effects-of-corporate-actions</id>
        <published>2026-02-27T15:30:00-05:00</published>
        <updated>2026-02-27T07:09:03-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I answered a question about &lt;a href=&quot;https://davemabe.com/how-should-i-handle-symbol-changes&quot;&gt;handling symbol changes&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;This falls into the broader category of what I call &amp;quot;requiring perfect data versus actually making money.&amp;quot;&lt;/p&gt;&lt;p&gt;You could spend a lot of time spinning your wheels architecting the perfect workflow that handles all the edge cases.&lt;/p&gt;&lt;p&gt;But a much easier approach is to design your trading strategies in a way that reduces the importance of corporate actions.&lt;/p&gt;&lt;p&gt;You won&amp;#039;t eliminate their effect, but you don&amp;#039;t need to.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how you can make trading strategies where the effect of corporate actions is like a fart in a hurricane - they just won&amp;#039;t matter that much.&lt;/p&gt;&lt;h3&gt;Day Trade&lt;/h3&gt;&lt;p&gt;The boundary for most corporate actions is overnight.  If you&amp;#039;re not holding overnight, then you minimize the effect dramatically.  Even holding a trade overnight in your backtest makes it susceptible to distortion.&lt;/p&gt;&lt;h3&gt;Use Shorter Term Filters&lt;/h3&gt;&lt;p&gt;Similar to holding overnight, the longer the timeframe your filters are in, the more corporate actions will affect your strategy.  For example, take two rules that you might apply to a strategy:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The stock must be X ATRs above the 50-day moving average&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The stock must be above yesterday&amp;#039;s high by a certain amount&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The first one needs more accurate data and is more subject to distortion.&lt;/p&gt;&lt;h3&gt;Add More Trades&lt;/h3&gt;&lt;p&gt;One of the main metrics I look at is the number of trades per day in a strategy.  Ideally, that number is as high as possible.&lt;/p&gt;&lt;p&gt;The overwhelming benefit of this approach is more total profit, but a great secondary benefit is &lt;strong&gt;reducing the importance of any single trade&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;There&amp;#039;s strength in numbers.  Importantly, using more trades provides a more reliable path to confidence.&lt;/p&gt;&lt;p&gt;Do you want to be statistically perfect, or do you want to make money?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with MabeKit.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what one trader said about it:&lt;/p&gt;&lt;p&gt;&amp;quot;Access to the MabeKit library has been a game-changer for me. More columns, plus faster optimization has meaningfully accelerated how I develop and validate strategies.&amp;quot; - Nash&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How should I handle symbol changes?&quot;</title>
        <link href="https://davemabe.com/how-should-i-handle-symbol-changes"/>
        <id>https://davemabe.com/how-should-i-handle-symbol-changes</id>
        <published>2026-02-26T15:30:00-05:00</published>
        <updated>2026-02-26T07:02:55-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Nathan A. (&lt;em&gt;name used with permission&lt;/em&gt;):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Nathan A:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve been building a 10-year U.S. equities database (daily + intraday data, listed, delisted, and OTC) for intraday and swing trading, and I’ve run into challenges around how best to handle symbol changes.&lt;/p&gt;&lt;p&gt;Currently, I maintain a master ticker file and assign a persistent &amp;quot;instrument_id&amp;quot; to symbols that represent the same underlying stock. I use share-class FIGI and delisting dates to link symbols, and all of my backtesting references the &amp;quot;instrument_id&amp;quot; rather than the raw ticker symbol. While this works in theory, I’ve found it becomes much more complex in practice.&lt;/p&gt;&lt;p&gt;How do you think about this problem, and how did you and the team approach it at Trade-Ideas?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a great question because it&amp;#039;s something traders with a technical background have a difficult time wrapping their heads around.&lt;/p&gt;&lt;p&gt;It seems like there should be a perfect solution that handles all the edge cases - if you just spent more time tracking down the logic for them - THEN you&amp;#039;ll have your backtesting setup &lt;strong&gt;just right&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;But then another bizarre edge case comes along that breaks it.&lt;/p&gt;&lt;p&gt;It&amp;#039;s messy, and there are weird judgment calls you end up having to make.&lt;/p&gt;&lt;p&gt;When you go down this rabbit hole, you&amp;#039;ll learn some mildly interesting things about corporate actions, but I&amp;#039;ve found it&amp;#039;s largely a waste of time for traders.&lt;/p&gt;&lt;p&gt;Rather than trying to over-engineer the perfect solution, a better approach is to design your trading strategies so that the effect of corporate actions and symbol changes is minimized.&lt;/p&gt;&lt;p&gt;Any guesses about what this might involve?&lt;/p&gt;&lt;p&gt;More tomorrow on this.&lt;/p&gt;&lt;p&gt;Thanks for the question, Nathan!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Wish you could backtest your ideas - without spending months learning to code? Run your first backtest in an afternoon using my &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;Amibroker AFL Course&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Workarounds for a Data Feed Outage</title>
        <link href="https://davemabe.com/workarounds-for-a-data-feed-outage"/>
        <id>https://davemabe.com/workarounds-for-a-data-feed-outage</id>
        <published>2026-02-25T15:30:00-05:00</published>
        <updated>2026-02-25T07:48:55-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Data feeds go down sometimes.&lt;/p&gt;&lt;p&gt;That happened &lt;a href=&quot;https://davemabe.com/your-real-time-data-source-goes-down-now-what&quot;&gt;a couple of days ago&lt;/a&gt; with IQFeed, a popular data feed used with Amibroker.&lt;/p&gt;&lt;p&gt;Here are some workarounds for this situation.&lt;/p&gt;&lt;h3&gt;eSignal&lt;/h3&gt;&lt;p&gt;eSignal is a similar data feed to IQFeed.  I used them for many years before switching to IQFeed.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a plugin for Amibroker that&amp;#039;s essentially identical for real-time data.&lt;/p&gt;&lt;p&gt;When I switched from eSignal, I kept both for a while for redundancy, but since IQFeed was reliable, I canceled it.&lt;/p&gt;&lt;h3&gt;IBKR&lt;/h3&gt;&lt;p&gt;There&amp;#039;s an Amibroker plugin for the Interactive Brokers data service that comes with your account there.&lt;/p&gt;&lt;p&gt;It&amp;#039;s much more limited (30 day backfill only) and less reliable, so I&amp;#039;ve never really used it for any extended period, but it works.&lt;/p&gt;&lt;h3&gt;Massive (Polygon)&lt;/h3&gt;&lt;p&gt;There is no Amibroker plugin for Massive (Polygon), but you could create something that would work in a pinch.&lt;/p&gt;&lt;p&gt;You could use their REST API to retrieve minute bars for your small list of symbols you need real-time data for, create a CSV file with the update, then import the data manually into your real-time database in Amibroker.&lt;/p&gt;&lt;p&gt;It&amp;#039;s even possible to automate this entire process using Amibroker&amp;#039;s OLE/COM interface.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve used this type of process for a similar purpose, and it works surprisingly well.&lt;/p&gt;&lt;p&gt;The nice thing about outages is it forces you to get creative and weigh the costs/benefits of alternatives.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you sick of second-guessing yourself every time you click buy or sell? Trade with conviction using MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=second_guess&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your Real-Time Data Source Goes Down - Now What?</title>
        <link href="https://davemabe.com/your-real-time-data-source-goes-down-now-what"/>
        <id>https://davemabe.com/your-real-time-data-source-goes-down-now-what</id>
        <published>2026-02-24T15:30:00-05:00</published>
        <updated>2026-02-24T06:35:23-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, the IQFeed had a significant outage for an extended period.&lt;/p&gt;&lt;p&gt;This is a pretty rare occurrence - in fact, I don&amp;#039;t remember the last time this happened.&lt;/p&gt;&lt;p&gt;When I asked my contact there about it, here&amp;#039;s how he responded:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;One of the Chicago data centers had a power outage coupled with an internet connectivity issue. Haven&amp;#039;t seen that in a long time but it’s being worked on and we should know soon.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Things appear to be back to normal now, but they still haven&amp;#039;t updated their system status page as of the time I&amp;#039;m composing this:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/iqfeed_system_status_outage.png&quot;&gt;&lt;/p&gt;&lt;p&gt;Outages are a thing, and you can&amp;#039;t pretend they won&amp;#039;t happen.&lt;/p&gt;&lt;p&gt;It&amp;#039;s tempting to get mad at the provider, but situations like these are a reminder that nobody cares more about your trading than you do.&lt;/p&gt;&lt;p&gt;Ultimately, you are the CEO of your trading, and there&amp;#039;s no one to escalate to.&lt;/p&gt;&lt;p&gt;And, therefore, it&amp;#039;s &lt;strong&gt;your responsibility&lt;/strong&gt; to have a plan when things inevitably break.&lt;/p&gt;&lt;p&gt;The right way to think about this incident was that &lt;strong&gt;your trading business had an outage&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Just as an outage at any firm is a valuable learning opportunity, so too are these. Use them as such.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a list of things to do to turn outages into positive ways to get better:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;When did you discover the issue? Could you have known earlier?  How?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Can you create automated alerting to let you know when this occurs next time?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What backups could you switchover to during the next outage?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;As frustrating as situations like this can be, it&amp;#039;s much better to treat them as the world forcing you to think about how you can get better.&lt;/p&gt;&lt;p&gt;My daughter works for Google, and they have an excellent way to think about outages.&lt;/p&gt;&lt;p&gt;Every outage at Google is &amp;quot;no-fault&amp;quot; - that is, no particular person &amp;quot;caused&amp;quot; the outage.&lt;/p&gt;&lt;p&gt;The &lt;em&gt;system&lt;/em&gt; caused the outage.&lt;/p&gt;&lt;p&gt;This encourages a productive, all-hands-on-deck response &lt;strong&gt;to improve the overall system&lt;/strong&gt;, rather than assigning blame.&lt;/p&gt;&lt;p&gt;Apply this same attitude to your own trading business.&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll review several workarounds for the data feed outage from yesterday.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with MabeKit. &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Curve Fitting is Easy to Avoid</title>
        <link href="https://davemabe.com/curve-fitting-is-easy-to-avoid"/>
        <id>https://davemabe.com/curve-fitting-is-easy-to-avoid</id>
        <published>2026-02-23T15:30:00-05:00</published>
        <updated>2026-02-23T07:55:55-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we tackle curve fitting.&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve ever wondered if you&amp;#039;re curve fitting with your trading strategy, this episode is for you.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Curve fitting is a continuum, not a binary yes/no condition&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Every strategy has a little bit of curve fitting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Let&amp;#039;s say you wanted to maximize curve fitting. What would you do?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Easy ways to avoid curve fitting&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/curve-fitting-is-easy-to-avoid&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sharing is caring&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do you know traders who will benefit from this topic? Share this episode with them.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &amp;quot;The process of becoming a more systematic trader honestly mirrors the journey of becoming a trader at all—lots of ups and downs, frustration, second-guessing, and moments where you want to quit. And then every once in a while, there’s a real moment of clarity and forward progress. Using the AFL code generator in MabeKit feels like one of those moments.&amp;quot; - Mike A.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=afl_testimonial&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Sizing Your Real-Time Amibroker Database</title>
        <link href="https://davemabe.com/sizing-your-real-time-amibroker-database"/>
        <id>https://davemabe.com/sizing-your-real-time-amibroker-database</id>
        <published>2026-02-20T15:30:00-05:00</published>
        <updated>2026-02-20T07:58:31-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several traders replied to &lt;a href=&quot;https://davemabe.com/amibroker-performance-success-story&quot;&gt;yesterday&amp;#039;s success story&lt;/a&gt; about Mike and his blazing-fast real-time Amibroker database.&lt;/p&gt;&lt;p&gt;Mike sized his database with fewer bars than other traders might use, and there&amp;#039;s a good reason for that.&lt;/p&gt;&lt;p&gt;How do you know how many bars are enough for your real-time database?&lt;/p&gt;&lt;p&gt;The answer is simple.&lt;/p&gt;&lt;p&gt;There should be just enough bars to calculate the &amp;quot;longest term&amp;quot; filter across all your strategies.&lt;/p&gt;&lt;p&gt;For example, let&amp;#039;s say you run the Cruncher on your strategy and find this suggestion based on the Change from 10 Day SMA MabeKit column that you decide to apply:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/change_from_10_day_sma_mk_ma10r.png&quot;&gt;&lt;/p&gt;&lt;p&gt;If this were the longest filter across your strategy, then you would need as many bars as required to have 10 days in your database per symbol.&lt;/p&gt;&lt;p&gt;But remember, plenty of symbols trade in the pre- and post-market, so you&amp;#039;ll need to account for that.&lt;/p&gt;&lt;p&gt;There can be up to 960 one-minute bars (i.e., the number of minutes between the pre-market open of 4am and the post-market close of 8pm).&lt;/p&gt;&lt;p&gt;So you&amp;#039;ll need at least 960 * 10 days = 9600 bars to calculate that filter properly.&lt;/p&gt;&lt;p&gt;If there aren&amp;#039;t enough bars to calculate, filter values will appear as blanks, so it will be easy to spot if you need to include more bars.&lt;/p&gt;&lt;p&gt;Speaking of database sizes, it&amp;#039;s important to note that although Amibroker allows you to change the database size after it&amp;#039;s been created, you shouldn&amp;#039;t!&lt;/p&gt;&lt;p&gt;Always create a new database if you need to change the number of bars.&lt;/p&gt;&lt;p&gt;Stay tuned for more on this topic soon.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Have you ever made an order entry mistake that cost you money? Imagine never making a costly mistake again. Eliminate your trading mistakes with MabeKit.&lt;/p&gt;&lt;p&gt;&amp;quot;The MabeKit Trade Client was a game-changer for my trading.&amp;quot;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=automation&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Amibroker Performance Success Story</title>
        <link href="https://davemabe.com/amibroker-performance-success-story"/>
        <id>https://davemabe.com/amibroker-performance-success-story</id>
        <published>2026-02-19T15:30:00-05:00</published>
        <updated>2026-02-19T06:49:52-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;New Amibroker users quickly learn there&amp;#039;s a big difference between running a backtest and generating trade signals in real-time.&lt;/p&gt;&lt;p&gt;The right way to do this is to create two databases: one for backtesting and one for trading live.&lt;/p&gt;&lt;p&gt;MabeKit user Mike A. wrote me to share the performance numbers when he created a separate database for live trading and tuned it based on my recommendation (&lt;em&gt;name used with permission, edited lightly for clarity&lt;/em&gt;):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mike A.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Wanted to share a quick win based on your advice. My backtesting database was set to roughly a million 1-minute bars, and it was crushing performance — DAS slowed down, charts loaded slowly, and it basically made real-time trading unusable. Explorations were so slow that I couldn’t even get a clean timing on them.&lt;/p&gt;&lt;p&gt;I switched to a 1,200-bar (~25 trading days) database, and it’s night and day. On about 130 symbols, I can run the three explorations I’m using in under 15 seconds, and the rest of the system stays snappy.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Nice work, Mike!&lt;/p&gt;&lt;p&gt;This underscores just how important it is to keep two separate databases.&lt;/p&gt;&lt;p&gt;Profitable trading signals are worthless if you can&amp;#039;t generate them in time to take the trade.&lt;/p&gt;&lt;p&gt;In fact, they&amp;#039;re worse than worthless because of the frustration they&amp;#039;ll cause.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t really matter how long a backtest takes (within reason), but generating signals in real-time is what puts food on the table.&lt;/p&gt;&lt;p&gt;Thanks for sharing these performance numbers with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker? Generate working backtests in seconds with MabeKit.  &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Debugging Real-Time Signals in Amibroker After Hours</title>
        <link href="https://davemabe.com/debugging-real-time-signals-in-amibroker-after-hours"/>
        <id>https://davemabe.com/debugging-real-time-signals-in-amibroker-after-hours</id>
        <published>2026-02-18T15:30:00-05:00</published>
        <updated>2026-02-18T07:38:02-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In Amibroker, sometimes you want to simulate real-time trading after hours.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you&amp;#039;ve created a strategy using the MabeKit AFL generator.&lt;/p&gt;&lt;p&gt;The code includes a section used for real-time trading through the Trade Client.&lt;/p&gt;&lt;p&gt;But your strategy might not trade very often, so you could end up twiddling your thumbs waiting for a signal for hours or even days.&lt;/p&gt;&lt;p&gt;And when the signal comes, you might find an error in your process.&lt;/p&gt;&lt;p&gt;You quickly fix it, but then you&amp;#039;re playing the waiting game again for the next signal to arrive.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a nice way to simulate a signal as if it occurred &amp;quot;now&amp;quot;, no matter when &amp;quot;now&amp;quot; is.&lt;/p&gt;&lt;p&gt;This way, you can test the entire real-time trading workflow on demand, rather than waiting around for a real signal to be generated.&lt;/p&gt;&lt;p&gt;This video shows how it&amp;#039;s done - by temporarily &lt;em&gt;deleting&lt;/em&gt; bars from your database.  (And then how to restore them.)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=5uDh_jT6cLM&quot;&gt;WATCH NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Starting Too Wide is a Mistake</title>
        <link href="https://davemabe.com/starting-too-wide-is-a-mistake"/>
        <id>https://davemabe.com/starting-too-wide-is-a-mistake</id>
        <published>2026-02-17T15:30:00-05:00</published>
        <updated>2026-02-17T08:56:31-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;There is such a thing as starting with too many trades.&lt;/p&gt;&lt;p&gt;When traders start using the Strategy Cruncher with MabeKit, they sometimes go overboard by using a starting point for a strategy that is too wide.&lt;/p&gt;&lt;p&gt;You can understand the thought process - just make your initial criteria REALLY wide - with no assumptions - and let the Cruncher tell you what&amp;#039;s important.&lt;/p&gt;&lt;p&gt;The problem with this approach is that loosening the criteria &lt;strong&gt;weakens&lt;/strong&gt; your signal.&lt;/p&gt;&lt;p&gt;And the signal is the real impetus for the trade.&lt;/p&gt;&lt;p&gt;Make your signal too weak, and you don&amp;#039;t have a signal at all.&lt;/p&gt;&lt;p&gt;So your starting point has way too much noise.&lt;/p&gt;&lt;p&gt;A good way to check this is to review the charts from your starting point.&lt;/p&gt;&lt;p&gt;And it usually doesn&amp;#039;t take going through thousands of charts to see how strong or weak the signal is.&lt;/p&gt;&lt;p&gt;Systematic traders often get too comfortable immersed in the data, ignoring the lessons you can learn from doing chart reviews.&lt;/p&gt;&lt;p&gt;You don&amp;#039;t have to become a discretionary trader to learn from charts.&lt;/p&gt;&lt;p&gt;Make it a habit to routinely review charts from your backtests (Amibroker makes this easy).&lt;/p&gt;&lt;p&gt;You&amp;#039;ll almost always learn something that a spreadsheet alone is hiding from you.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker? Generate working backtests automatically in seconds with &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;MabeKit&lt;/a&gt;. Here&amp;#039;s a &lt;a href=&quot;https://youtu.be/Wnhxp03JHUA&quot;&gt;video showing how this works&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Build Your Column Library</title>
        <link href="https://davemabe.com/how-to-build-your-column-library"/>
        <id>https://davemabe.com/how-to-build-your-column-library</id>
        <published>2026-02-16T15:30:00-05:00</published>
        <updated>2026-02-16T09:30:26-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, Michael and I discuss how to think about improving your column library over time.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How your column library is like a shared software library: build once, reuse everywhere&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Continuous variables are better than binary variables (e.g. Above/below a moving average)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The MACDV case study - MACD normalized by ATR&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How intra-trade columns allow testing multiple concepts with a single backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-to-grow-your-column-library&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Should I automate and go live with this strategy?&quot;</title>
        <link href="https://davemabe.com/should-i-automate-and-go-live-with-this-strategy"/>
        <id>https://davemabe.com/should-i-automate-and-go-live-with-this-strategy</id>
        <published>2026-02-13T15:30:00-05:00</published>
        <updated>2026-02-13T07:53:48-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Randy L. about his backtested strategy (&lt;em&gt;name used with permission, lightly edited for clarity&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Randy L:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve developed this strategy that I trade, and I&amp;#039;ve made a TradingView indicator for it.  I&amp;#039;ve been running it through some backtests, taking every signal that it generates. I&amp;#039;m getting some really impressive final results, but I&amp;#039;m wondering about my profit factor, and if this strategy could really be profitable if I started automating and taking every trade? I&amp;#039;ve attached a screenshot of the back test:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/profit-factor-2025.png&quot;&gt;&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;First off, let&amp;#039;s focus on the positives.&lt;/p&gt;&lt;p&gt;I like that you&amp;#039;re starting from a strategy related to something you already trade and are familiar with.&lt;/p&gt;&lt;p&gt;Starting from a universe that you&amp;#039;ve had experience with is a good idea, plus it&amp;#039;s completely additive to what you&amp;#039;re already trading.&lt;/p&gt;&lt;p&gt;That&amp;#039;s a tricky needle to thread!&lt;/p&gt;&lt;p&gt;There are lots of trades here, which indicates many paths for improving the strategy over time.&lt;/p&gt;&lt;p&gt;Reading the fine print, though, I think this strategy could use some work before going live.&lt;/p&gt;&lt;p&gt;It says &amp;quot;Fees/Slippage: $0&amp;quot;, so some portion of these profits will disappear to commissions, missed trades, and slippage.&lt;/p&gt;&lt;p&gt;That&amp;#039;s going to eat into the Profit Factor, maybe even bringing it below 1.&lt;/p&gt;&lt;p&gt;I like that you&amp;#039;ve broken the strategy down by different risk levels.&lt;/p&gt;&lt;p&gt;Notice that the higher the risk level, the higher the profit factor, but the lower the win rate.&lt;/p&gt;&lt;p&gt;Strategies with win rates below 30% are psychologically difficult to trade since you&amp;#039;re guaranteed to have streaks of several losing trades in a row.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Next Steps for this Strategy&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;While probably not tradeable as-is, there&amp;#039;s definitely some potential here because there are so many trades.&lt;/p&gt;&lt;p&gt;The fact that you&amp;#039;re using TradingView, which gets my designation of the most overrated backtester on the planet, means you can improve this strategy significantly with a different backtester like Amibroker.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I would do from this point:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Convert the backtest to Amibroker and add the MabeKit columns to it&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Run an optimization using the Strategy Cruncher&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There&amp;#039;s no reason you won&amp;#039;t find several ways to improve the strategy&amp;#039;s profitability significantly in ways you don&amp;#039;t realize.&lt;/p&gt;&lt;p&gt;You can apply the improvements directly in TradingView by converting them to PineScript, or use Amibroker natively to send the trades.&lt;/p&gt;&lt;p&gt;Because you&amp;#039;re using TradingView, this must be applied to a single or small basket of instruments.&lt;/p&gt;&lt;p&gt;The next step I would take is to apply the idea to the entire US equities market.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll find significantly more trades, and you&amp;#039;ll be able to create a much stronger signal for the strategy, thereby having an easier path to a significant trading edge.&lt;/p&gt;&lt;p&gt;Thanks for the question, Randy, and for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Does Choosing a Round Number Improve Your Strategy?</title>
        <link href="https://davemabe.com/does-choosing-a-round-number-improve-your-strategy"/>
        <id>https://davemabe.com/does-choosing-a-round-number-improve-your-strategy</id>
        <published>2026-02-12T15:30:00-05:00</published>
        <updated>2026-02-12T06:18:10-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question I see over and over from traders.&lt;/p&gt;&lt;p&gt;It most recently came up during my guest appearance on SMB Capital&amp;#039;s Bionic Trader webinar last month.&lt;/p&gt;&lt;p&gt;I was showing a report from the Strategy Cruncher for a short strategy I trade.&lt;/p&gt;&lt;p&gt;The Cruncher detects optimal filter values to apply to your strategy to make it more profitable.&lt;/p&gt;&lt;p&gt;Often, those numbers are quite precise.&lt;/p&gt;&lt;p&gt;This precision bothers some traders.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a video where I explain the issue and why &amp;quot;cleverly&amp;quot; choosing a round number instead of the optimal one makes no sense.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://youtu.be/BSI9O6lQhNs&quot;&gt;WATCH NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker? Generate working backtests in seconds with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;Get Instant Access to MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Sidewalks and Trading</title>
        <link href="https://davemabe.com/sidewalks-and-trading"/>
        <id>https://davemabe.com/sidewalks-and-trading</id>
        <published>2026-02-11T15:30:00-05:00</published>
        <updated>2026-02-11T08:51:12-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Mike Munger, an economist at Duke University, offers this thought experiment.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you&amp;#039;re designing and building a university.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve created the plans for all the beautiful, prestigious-looking buildings.&lt;/p&gt;&lt;p&gt;You know where the grassy quads are going to go.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve got plans for the dormitories.&lt;/p&gt;&lt;p&gt;It&amp;#039;s going to be awesome.&lt;/p&gt;&lt;p&gt;One of the last things you might consider is: &lt;strong&gt;where are the sidewalks going to go?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You could consult some engineers to figure out where they should go.&lt;/p&gt;&lt;p&gt;You could create a committee of professors and students to have a bunch of meetings to come up with a plan.&lt;/p&gt;&lt;p&gt;But Munger suggests there&amp;#039;s a much easier and simpler way to decide.&lt;/p&gt;&lt;p&gt;Go ahead and build the university buildings and plant grass in all the quads between the buildings.&lt;/p&gt;&lt;p&gt;And &lt;strong&gt;build no sidewalks initially&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Then open the university and wait two years.&lt;/p&gt;&lt;p&gt;At that point, build sidewalks where all the brown paths in the grass have formed from people walking.&lt;/p&gt;&lt;p&gt;I love this thought experiment because the solution is so simple, while most of our instincts are to over-engineer a &amp;quot;perfect&amp;quot; solution before breaking any ground at all.&lt;/p&gt;&lt;p&gt;Many technically minded traders do the same thing with their trading strategies and backtests.&lt;/p&gt;&lt;p&gt;How are you over-engineering your backtest, trying to make it perfect before putting any money at risk?&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing:&lt;/p&gt;&lt;p&gt;There&amp;#039;s always something you COULD do to make your backtest &amp;quot;better.&amp;quot;&lt;/p&gt;&lt;p&gt;But oftentimes you&amp;#039;re better off waiting and making those decisions based on real, live market action.&lt;/p&gt;&lt;p&gt;Think of going live not as the end game, but as an opportunity for the smartest traders in the world to give you feedback on your strategy in real time.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Should I include delisted stocks in my backtests?&quot;</title>
        <link href="https://davemabe.com/should-i-include-delisted-stocks-in-my-backtests"/>
        <id>https://davemabe.com/should-i-include-delisted-stocks-in-my-backtests</id>
        <published>2026-02-10T15:30:00-05:00</published>
        <updated>2026-02-10T06:53:24-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Helena (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Helena:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do you include delisted stocks in your backtesting?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Great question, and you might be surprised by my answer.&lt;/p&gt;&lt;p&gt;No, I don&amp;#039;t bother.&lt;/p&gt;&lt;p&gt;I can hear some traders being horrified by this, but here&amp;#039;s why.&lt;/p&gt;&lt;p&gt;I&amp;#039;m day trading, which, in addition to having more profit potential than holding overnight, allows you not to worry about delisted symbols.&lt;/p&gt;&lt;p&gt;Think about it: delisted symbols are companies that, for the most part, went out of business.&lt;/p&gt;&lt;p&gt;The way that would be &lt;strong&gt;more likely&lt;/strong&gt; to affect your backtest is if:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Your strategy holds trades for several days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;It has a relatively small number of trades, so an outlier could more easily affect the results&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your strategy goes long, and it holds overnight&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;So many issues with data like this resolve themselves with day trading and starting with many trades.&lt;/p&gt;&lt;p&gt;This is one of those issues I see some traders get stuck with - trying to create the perfect conditions for their backtest.&lt;/p&gt;&lt;p&gt;Do you want to be statistically perfect or do you want to make money?&lt;/p&gt;&lt;p&gt;Thanks for the question and for sharing with the group, Helena!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Have you ever made an order entry mistake that cost you money? Imagine never making a costly mistake again. Eliminate your trading mistakes with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=automation&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Qualities that Predict a Profitable Trader</title>
        <link href="https://davemabe.com/qualities-that-predict-a-profitable-trader"/>
        <id>https://davemabe.com/qualities-that-predict-a-profitable-trader</id>
        <published>2026-02-09T15:30:00-05:00</published>
        <updated>2026-02-02T07:55:46-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss the qualities of profitable traders.&lt;/p&gt;&lt;p&gt;This topic came from a talk I gave at SMB Capital&amp;#039;s Bionic Trader webinar, where I highlighted the inflection points in my trading career.&lt;/p&gt;&lt;p&gt;Topics discussed:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profitable traders don&amp;#039;t follow the crowd - or any particular trading guru&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Healthy attitude towards trading and risk&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Making great trades is the goal - ironically, the money is almost secondary&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Day trading is key (don&amp;#039;t believe me?  Just do the math)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Automation is a massive trading edge&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/qualities-that-predict-a-profitable-trader&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Can you write one version of code for backtesting and live?&quot;</title>
        <link href="https://davemabe.com/can-you-write-one-version-of-code-for-backtesting-and-live"/>
        <id>https://davemabe.com/can-you-write-one-version-of-code-for-backtesting-and-live</id>
        <published>2026-02-06T15:30:00-05:00</published>
        <updated>2026-02-04T08:15:14-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Ivan M. (&lt;em&gt;name used with permission&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Ivan M:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Is it possible to write code for the strategy and run exactly the same code on a live account (to minimize risk of errors)?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Yes, this is absolutely possible and highly recommended.&lt;/p&gt;&lt;p&gt;A very good programmer gave me a valuable lesson early in my career:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;If you find yourself cutting and pasting code, you&amp;#039;re doing something wrong.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;The next time you feel the urge to copy and paste in your code, think about how you can do it differently.&lt;/p&gt;&lt;p&gt;Can you create a library that gets shared across several projects?&lt;/p&gt;&lt;p&gt;It&amp;#039;s a little more work in the immediate term, but the payoff later is substantial.&lt;/p&gt;&lt;p&gt;This is the fundamental reason I use the term &amp;quot;library&amp;quot; for the backtest columns in MabeKit.&lt;/p&gt;&lt;p&gt;While it might not seem like a huge pain to copy and paste code for a single trading strategy, this process gets exponentially harder as you add more strategies.&lt;/p&gt;&lt;p&gt;And the same goes for backtesting and live trading code.&lt;/p&gt;&lt;p&gt;Most platforms make this possible.&lt;/p&gt;&lt;p&gt;Your instincts are correct here, Ivan.  Thanks for the question and for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why are you not using GitHub?</title>
        <link href="https://davemabe.com/why-are-you-not-using-github"/>
        <id>https://davemabe.com/why-are-you-not-using-github</id>
        <published>2026-02-05T15:30:00-05:00</published>
        <updated>2026-02-04T07:55:28-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this month&amp;#039;s guest appearance on SMB Capital&amp;#039;s Bionic Trader with Garrett Drinon, I gave a presentation on using LLMs (ChatGPT, Claude, etc) to create code for trading strategies.&lt;/p&gt;&lt;p&gt;They&amp;#039;ve invited me to be a regular guest on the show, so this was my fourth or fifth appearance.&lt;/p&gt;&lt;p&gt;There are always lots of great questions from attendees.&lt;/p&gt;&lt;p&gt;One topic that came up on Tuesday&amp;#039;s webinar was traders using GitHub as their code repository.&lt;/p&gt;&lt;p&gt;Hardly anyone said they use it.&lt;/p&gt;&lt;p&gt;I&amp;#039;m always surprised that so few traders use GitHub for their code.&lt;/p&gt;&lt;p&gt;And of the traders I&amp;#039;ve worked with that do use it, not a single one was using it to its full potential.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re not using GitHub for your systematic trading, I&amp;#039;m interested to understand why.&lt;/p&gt;&lt;p&gt;Hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. If you missed the Bionic webinar, Interactive Brokers has invited me to give a webinar on the same topic on February 12th titled &lt;strong&gt;Consider LLMs to Create a Trading Strategy Without Going in Circles&lt;/strong&gt;.  You can sign up here to attend:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://attendee.gotowebinar.com/register/5396837829284867164&quot;&gt;SIGNUP FOR THE WEBINAR »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How can I create a strategy from this chart in ORCL?&quot;</title>
        <link href="https://davemabe.com/how-can-i-create-a-strategy-from-this-chart-in-orcl"/>
        <id>https://davemabe.com/how-can-i-create-a-strategy-from-this-chart-in-orcl</id>
        <published>2026-02-04T15:30:00-05:00</published>
        <updated>2026-02-04T07:26:33-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;DazeTrader asks a good question on X.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;DazeTrader:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Can Trade-Ideas scan for intraday consolidation patterns? For example, $ORCL on 2/2 when the price was consolidating just above $168, then it broke down fast.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;It always seems like you can create a strategy by looking at a stock chart, but it&amp;#039;s much harder than it seems.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the chart:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/orcl_chart_consolidation_then_breakdown.png&quot;&gt;&lt;/p&gt;&lt;p&gt;The purple line is the breakdown that occurred at 1:15pm ET or so.&lt;/p&gt;&lt;p&gt;This is a great situation to use the &lt;a href=&quot;https://www.trade-ideas.com/StockInfo/_StocksLikeThis.html&quot;&gt;Stocks Like This&lt;/a&gt; tool, which is free to use without a Trade-Ideas subscription.&lt;/p&gt;&lt;p&gt;Here are my thoughts on a strategy for this move:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Most traders try to use a signal &lt;strong&gt;before&lt;/strong&gt; the move, but you&amp;#039;ll likely end up with a lot of noise in your backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Try using a signal &lt;strong&gt;after&lt;/strong&gt; the move has started&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A signal alone will yield too many trades, so the filters you use to define your universe are critical&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Potential filters here to define your universe for a backtest:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The open is in the high end of the premarket range&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Several green bars in a row in the premarket (how many ATRs is that move?)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;After the open, the range consolidates for hours, all the way up to the 1:15pm move&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Opening range &amp;gt; range of last hour &amp;gt; range of last few minutes&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Maybe the 1:15pm move is a red herring - what if you shorted the big move up in the premarket?&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a video I put together with some more thoughts on this:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://youtu.be/qAIjwYmovGM&quot;&gt;WATCH NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. This is a perfect situation to use the AFL code generator in MabeKit to create a strategy without writing a single line of code.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what one trader says about it:&lt;/p&gt;&lt;p&gt;&amp;quot;The process of becoming a more systematic trader honestly mirrors the journey of becoming a trader at all—lots of ups and downs, frustration, second-guessing, and moments where you want to quit. And then every once in a while, there’s a real moment of clarity and forward progress. Using the AFL code generator in MabeKit feels like one of those moments.&amp;quot; - Mike A.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=afl_testimonial&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">My Favorite Hidden Feature in Trade-Ideas</title>
        <link href="https://davemabe.com/my-favorite-hidden-feature-in-trade-ideas"/>
        <id>https://davemabe.com/my-favorite-hidden-feature-in-trade-ideas</id>
        <published>2026-02-03T15:30:00-05:00</published>
        <updated>2026-02-03T07:12:41-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I developed many features at Trade-Ideas during my tenure as CTO.&lt;/p&gt;&lt;p&gt;But this one stands out as my favorite.&lt;/p&gt;&lt;p&gt;One of the traders I&amp;#039;m currently coaching needed an efficient way to look at the previous day&amp;#039;s history in an alert window, so I showed him this feature, which automates this.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not enabled by default - you have to turn it on in the Options window.&lt;/p&gt;&lt;p&gt;Once you enable it, you can turn on &amp;quot;Alert Logging&amp;quot; in any Top List or Alert window in the program.&lt;/p&gt;&lt;p&gt;This creates a CSV file with the contents of the window in your TradeIdeasPro directory on your computer.&lt;/p&gt;&lt;p&gt;It uses the date in the filename, so you get a new file each day.&lt;/p&gt;&lt;p&gt;This lets you automatically archive the window without lifting a finger.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no limit to the interesting things you can do with the data in this archive.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a video I put together, explaining the feature and showing a Python script I created to produce a nice chart from the data in the CSV file.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://youtu.be/_iD7DiNIIQM&quot;&gt;WATCH NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker? Generate working backtests in seconds with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Should You Use Python for Backtesting?</title>
        <link href="https://davemabe.com/should-you-use-python-for-backtesting"/>
        <id>https://davemabe.com/should-you-use-python-for-backtesting</id>
        <published>2026-02-02T15:30:00-05:00</published>
        <updated>2026-02-02T07:45:57-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, I argue that most traders should NOT use Python for backtesting.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re a software developer, this might come as a surprise.&lt;/p&gt;&lt;p&gt;I see many traders with development experience choosing Python for backtesting without giving it much thought.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve worked with several traders to switch from Python to Amibroker and every one of them is happy they did (and their equity curves clearly show it).&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Python is a great general-purpose language, but that&amp;#039;s what makes it a bad choice for backtesting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Iterating on your strategies is the critical piece - anything that makes that more complex will make things more difficult&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;In a world of LLMs, the argument for using Python for everything makes less sense&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Choose your tools based on profit potential, not because &amp;quot;I like Python and am good at it.&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/should-you-use-python-for-backtesting&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sharing is caring&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do you know traders who will benefit from this topic?  Share this episode with them.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Think you have trading skill but nothing concrete to test? Start with the proven backtest included in my Amibroker AFL Course and make it your own.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=proven&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How should I handle outliers in my backtest?&quot;</title>
        <link href="https://davemabe.com/how-should-i-handle-outliers-in-my-backtest"/>
        <id>https://davemabe.com/how-should-i-handle-outliers-in-my-backtest</id>
        <published>2026-01-30T15:30:00-05:00</published>
        <updated>2026-01-30T07:52:18-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several traders replied to my email yesterday about &lt;a href=&quot;https://davemabe.com/handling-bad-data-in-an-amibroker-backtest&quot;&gt;handling bad data&lt;/a&gt;, asking about how to handle outliers that aren&amp;#039;t the result of bad data.&lt;/p&gt;&lt;p&gt;Outliers are something that should keep you up at night a little.&lt;/p&gt;&lt;p&gt;Here are some quick thoughts on outliers:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Make sure they are true outliers and not just bad data&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Are the outliers all in your direction?  (i.e. highly profitable trades)  If so, that&amp;#039;s better.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;If they&amp;#039;re all in your direction, is there still a chance of big losing outliers that haven&amp;#039;t appeared yet?  Or is there something fundamental about your strategy that avoids them?  (Which is good!)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;If there are big losing outliers, then it&amp;#039;s time to pause and give it more thought.  Is there a way to limit them?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;These are important questions because they&amp;#039;re often the reason you have trouble using larger size with your strategy.&lt;/p&gt;&lt;p&gt;One of the first questions I ask a new trader I coach is:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Are you trading your strategy with full size?  If not, why not?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;There are usually good, healthy reasons why they&amp;#039;re not.&lt;/p&gt;&lt;p&gt;Sometimes the reason is fear of the potential for a large losing trade - an outlier.&lt;/p&gt;&lt;p&gt;So understanding outliers and gathering more data about them can unlock a path to confidence - and trading with larger size.&lt;/p&gt;&lt;p&gt;Look for more on this topic in the coming days...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Handling Bad Data in an Amibroker Backtest</title>
        <link href="https://davemabe.com/handling-bad-data-in-an-amibroker-backtest"/>
        <id>https://davemabe.com/handling-bad-data-in-an-amibroker-backtest</id>
        <published>2026-01-29T15:30:00-05:00</published>
        <updated>2026-01-29T11:51:12-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s an unfortunately common situation when backtesting across all symbols.&lt;/p&gt;&lt;p&gt;See this daily chart of ALT from September 2010:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/bad_data_alt_from_iqfeed.png&quot;&gt;&lt;/p&gt;&lt;p&gt;This is classic bad data coming from the data feed.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll see similar wonkiness from all providers.&lt;/p&gt;&lt;p&gt;OK, so this is a pretty obscure stock with very little volume during this period - who cares?&lt;/p&gt;&lt;p&gt;Well, bad data like this has a habit of coming up in backtests in the form of trades.&lt;/p&gt;&lt;p&gt;Often they show up as outliers - either a crazy large winning or losing profit.&lt;/p&gt;&lt;p&gt;When optimizing a strategy, this is a big problem because they skew your process when you include them in your backtest.&lt;/p&gt;&lt;p&gt;Excluding them is really important.&lt;/p&gt;&lt;p&gt;I created a video showing how to identify and confirm that the data is bad and exclude it using Amibroker.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://youtu.be/susyJFC0Y1g&quot;&gt;WATCH NOW »&lt;/a&gt; &lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Wish you could backtest your ideas - without spending months learning to code? Run your first backtest in an afternoon using my Amibroker AFL Course.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;Get Instant Access to the Amibroker Course »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Customize Order Fields in IBKR's TWS</title>
        <link href="https://davemabe.com/how-to-customize-order-fields-in-ibkrs-tws"/>
        <id>https://davemabe.com/how-to-customize-order-fields-in-ibkrs-tws</id>
        <published>2026-01-28T15:30:00-05:00</published>
        <updated>2026-01-28T07:19:08-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The biggest turning point in my trading - bar none - was when I started automating all my trades.&lt;/p&gt;&lt;p&gt;I had good years before that, but nothing like the years after implementing automation.&lt;/p&gt;&lt;p&gt;I see the same pattern with the traders I coach.&lt;/p&gt;&lt;p&gt;But even with implementing automation (like the Trade Client included with MabeKit), you still want to customize your views in the platforms where the trades end up.&lt;/p&gt;&lt;p&gt;The default view in Trader Workstation is missing some important fields, and I&amp;#039;m always surprised to see traders not customizing this view.&lt;/p&gt;&lt;p&gt;Here are the fields I&amp;#039;ve added to my Orders Grid in Interactive Brokers&amp;#039; TWS:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Submit Time - the time an order was submitted&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Start Time - the critical field for Timed Exit orders&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;End Time - controls how long your entry order is active before automatically canceling if unfilled&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;OCA Group - a string that groups your exit orders together (OCA = one cancels all)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Order Reference - a string you can customize from the sending application.  The Trade Client uses the Strategy Name for this field&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Fill Price - the average fill price of that particular order (blank if not filled)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;This gives you the perfect view to verify your orders were entered properly and a quick way to adjust them if you need to.&lt;/p&gt;&lt;p&gt;To add fields in Trader Workstation in the Orders Grid, right-click on a header, go to &lt;strong&gt;Insert column before&lt;/strong&gt;, and choose the column you want from the extensive list.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an image I sent to a trader using the MabeKit Trade Client showing how to add the &lt;code&gt;Start Time&lt;/code&gt; field:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/ibkr_trader_workstation_order_fields.png&quot;&gt;Adding these fields, plus any others convenient for you, will make your Orders grid far more useful and save you a lot of mouse clicks if you have to change an order.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Have you ever made an order entry mistake that cost you money? Imagine never making a costly mistake again.  Eliminate your trading mistakes with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=automation&quot;&gt;Get Instant Access »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;What is the bare minimum win rate for a profitable strategy?&quot;</title>
        <link href="https://davemabe.com/what-is-the-bare-minimum-win-rate-for-a-profitable-strategy"/>
        <id>https://davemabe.com/what-is-the-bare-minimum-win-rate-for-a-profitable-strategy</id>
        <published>2026-01-27T15:30:00-05:00</published>
        <updated>2026-01-27T06:27:57-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Marco C. (&lt;em&gt;name used with permission, lightly edited for clarity&lt;/em&gt;)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Marco C.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;What are the bare minimum critical aspects that make a trading system good enough for trading?&lt;/p&gt;&lt;p&gt;from my ignorance and limited experience&lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;Reliably detect real strength and weakness of the market in real-time&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Reliably select tradable assets with sufficient volatility and abundant liquidity&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Responsible money management&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;The first point implies that a system that provides a win/loss ratio lower than 3/7 (43%) (being conservative) doesn&amp;#039;t meet the eligibility criteria. This alone discards most of the teaching and advice regurgitated/glorified in the trading world.&lt;/p&gt;&lt;p&gt;Will successful backtesting provide confirmation for point 1?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Win rate is overrated.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a common misconception among traders that win rate is an important metric.&lt;/p&gt;&lt;p&gt;Win rate is important, but it&amp;#039;s the &lt;strong&gt;least important metric&lt;/strong&gt; for your trading strategy.&lt;/p&gt;&lt;p&gt;I was reviewing my historical trading results from the early to mid-2010s recently.&lt;/p&gt;&lt;p&gt;During my most profitable years during that period, my win rate was between &lt;code&gt;36&lt;/code&gt; and &lt;code&gt;38%&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;(I&amp;#039;ve worked with profitable traders with even lower win rates.)&lt;/p&gt;&lt;p&gt;In the years with below average profit, I actually had a &lt;em&gt;higher&lt;/em&gt; win rate.&lt;/p&gt;&lt;p&gt;So what should you look at to determine the strength of your strategy?&lt;/p&gt;&lt;p&gt;By far the most important metric is the equity curve.&lt;/p&gt;&lt;p&gt;You can create strategies with a variety of win rates, profit factors, etc, but have a smooth equity curve.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re thinking about win rate too much, you&amp;#039;re making a mistake.&lt;/p&gt;&lt;p&gt;Do you want to be right, or do you want to make money?  (Those are often in conflict.)&lt;/p&gt;&lt;p&gt;Good question, Macro, and thanks for sharing with the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Amibroker: The Adventure Continues</title>
        <link href="https://davemabe.com/amibroker-the-adventure-continues"/>
        <id>https://davemabe.com/amibroker-the-adventure-continues</id>
        <published>2026-01-26T15:30:00-05:00</published>
        <updated>2026-01-25T06:12:13-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss Michael&amp;#039;s progress with Amibroker and his day trading strategies.&lt;/p&gt;&lt;p&gt;Topics include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;strike&gt;Batteries&lt;/strike&gt; Data Not Included - the best way to get data into Amibroker&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The code that adds custom columns in Amibroker is resource-intensive&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Quirks with databases in Amibroker&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your computer hardware matters with Amibroker (get more RAM)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/amibroker-the-adventure-continues&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Here's How I Prioritize Strategy Ideas&quot;</title>
        <link href="https://davemabe.com/heres-how-i-prioritize-strategy-ideas"/>
        <id>https://davemabe.com/heres-how-i-prioritize-strategy-ideas</id>
        <published>2026-01-23T15:30:00-05:00</published>
        <updated>2026-01-23T08:15:52-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Reader Mike M. replied to my post on using the ICE method for prioritizing strategy ideas.  (&lt;em&gt;Name used with permission, lightly edited for clarity.&lt;/em&gt;)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mike M.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how I prioritize candidate ideas for trading strategies:&lt;/p&gt;&lt;p&gt;Weigh a lot of different factors and prioritize based on that.&lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;Does the candidate idea fit well into the current market regime?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Is there potential for uncorrelation with current active strategies? Maybe if it’s different than current strategies. But not necessarily. And what level of uncorrelation?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Level of confidence in the idea.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How quickly can I expect to prove whether the idea is worth pursuing?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Do I know other people who are using the idea similarly and having success with it?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Would it actually be tradeable with the resources I have? I certainly wouldn’t try to compete as a market maker against HFT firms.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;A great list and mindset.  I love this.&lt;/p&gt;&lt;p&gt;These all could fall neatly into the &lt;strong&gt;Impact&lt;/strong&gt;, &lt;strong&gt;Confidence&lt;/strong&gt;, and &lt;strong&gt;Ease&lt;/strong&gt; categories using the scoring method.&lt;/p&gt;&lt;p&gt;I especially like the last three in the list.&lt;/p&gt;&lt;p&gt;Thinking that through before deciding to work on a strategy could save a lot of wasted time.&lt;/p&gt;&lt;p&gt;If you haven&amp;#039;t looked closely at the ICE method, you should - several traders have told me they have implemented the scoring method and found it quite valuable.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s &lt;a href=&quot;https://lineyourownpockets.com/episodes/the-ice-method-for-prioritizing-strategies&quot;&gt;the podcast episode&lt;/a&gt; where I discuss the method in detail.&lt;/p&gt;&lt;p&gt;Thanks for sharing with the group, Mike M!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I&amp;#039;ve been receiving more and more excellent questions from traders.  I can&amp;#039;t answer all of them here on the list, so I&amp;#039;ve started answering some on &lt;a href=&quot;https://www.youtube.com/@davemabe&quot;&gt;my YouTube channel&lt;/a&gt;.  If you like the Q&amp;amp;A, please like and subscribe.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Volume Discrepancies in Different Platforms - Why?&quot;</title>
        <link href="https://davemabe.com/volume-discrepancies-in-different-platforms-why"/>
        <id>https://davemabe.com/volume-discrepancies-in-different-platforms-why</id>
        <published>2026-01-22T15:30:00-05:00</published>
        <updated>2026-01-22T06:25:27-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question about volume data from Don L. (&lt;em&gt;name used with permission, edited lightly for clarity&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Don L.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve been comparing the volume data in Amibroker w/ IQFeed and in my charting software (I use TradingView and Thinkorswim) and see quite a disparity in the daily volume. For instance, I was looking at today&amp;#039;s biggest % Nasdaq gainers (like ELAB and ALMS) and comparing the charts in Amibroker and my charting software. ALMS in Amibroker was showing a significant difference in volume compared to TradingView.&lt;/p&gt;&lt;p&gt;Is this a limitation in my setup configuration? Ideally, I want to make sure I&amp;#039;m not missing potential opportunities.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Very astute observation, Don.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve identified one of the annoying things about datafeeds and platforms.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no standard way volume is counted across the industry.&lt;/p&gt;&lt;p&gt;It is a bit jarring for traders when you stumble upon this, but once you understand what&amp;#039;s going on, it&amp;#039;s not cause for concern.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what&amp;#039;s happening.&lt;/p&gt;&lt;p&gt;Traditionally, odd lots and sub-100 share trades were relatively rare and thought to be made by unsophisticated investors.&lt;/p&gt;&lt;p&gt;So many platforms simply excluded them in their volume counts.&lt;/p&gt;&lt;p&gt;As commission prices went down over time, it started making sense for big players to break up large trades into lots of smaller trades for the purposes of efficiency (and other reasons).&lt;/p&gt;&lt;p&gt;Add fractional share trading on top of this, plus a wave of additional investors participating in the markets now, and sub-100 share trades account for an increasing portion of the volume in stocks.&lt;/p&gt;&lt;p&gt;Because of their increased importance, it no longer makes sense to exclude them for volume calculations.&lt;/p&gt;&lt;p&gt;But several platforms have been around forever and have been counting volume in the traditional way.&lt;/p&gt;&lt;p&gt;So now you have basically two ways to count volume.&lt;/p&gt;&lt;p&gt;So what does that mean for traders?&lt;/p&gt;&lt;p&gt;As long as you understand what&amp;#039;s going on and your platform is consistent, then it shouldn&amp;#039;t be a problem.&lt;/p&gt;&lt;p&gt;The only issue might be if you decide to filter on raw volume in your backtesting platform and then apply that filter in real time when the platforms use different volume calculations.&lt;/p&gt;&lt;p&gt;In that situation, choose a filter/column that&amp;#039;s normalized (like &lt;em&gt;Relative&lt;/em&gt; Volume), and you should be fine.&lt;/p&gt;&lt;p&gt;Great question, Don - thanks for sharing with the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you struggling with writing AFL code for backtests in Amibroker?  Generate working backtests in seconds with MabeKit.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what one trader said about the MabeKit AFL Code Generator:&lt;/p&gt;&lt;p&gt;&amp;quot;As someone who’s really not a natural coder, I’ve spent a lot of time feeling frustrated and tangled up in spaghetti logic—especially when trying to brute-force things with ChatGPT. The MabeKit AFL generator is a real breakthrough.  Every once in a while in trading, there’s a real moment of clarity and forward progress. The AFL code generator feels like one of those moments.  I was able to build two strategies end-to-end and get them running in AmiBroker.&amp;quot; - Mike A.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=afl_generator&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How Should I Backtest This Volume Spike Strategy?&quot;</title>
        <link href="https://davemabe.com/how-should-i-backtest-this-volume-spike-strategy"/>
        <id>https://davemabe.com/how-should-i-backtest-this-volume-spike-strategy</id>
        <published>2026-01-21T15:30:00-05:00</published>
        <updated>2026-01-21T07:30:02-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from Wesley (&lt;em&gt;name used with permission, lightly edited for clarity&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Wesley:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve made a pine script in TradingView that gives me alerts if certain stocks produce a volume spike of 2x average volume (based on the volume MA 20 and on the 2m chart). That is so often &amp;quot;ending&amp;quot; volume or a breakout candle. Now I&amp;#039;m testing how often it really leads to a reversal or breakout if it happens around yesterday&amp;#039;s high or low. Do you have any tips on how to approach this to get the best results from the backtest? This is the first time I&amp;#039;m doing this.&lt;br&gt;&lt;br&gt;Also, how do you automate this with Excel? I&amp;#039;m doing everything manually.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;First of all, you&amp;#039;ll tie yourself in knots trying to do this in TradingView.&lt;/p&gt;&lt;p&gt;The big problem with TradingView is that you can only backtest one symbol at a time, but even more importantly, you can&amp;#039;t add custom columns to a backtest.&lt;/p&gt;&lt;p&gt;Because of that, you&amp;#039;ll be stuck in backtest world with TradingView, never really making much progress.&lt;/p&gt;&lt;p&gt;Applying an idea like this to the entire US equities market will allow you to come up with a strong signal, since there are so many tradeable equities where this event occurs every day.&lt;/p&gt;&lt;p&gt;When you try to apply this to a signal instrument like a futures contract, you necessarily have to weaken the signal significantly to generate enough trades for the strategy to even make sense.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how I would approach this in Amibroker.&lt;/p&gt;&lt;p&gt;I&amp;#039;d create a backtest that goes long on every volume spike.  (Your definition of volume spike will likely need to be a lot tighter, i.e. stronger, otherwise you&amp;#039;ll get too much noise in your backtest.)&lt;/p&gt;&lt;p&gt;Apply the MabeKit column library and run the backtest.&lt;/p&gt;&lt;p&gt;Run this through the Cruncher and it will tell you how to improve the strategy on the long side.&lt;/p&gt;&lt;p&gt;However, and this is key, as you iterate and apply rules from the Cruncher to your strategy on the long side, take note of the sets of trades you&amp;#039;re removing.&lt;/p&gt;&lt;p&gt;They&amp;#039;ll be strongly negative on the long side, which you&amp;#039;d naturally be removing from your long strategy.&lt;/p&gt;&lt;p&gt;But particularly poor long trades are a great source for creating an opposite strategy on the short side.&lt;/p&gt;&lt;p&gt;So not only will the Cruncher show you the way for a long strategy here, but it will tell you how to generate a short strategy at the same time.&lt;/p&gt;&lt;p&gt;I&amp;#039;d look for a natural way to split these trades into long and short strategies based on the rules suggested by the Cruncher.&lt;/p&gt;&lt;p&gt;So you start with one basic concept, but you end up with two distinct strategies from it.&lt;/p&gt;&lt;p&gt;Great question, Wesley, and thanks for sharing with the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable? My column library is now included with MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;Get Instant Access »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Why Use a Scanner for the Daily Review?&quot;</title>
        <link href="https://davemabe.com/why-use-a-scanner-for-the-daily-review"/>
        <id>https://davemabe.com/why-use-a-scanner-for-the-daily-review</id>
        <published>2026-01-20T15:30:00-05:00</published>
        <updated>2026-01-20T06:48:15-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from long-time list member, Marek.  (Name used with permission)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Marek:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;As a systematic trader, you are doing the daily review of a strategy&amp;#039;s live trades vs backtest and looking at the charts to get ideas.  Why then would you use additional scanners to check the movers?&lt;/p&gt;&lt;p&gt;Is it for additional ideas or to get the feel for the market regime?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The daily review I do at the end of the trading day is sacred for me.&lt;/p&gt;&lt;p&gt;You&amp;#039;re right, I&amp;#039;m mainly analyzing live trades versus the backtest.&lt;/p&gt;&lt;p&gt;As I do that, I&amp;#039;m asking myself questions like:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Did I miss any trades, and if so, why?  (This is important even when you miss &lt;em&gt;losing&lt;/em&gt; trades.)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How much profit was lost due to slippage and partial fills?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What trades were just outside my rules?  (Is there some way that would make sense to include them in my strategy?)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;This part of the review is the most important since it involves scaling an already working strategy - and therefore the potential gains are more concrete.&lt;/p&gt;&lt;p&gt;The second part of the review is equally important in the long run, but more vague in the short term.&lt;/p&gt;&lt;p&gt;I&amp;#039;m looking for symbols that moved that I haven&amp;#039;t captured in one of my existing strategies.&lt;/p&gt;&lt;p&gt;And brainstorming ways to create new strategies that give me coverage of that move.&lt;/p&gt;&lt;p&gt;The questions to ask yourself here are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How unusual is this move?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;If it&amp;#039;s rare, can the parameters be relaxed to find more related unusual moves?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;If you HAD to participate in that move, how would you have done it?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;In this phase, I&amp;#039;m looking for ways to create a new backtest that I can feed to the Strategy Cruncher to give me a completely new trading edge.&lt;/p&gt;&lt;p&gt;The second phase is where scanners come in handy by presenting you with a steady stream of potential trades/ideas.&lt;/p&gt;&lt;p&gt;The daily review might seem like a lot, but the more you do it, the quicker and better you&amp;#039;ll get at it.&lt;/p&gt;&lt;p&gt;It&amp;#039;s the one non-negotiable thing I do every trading day.&lt;/p&gt;&lt;p&gt;Thanks for the question, Marek!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Discretionary Traders Can Add Automated Strategies</title>
        <link href="https://davemabe.com/how-discretionary-traders-can-add-automated-strategies"/>
        <id>https://davemabe.com/how-discretionary-traders-can-add-automated-strategies</id>
        <published>2026-01-19T15:30:00-05:00</published>
        <updated>2026-01-19T07:29:24-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss how discretionary traders are equipped with the ability to create automated strategies. Still, they often struggle to clearly see the path.&lt;/p&gt;&lt;p&gt;We go over:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How &amp;quot;visual&amp;quot; backtesting is not real backtesting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Discretionary traders try to replace what they&amp;#039;re doing with automation - but that&amp;#039;s wrong&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to create a completely new strategy from the ground up to be automated&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to build your &amp;quot;idea noticing&amp;quot; muscle&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-discretionary-traders-can-add-automated-strategies&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with MabeKit. &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;How does backtesting work when market regimes constantly change?&quot;</title>
        <link href="https://davemabe.com/how-does-backtesting-work-when-market-regimes-constantly-change"/>
        <id>https://davemabe.com/how-does-backtesting-work-when-market-regimes-constantly-change</id>
        <published>2026-01-16T15:30:00-05:00</published>
        <updated>2026-01-16T08:03:54-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a great question from backtesting skeptic, Jan (&lt;em&gt;name used with permission, lightly edited for clarity&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Jan:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I am a bit skeptical about backtesting because, by its very nature, it always measures the past, which will, no matter what, be different from the future (or present). For example, is there a difference between testing stocks in a bullish environment (or before Trump was elected) compared to today, where the context is significantly different? How does backtesting take that into account?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Sure, the world is constantly changing - and that includes the markets.&lt;/p&gt;&lt;p&gt;But that doesn&amp;#039;t imply that everything is changing and therefore completely unpredictable.&lt;/p&gt;&lt;p&gt;As I&amp;#039;m typing this, I&amp;#039;m looking out my window in my office at the horizon where the sun is getting ready to rise.&lt;/p&gt;&lt;p&gt;I can&amp;#039;t guarantee with 100% certainty that the sun will rise, but I would bet a lot of money on a prediction that it will.&lt;/p&gt;&lt;p&gt;While many things in the market change and are impossible to predict, there are plenty of patterns that do consistently repeat.&lt;/p&gt;&lt;p&gt;Sure, you can backtest patterns that don&amp;#039;t repeat, but that&amp;#039;s the whole point of backtesting:&lt;/p&gt;&lt;p&gt;To help you find the patterns that repeat in a consistent enough way to profit from.&lt;/p&gt;&lt;p&gt;Backtesting is a superpower precisely because it&amp;#039;s a way to detect the patterns that are consistent across time.&lt;/p&gt;&lt;p&gt;And when you find a pattern that&amp;#039;s consistent across market regime changes, that creates a lot of confidence in your strategy.&lt;/p&gt;&lt;p&gt;Notice I always use the word &lt;strong&gt;confidence&lt;/strong&gt; and not &lt;strong&gt;certainty&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll never be 100% certain that a strategy will continue working (this is why you don&amp;#039;t risk your entire account with every trade).&lt;/p&gt;&lt;p&gt;But you don&amp;#039;t need to be certain to make money in the markets - you just need to have an edge.&lt;/p&gt;&lt;p&gt;And your edge doesn&amp;#039;t have to be incredibly strong to make money.&lt;/p&gt;&lt;p&gt;Even a subtle trading edge, if it&amp;#039;s consistent, can be very profitable.  (In fact, I&amp;#039;d say I prefer this kind of strategy.)&lt;/p&gt;&lt;p&gt;Great question, Jan.  I like your skeptical stance - that mindset should serve you well in your trading!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Wish you could backtest your ideas - without spending months learning to code? Run your first backtest in an afternoon using my Amibroker AFL Course. &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;But There's More Leverage in Futures!&quot;</title>
        <link href="https://davemabe.com/but-theres-more-leverage-in-futures"/>
        <id>https://davemabe.com/but-theres-more-leverage-in-futures</id>
        <published>2026-01-15T15:30:00-05:00</published>
        <updated>2026-01-15T08:51:46-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several readers responded to my post on &lt;a href=&quot;https://davemabe.com/why-trading-stocks-is-easier-than-futures&quot;&gt;why trading stocks is easier than trading futures&lt;/a&gt;, pointing out that there&amp;#039;s more leverage when trading futures compared to stocks.&lt;/p&gt;&lt;p&gt;This is true, but it ignores a very important point.&lt;/p&gt;&lt;p&gt;For the vast majority of traders - even those with small accounts - the limiting factor is &lt;strong&gt;not&lt;/strong&gt; buying power.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no point in having lots of leverage if you&amp;#039;re never going to be able to take advantage of it.&lt;/p&gt;&lt;p&gt;The binding constraint for most traders is creating a strategy that can scale at all.&lt;/p&gt;&lt;p&gt;Most traders never get to the point of confidence to be able to truly take advantage of the leverage, even with trading stocks.&lt;/p&gt;&lt;p&gt;And creating a strategy that can scale is far easier with stocks than with futures for the reasons I outlined in the original post.&lt;/p&gt;&lt;p&gt;Thanks for the responses.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money? Create your own in minutes, not months with MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Version of Amibroker?</title>
        <link href="https://davemabe.com/which-version-of-amibroker"/>
        <id>https://davemabe.com/which-version-of-amibroker</id>
        <published>2026-01-14T15:30:00-05:00</published>
        <updated>2026-01-14T06:53:29-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several traders who want to get started with Amibroker ask me which version they should get.&lt;/p&gt;&lt;p&gt;It comes up enough that I thought I&amp;#039;d answer it here.&lt;/p&gt;&lt;p&gt;My suggestion is to get the Professional Edition.  There are several reasons why this version is far superior to the Standard Edition.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Automatic MFE/MAE calculations in a backtest (great for figuring out optimal stop loss levels)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Multi-threaded analysis window&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;64-bit version (important for backtesting lots of symbols)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Wait for backfill&lt;/strong&gt; in analysis windows (crucial for real-time trading)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There&amp;#039;s no contest, really.&lt;/p&gt;&lt;p&gt;What about Amibroker Ultimate?&lt;/p&gt;&lt;p&gt;This includes the Professional Edition, plus the AmiQuote data downloader and the AFL Code Wizard.&lt;/p&gt;&lt;p&gt;The AmiQuote tool downloads free daily data from internet sources.  Any trader on the list will quickly want to use something more reliable than this.&lt;/p&gt;&lt;p&gt;I haven&amp;#039;t talked to a trader yet who relies heavily on the AFL Code Wizard, so I don&amp;#039;t believe that&amp;#039;s necessary.&lt;/p&gt;&lt;p&gt;Conclusion: just get the Professional Edition.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Think you have trading skill but nothing concrete to test? Start with the proven backtest included in my Amibroker AFL Course and make it your own. &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=proven&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Guest Appearance on the SMB Podcast and Upcoming IBKR Webinar</title>
        <link href="https://davemabe.com/guest-appearance-on-the-smb-podcast-and-upcoming-ibkr-webinar"/>
        <id>https://davemabe.com/guest-appearance-on-the-smb-podcast-and-upcoming-ibkr-webinar</id>
        <published>2026-01-13T15:30:00-05:00</published>
        <updated>2026-01-13T07:24:35-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Garrett and Tim (long-time list members) had me on the SMB Podcast several days ago to talk about backtesting, automated trading, and a wide range of topics.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=pPIPvyticq4&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Here are the show notes:&lt;/p&gt;&lt;p&gt;In this episode of the Trading Floor podcast, we dive into the essential process that every trader must understand to avoid failure in their trading strategy. Host Garrett and co-host Tim engage with expert Dave Mabe, who emphasizes the importance of backtesting and developing a solid strategy. Viewers will learn the significance of taking ownership of their trading, optimizing strategies through data analysis, and the art of skipping bad trades, making this video a must-watch for active and day traders looking to enhance their execution and decision-making skills.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;00:00 Why Most Traders Get the Same Results (and Why Some Don’t)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;02:10 Dave Mabe’s Journey: From Discretionary to Fully Systematic&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;05:00 Strategies Don’t Need to Be Unique to Be Profitable&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;08:45 Optimization Is the Real Edge&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;11:20 Why You Must Build Your Own Strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;13:45 How Dave Finds New Strategy Ideas&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;16:00 Turning Losing Trades into New Strategies&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;18:00 Backtesting as a Truth Serum&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;22:15 Why Your First Backtest Should Cast a Wide Net&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;27:00 Can You Cast the Net Too Wide?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;31:00 Strong Signals vs Wide Exploration&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;37:40 The Power of a Column (Indicator) Library&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;44:05 If You Could Only Use 3 Indicators Forever&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;59:00 Profit Targets, Partial Profits, and What the Data Says&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;01:12:10 The Billboard Message Every Trader Needs to Hear&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Thanks, Garrett and Tim - that was a lot of fun.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sharing is caring!&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you enjoyed this episode, please consider sharing it with a few friends who might find it useful. Thanks!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Interactive Brokers is having me on another webinar this Thursday at 2pm ET.  The title is &lt;strong&gt;Create Your Own Trading Strategy without Curve Fitting&lt;/strong&gt;. Note that even if you aren&amp;#039;t able to attend, you&amp;#039;ll be able to view a recording afterwards if you register:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://attendee.gotowebinar.com/register/9011940801238528343?source=Dave+Mabe&quot;&gt;REGISTER FOR THE WEBINAR »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Next Steps with Amibroker</title>
        <link href="https://davemabe.com/next-steps-with-amibroker"/>
        <id>https://davemabe.com/next-steps-with-amibroker</id>
        <published>2026-01-12T15:30:00-05:00</published>
        <updated>2026-01-09T13:34:07-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, I continue helping Michael create a first backtest in Amibroker.&lt;/p&gt;&lt;p&gt;You might think &amp;quot;backtesting is backtesting,&amp;quot; but we cover many of the differences between RealTest and Amibroker, as well as their implications.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What makes AI so bad at generating good AFL code for a backtest in Amibroker&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The better you get at understanding how AFL works, the better your use of AI gets&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How a column library makes all the difference in creating P&amp;amp;L&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Quick backtests can promote bad habits&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;I also mentioned the new MabeKit AFL Generator tool.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/next-steps-with-amibroker&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S.&lt;/p&gt;&lt;p&gt;Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Automating My Way to Financial Freedom - Quant Room Podcast</title>
        <link href="https://davemabe.com/automating-my-way-to-financial-freedom-quant-room-podcast"/>
        <id>https://davemabe.com/automating-my-way-to-financial-freedom-quant-room-podcast</id>
        <published>2026-01-09T15:30:00-05:00</published>
        <updated>2026-01-09T08:02:50-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Marcus C. had me on the Quant Room podcast a few days ago to talk about systematic trading.&lt;/p&gt;&lt;p&gt;We touched on the following topics:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Parallels between athletics and trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The importance of reinventing yourself as a trader&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;My time creating StockTickr, the first online trading journal that I sold to Trade-Ideas&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The value of normalized columns in a backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Handling slippage in live trading&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=cfIJNMHSqYI&quot;&gt;CHECK OUT THE EPISODE NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Sharing is caring!&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you enjoyed this episode, please consider sharing it with a few friends who might find it useful. Thanks!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Can I Do Sector Relative Strength Calculations in Trade-Ideas?&quot;</title>
        <link href="https://davemabe.com/can-i-do-sector-relative-strength-calculations-in-trade-ideas"/>
        <id>https://davemabe.com/can-i-do-sector-relative-strength-calculations-in-trade-ideas</id>
        <published>2026-01-08T15:30:00-05:00</published>
        <updated>2026-01-08T06:33:56-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from MabeKit subscriber, Jeremy Q. (name used with permission, question lightly edited for clarity).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Jeremy Q:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Is it possible to build a very specific sector relative strength Top List in Trade-Ideas?  Custom baskets of stock, robotics, photonics, fiber, satellite, etc.&lt;/p&gt;&lt;p&gt;Average the RVOL, %change from Open, etc, and then rank them?&lt;/p&gt;&lt;p&gt;I&amp;#039;m using Gemini to do a version in Python now, but I have Trade-Ideas and I thought you might have an easier solution.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Yes, Trade-Ideas has a nice way to do this based on one of my favorite features I added to the program over a decade ago.&lt;/p&gt;&lt;p&gt;On both the alert and top list windows in Trade-Ideas, there&amp;#039;s a setting you can turn on called CSV Logging.&lt;/p&gt;&lt;p&gt;In the main TI window, go to Tools, Options and check the box for &lt;strong&gt;Display the CSVLogger tool&lt;/strong&gt;.  See image below:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/enable_csvlogger_tool_tradeideas.png&quot;&gt;Once enabled, you&amp;#039;ll now see an &lt;strong&gt;Alert Logging&lt;/strong&gt; option at the bottom of the context menu on all your alert and top list windows:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/alert_logging_enabled_tradeideas.png&quot;&gt;&lt;/p&gt;&lt;p&gt;Check the &lt;strong&gt;Alert Logging&lt;/strong&gt; box in a window, and it will write a CSV file to the &lt;code&gt;TradeIdeasPro&lt;/code&gt; directory every time there&amp;#039;s an update to the window.&lt;/p&gt;&lt;p&gt;Now, you can set up top list windows for whatever sector you want to track, along with thresholds for each.&lt;/p&gt;&lt;p&gt;Then you can process these CSV files and do interesting things with them.&lt;/p&gt;&lt;p&gt;For example, you could have a Python script parse them and compare stats across sectors.&lt;/p&gt;&lt;p&gt;An even simpler idea might be to create a single top list that spans all sectors, add the sector as a column, and use a minimum value of 3 for relative volume.&lt;/p&gt;&lt;p&gt;Now you can parse a single CSV file and group by sector to show sectors with the largest number of symbols trading significantly above their relative volume.&lt;/p&gt;&lt;p&gt;There are lots of creative things you can do with the real-time CSV output if you put your mind to it.&lt;/p&gt;&lt;p&gt;This unlimited flexibility is why I love this feature so much.&lt;/p&gt;&lt;p&gt;Thanks for sharing with the group, Jeremy!&lt;/p&gt;&lt;p&gt;(BTW, I&amp;#039;m pretty sure this one feature has created more P&amp;amp;L for traders than any other feature I added to Trade-Ideas - by a large margin.  But that&amp;#039;s a story for another day.)&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Wish you could backtest your ideas - without spending months learning to code? Run your first backtest in an afternoon using my Amibroker AFL Course.  &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;Get Instant Access Now&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Should I Use An Online Course To Learn Python?&quot;</title>
        <link href="https://davemabe.com/should-i-use-an-online-course-to-learn-python"/>
        <id>https://davemabe.com/should-i-use-an-online-course-to-learn-python</id>
        <published>2026-01-07T15:30:00-05:00</published>
        <updated>2026-01-07T08:09:01-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from Lindee (name used with permission, lightly edited for clarity):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Lindee:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I signed up for PyCharm but have not made any headway.&lt;/p&gt;&lt;p&gt;Instead, as a beginner to get any kind of traction, do you recommend one of the games like Codify or Codefinity for learning Python? I could add it to my Duolingo practice, where I have maintained a long streak.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve seen these online courses for learning programming, and I&amp;#039;ve never really paid them much attention.&lt;/p&gt;&lt;p&gt;The issue is one of motivation.&lt;/p&gt;&lt;p&gt;How can you really get motivated to learn something when the tasks in these courses are, by definition, arbitrary and pointless?&lt;/p&gt;&lt;p&gt;The benefit at the end is vague and unclear.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll almost always run out of steam when attempting them, and you won&amp;#039;t retain much knowledge.&lt;/p&gt;&lt;p&gt;A far better approach is to pick some aspect of your trading workflow that could benefit from automation.&lt;/p&gt;&lt;p&gt;And challenge yourself to automate it and work it into your process.&lt;/p&gt;&lt;p&gt;The real benefit here is that from the moment you put it in place, your life improves.&lt;/p&gt;&lt;p&gt;Your trading gets a little bit better (sometimes a LOT better).&lt;/p&gt;&lt;p&gt;You can feel the improvement in your workflow every day from then on.&lt;/p&gt;&lt;p&gt;The &amp;quot;learning Python&amp;quot; part is secondary.&lt;/p&gt;&lt;p&gt;Once you do this, you&amp;#039;ll start noticing other ways to make your process better.&lt;/p&gt;&lt;p&gt;Do this enough, and it will be impossible NOT to improve your P&amp;amp;L.&lt;/p&gt;&lt;p&gt;Thanks for the question, Lindee!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S.&lt;/p&gt;&lt;p&gt;Does it feel like your strategy works for everyone but you?&lt;/p&gt;&lt;p&gt;Make your strategy profitable with MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=make_profitable&quot;&gt;Get Started Now&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Next Steps When You've Had Discretionary Success</title>
        <link href="https://davemabe.com/next-steps-when-youve-had-discretionary-success"/>
        <id>https://davemabe.com/next-steps-when-youve-had-discretionary-success</id>
        <published>2026-01-06T15:30:00-05:00</published>
        <updated>2026-01-06T07:05:47-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;So you&amp;#039;ve had success by manually trading a strategy.&lt;/p&gt;&lt;p&gt;However, you know that a systematic approach will be more robust and sustainable in the long run.&lt;/p&gt;&lt;p&gt;And a lot less stressful during the trading day because you&amp;#039;ll be following a script versus making decisions - a subtle but crucial difference.&lt;/p&gt;&lt;p&gt;I see lots of traders in this situation, and I&amp;#039;ve helped many make this transition.&lt;/p&gt;&lt;p&gt;But where&amp;#039;s the best place to start?&lt;/p&gt;&lt;p&gt;There are two approaches to take here, and one of them is significantly harder.&lt;/p&gt;&lt;p&gt;First, the hard way: completely replace your current manual strategy with an automated version.&lt;/p&gt;&lt;p&gt;This is much harder than it seems for a variety of reasons.&lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;It&amp;#039;s often hard to completely recreate all your discretionary rules in code for a backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;If you are able to recreate it, you&amp;#039;ll have a distinct cutover point where you go from 100% manual to 100% automated - the step always takes longer than you imagine&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Transitioning from a known quantity to a fundamentally different approach is hard&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;All these things are magnified when you&amp;#039;re producing a steady P&amp;amp;L from your manual strategy.&lt;/p&gt;&lt;p&gt;There&amp;#039;s going to be pressure for you to make it work at the cutover point.&lt;/p&gt;&lt;p&gt;Setting an artificial deadline for yourself in trading is almost always a bad idea.&lt;/p&gt;&lt;p&gt;A much better approach is to continue trading your manual strategy (it&amp;#039;s producing nice profits - don&amp;#039;t change it yet) and create a tangential strategy designed from the beginning to be automated.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no need to rip out something that&amp;#039;s working.&lt;/p&gt;&lt;p&gt;Your automated approach can operate independently and in parallel to your working manual strategy.&lt;/p&gt;&lt;p&gt;It will be a lot less stressful, and you&amp;#039;ll have a much better chance of success.&lt;/p&gt;&lt;p&gt;A benefit of this approach is that you&amp;#039;ll have an excellent way to gauge your automated strategy by comparing it to your familiar manual strategy.&lt;/p&gt;&lt;p&gt;But the best part is that the automated strategy ends up being &lt;strong&gt;completely additive&lt;/strong&gt; to your trading business and your P&amp;amp;L.&lt;/p&gt;&lt;p&gt;And then you&amp;#039;ll be in a much better position to make changes to your manual strategy.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money? Create your own in minutes, not months with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Getting Started with Amibroker</title>
        <link href="https://davemabe.com/getting-started-with-amibroker"/>
        <id>https://davemabe.com/getting-started-with-amibroker</id>
        <published>2026-01-05T15:30:00-05:00</published>
        <updated>2026-01-05T06:29:24-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, I offer advice and feedback to Michael, who is learning to use Amibroker for the first time.&lt;/p&gt;&lt;p&gt;He&amp;#039;s coming from RealTest, so we go over the similarities and differences between the two platforms.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How RealTest is great for daily data, but hits a wall for most intraday trading strategies&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Amibroker is not just a backtester; it’s a full charting, analysis, and execution environment.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Backfilling with IQFeed versus Polygon (there is really no contest)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Best practices for databases in Amibroker&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How using the template that comes with my AFL course is crucial for using LLMs (see P.S. below)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;p&gt;If you&amp;#039;re thinking about using Amibroker, you don&amp;#039;t want to miss this episode.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/getting-started-with-amibroker&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Can I Backtest a Scalping Strategy in Amibroker?&quot;</title>
        <link href="https://davemabe.com/can-i-backtest-a-scalping-strategy-in-amibroker"/>
        <id>https://davemabe.com/can-i-backtest-a-scalping-strategy-in-amibroker</id>
        <published>2026-01-02T15:30:00-05:00</published>
        <updated>2026-01-02T08:13:35-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;List member Kacper sent in this question about a scalping strategy that works well for him. He&amp;#039;s curious if you can backtest this strategy using Amibroker.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Kacper:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;My strategy is a very short-term scalping strategy, usually biased towards the long side. I&amp;#039;m a momentum trader, so I&amp;#039;m in and out in approximately 10 seconds, sometimes longer, sometimes shorter.&lt;/p&gt;&lt;p&gt;Is it possible to backtest and also automate such fast scalping trades using Amibroker?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I don&amp;#039;t have much experience backtesting a strategy on such a small timeframe in Amibroker, but it should work.&lt;/p&gt;&lt;p&gt;I just set up a new database in Amibroker with 1 million 1-second bars using IQFeed as the data source.&lt;/p&gt;&lt;p&gt;I added the SPY to the database and backfilled, and I get data going back to 11/5 (almost 2 months).&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a screenshot showing the Quote Editor in Amibroker that shows what&amp;#039;s in the database for a particular symbol:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/amibroker_database_1_second_bars.png&quot;&gt;Here are the options for the database size in Amibroker:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/amibroker_database_timeframe_options.png&quot;&gt;I&amp;#039;d be careful using a timeframe this small, though.  Any issues with small timeframes are going to be magnified here, so keep that in mind.&lt;/p&gt;&lt;p&gt;Thanks for the question and for sharing with the list, Kacper!&lt;/p&gt;&lt;p&gt;Next time, I&amp;#039;ll share a plan for a common scenario: discretionary traders who&amp;#039;ve had some success and want to start backtesting.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Afraid to size up because you don’t trust your edge? Build confidence to trade your strategy with bigger size with MabeKit.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=sizing_up&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Changes to Your Routine for 2026</title>
        <link href="https://davemabe.com/changes-to-your-routine-for-2026"/>
        <id>https://davemabe.com/changes-to-your-routine-for-2026</id>
        <published>2026-01-01T15:30:00-05:00</published>
        <updated>2026-01-01T08:11:18-05:00</updated>
        <summary/>
        <content type="html">&lt;blockquote&gt;&lt;p&gt;&amp;quot;Routine, in an intelligent man, is a sign of ambition.&amp;quot; - W. H. Auden&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Your trading habits directly translate into results.&lt;/p&gt;&lt;p&gt;Professional chefs don&amp;#039;t need to be reminded to sharpen their knives.&lt;/p&gt;&lt;p&gt;If your 2025 results weren&amp;#039;t as good as you hoped, how will 2026 be different?&lt;/p&gt;&lt;p&gt;What&amp;#039;s your concrete plan to sharpen &lt;em&gt;your&lt;/em&gt; trading knives in the new year?&lt;/p&gt;&lt;p&gt;Are you using a butter knife without realizing it?&lt;/p&gt;&lt;p&gt;Your process and tools are everything.&lt;/p&gt;&lt;p&gt;One of the biggest turning points for traders is when they stop trying to copy what someone else is trading and create a process for making their own edges.&lt;/p&gt;&lt;p&gt;Have you made that shift yet?&lt;/p&gt;&lt;p&gt;Happy New Year!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language? You&amp;#039;re not alone! You need my Amibroker AFL Course. It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Trading Stocks Is Easier Than Futures</title>
        <link href="https://davemabe.com/why-trading-stocks-is-easier-than-futures"/>
        <id>https://davemabe.com/why-trading-stocks-is-easier-than-futures</id>
        <published>2025-12-31T15:30:00-05:00</published>
        <updated>2025-12-31T07:36:12-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question that comes up a lot, most recently from Karl J. (&lt;em&gt;name used with permission, question lightly edited for brevity&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Karl J.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I have been using Tradestation for a long time.  Focused mainly on futures, I can consistently achieve around a 65% success rate.  My biggest problems are getting out early by moving stops, being too chicken to take a good trade, and other stuff that I think automation could help with.&lt;/p&gt;&lt;p&gt;I would love to hear your opinion about why you think I can do better with stocks instead of futures.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;One thing I&amp;#039;ve learned to identify in traders is when they have more potential for success than they realize.&lt;/p&gt;&lt;p&gt;Perhaps the strongest indicator for this is when you&amp;#039;re trading a futures contract systematically and have had results even remotely resembling mild success.&lt;/p&gt;&lt;p&gt;My consistent message to traders who reach out to me in this situation is: &lt;strong&gt;you&amp;#039;ll have more success trading stocks&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;This often surprises traders when I tell them this, so I&amp;#039;ve written this post to explain why.&lt;/p&gt;&lt;p&gt;The first reason is pure math: if you can find edge in a single instrument, imagine what you could find if you applied the same process to the thousands of stocks in the US equities market.&lt;/p&gt;&lt;p&gt;The strategies you&amp;#039;ll find for trading will yield more trades, stronger profitability, and greater staying power with stocks, just based on the numbers alone.&lt;/p&gt;&lt;p&gt;Second, your pool of competitors is smaller. Almost every trader on the planet has a chart of the SPY on their screens.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to create a rudimentary program to backtest a single instrument.  (I&amp;#039;m looking at you, TradingView.)&lt;/p&gt;&lt;p&gt;Anyone can do that with almost no effort.&lt;/p&gt;&lt;p&gt;Add the fact that there&amp;#039;s so much liquidity in the ES, and you&amp;#039;re now competing with &lt;em&gt;institutions&lt;/em&gt; as well.&lt;/p&gt;&lt;p&gt;It&amp;#039;s much harder to create a backtest that works across thousands of stocks, so your competition is significantly smaller.&lt;/p&gt;&lt;p&gt;So if you&amp;#039;ve had any level of fleeting success trading a system in the ES or another futures contract, you&amp;#039;re already shown that you can accomplish the hardest part: creating a profitable strategy.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve already developed execution experience as well, which will crossover to stocks.&lt;/p&gt;&lt;p&gt;Once you get the basics of trading stocks, there&amp;#039;s no reason you shouldn&amp;#039;t be able to create a much stronger edge that trades a lot more frequently.&lt;/p&gt;&lt;p&gt;This became super clear to me when I abandoned 4 profitable futures strategies several years ago - there was just more profit potential in the edges I find in stocks.&lt;/p&gt;&lt;p&gt;Great question, Karl, and thanks for sharing with the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money? Create your own in minutes, not months with MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Ship Something Every Day</title>
        <link href="https://davemabe.com/ship-something-every-day"/>
        <id>https://davemabe.com/ship-something-every-day</id>
        <published>2025-12-30T15:30:00-05:00</published>
        <updated>2025-12-30T08:55:26-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;There&amp;#039;s a concept in software development called &amp;quot;ship something every day.&amp;quot;&lt;/p&gt;&lt;p&gt;It sounds easy, but when you&amp;#039;re creating software that many people use, it&amp;#039;s hard because you don&amp;#039;t want to break things.&lt;/p&gt;&lt;p&gt;To get to that point when developing software, there are a lot of guardrails you have to put in place to make things build smoothly and roll out to production seamlessly.&lt;/p&gt;&lt;p&gt;But once you get that foundational architecture in place, you&amp;#039;re off to the races.&lt;/p&gt;&lt;p&gt;Without the infrastructure in place, any change feels monumental.&lt;/p&gt;&lt;p&gt;And if you go for extended periods without making any changes to the software - even trivial ones - it becomes harder to make any change.&lt;/p&gt;&lt;p&gt;&amp;quot;If it ain&amp;#039;t broke, don&amp;#039;t fix it&amp;quot; mentality creeps in, and the entire process fossilizes.&lt;/p&gt;&lt;p&gt;The same phenomenon can happen with your trading strategies.&lt;/p&gt;&lt;p&gt;If it&amp;#039;s working well enough, you postpone changes, and then come the excuses.&lt;/p&gt;&lt;p&gt;&amp;quot;I don&amp;#039;t want to make a change, because it might be curve fitting.&amp;quot;&lt;/p&gt;&lt;p&gt;Imagine how much better your trading would be if you made one improvement every day.&lt;/p&gt;&lt;p&gt;No matter how small the improvement, do something every day to get better.&lt;/p&gt;&lt;p&gt;With this mentality, you&amp;#039;ll begin to generate new ideas for improvement.&lt;/p&gt;&lt;p&gt;Within a month, you&amp;#039;ll be a completely different trader.&lt;/p&gt;&lt;p&gt;In a year, you&amp;#039;ll be crushing it.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S.&lt;/p&gt;&lt;p&gt;Are you sick of second-guessing yourself every time you click buy or sell?&lt;/p&gt;&lt;p&gt;Trade with conviction using MabeKit.  &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=second_guess&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Run Your Trading Like A Franchise</title>
        <link href="https://davemabe.com/how-to-run-your-trading-like-a-franchise"/>
        <id>https://davemabe.com/how-to-run-your-trading-like-a-franchise</id>
        <published>2025-12-29T15:30:00-05:00</published>
        <updated>2025-12-29T08:12:10-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve all probably heard how you should &amp;quot;treat your trading like a business.&amp;quot;&lt;/p&gt;&lt;p&gt;But most small businesses fail within 5 years.&lt;/p&gt;&lt;p&gt;So you should treat your trading not like any small business, but the type of business with a much higher success rate: a franchise business.&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss the actual nuts and bolts of what that means:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Systematize everything&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A process for eliminating low-value work&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What makes sense to outsource and what you should keep in-house&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Make your trading survive without you&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-to-run-your-trading-like-a-franchise-business&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Wish you could backtest your ideas - without spending months learning to code? Run your first backtest in an afternoon using my Amibroker AFL Course:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What is the CSV Format and Why Is It Useful?</title>
        <link href="https://davemabe.com/what-is-the-csv-format-and-why-is-it-useful"/>
        <id>https://davemabe.com/what-is-the-csv-format-and-why-is-it-useful</id>
        <published>2025-12-26T15:30:00-05:00</published>
        <updated>2025-12-24T06:29:56-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a great question from another reader, Dr. D.  (Name used with permission)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dr. D:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;What is the CSV format and how is it used?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I love this question because the CSV format is one of my favorite hacks.&lt;/p&gt;&lt;p&gt;CSV stands for &amp;quot;comma-separated values.&amp;quot;&lt;/p&gt;&lt;p&gt;It&amp;#039;s a way to organize data in a spreadsheet format.&lt;/p&gt;&lt;p&gt;While there are certainly more convenient formats in certain contexts, the CSV format has two major advantages that make it stand the test of time.&lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;Minimal markup, making it efficient to read and store&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Widespread interoperability&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Lots of programs know how to create files in the CSV format, and lots know how to read files in the CSV format.&lt;/p&gt;&lt;p&gt;You can export backtests from Amibroker, Trade-Ideas, RealTest, Python, and many others into the format.&lt;/p&gt;&lt;p&gt;Simply double-click on a CSV file in Excel, and it will know exactly how to handle it.&lt;/p&gt;&lt;p&gt;In fact, I use it so often that I set CSV as the default format for saving a file in Excel.&lt;/p&gt;&lt;p&gt;The CSV format isn&amp;#039;t perfect, but after 28 years of using it as my default, it&amp;#039;s hard to imagine an alternative being more convenient.&lt;/p&gt;&lt;p&gt;Great question, Dr. D.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Speaking of CSV files, I&amp;#039;ve recently documented a generic CSV format for backtests to feed to the Strategy Cruncher. Using this generic format allows you to use any software you want to create a backtest to get optimized into profitability without curve fitting using MabeKit.  &lt;a href=&quot;https://app.davemabe.com/optimizer/using-generic-csv?utm_source=email&amp;amp;utm_campaign=generic&quot;&gt;Here&amp;#039;s the doc&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Are Points and Figure, Heikin-Ashi, or Renko Charts Worth Using?</title>
        <link href="https://davemabe.com/are-points-and-figure-heikin-ashi-or-renko-charts-worth-using"/>
        <id>https://davemabe.com/are-points-and-figure-heikin-ashi-or-renko-charts-worth-using</id>
        <published>2025-12-25T15:30:00-05:00</published>
        <updated>2025-12-24T06:11:01-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from Dean J. (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dean J.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do you or have you used different types of charts, such as P&amp;amp;F, Heikin-Ashi, Renko, in trying to create strategies?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve literally never used any of those chart types.&lt;/p&gt;&lt;p&gt;I&amp;#039;m not morally opposed to using them, I just have never felt the need to use anything other than candlestick charts.&lt;/p&gt;&lt;p&gt;Charting is for efficiently visualizing price action.&lt;/p&gt;&lt;p&gt;Anything that complicates that process needs to be viewed skeptically and justified, with your default stance being to exclude anything that adds complexity.&lt;/p&gt;&lt;p&gt;For this reason, my charts are free of any clutter of indicators that don&amp;#039;t have a direct impact on a particular strategy.&lt;/p&gt;&lt;p&gt;Similar to indicators, these fancy chart types would simply be a distraction.&lt;/p&gt;&lt;p&gt;Keep your charts as simple as possible, then look closely and try to make them even simpler.&lt;/p&gt;&lt;p&gt;If I thought any of these chart types would give a perspective that would improve a strategy, I would add a column to my column library that captured that perspective instead.&lt;/p&gt;&lt;p&gt;Adding columns to your column library would be a much better use of your time.&lt;/p&gt;&lt;p&gt;Great question, Dean - thanks for sharing with the list!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a column library that would tell YOU how to make your strategy profitable?  My column library is now included with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=library&quot;&gt;MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You Are Backtesting, You Just Don't Realize It</title>
        <link href="https://davemabe.com/you-are-backtesting-you-just-dont-realize-it"/>
        <id>https://davemabe.com/you-are-backtesting-you-just-dont-realize-it</id>
        <published>2025-12-24T15:30:00-05:00</published>
        <updated>2025-12-24T05:51:37-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Backtesting is a trading superpower.&lt;/p&gt;&lt;p&gt;When I ask traders if they have experience with backtesting, most of them say no.&lt;/p&gt;&lt;p&gt;But the truth is, many of them do have experience backtesting - they&amp;#039;re just not calling it that.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re keeping a log of all the trades you&amp;#039;re making, then you&amp;#039;re already &amp;quot;backtesting&amp;quot; in some sense.&lt;/p&gt;&lt;p&gt;Running a backtest is not all that different from analyzing your trade journal.&lt;/p&gt;&lt;p&gt;The difference is that a backtest is entirely theoretical, while the trades you actually took are real.&lt;/p&gt;&lt;p&gt;Think about how long it would take to make trades, log them to a journal, and then analyze them once enough trades have accumulated.&lt;/p&gt;&lt;p&gt;It could take months or even years.&lt;/p&gt;&lt;p&gt;Backtesting is your cheat code to trading confidence.&lt;/p&gt;&lt;p&gt;And you&amp;#039;re probably already doing it on some level without realizing it.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you wish you had a strategy that actually made money?  Create your own in minutes, not months, with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=minutes&quot;&gt;MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">More Ideas or Faster Strategy Creation?</title>
        <link href="https://davemabe.com/more-ideas-or-faster-strategy-creation"/>
        <id>https://davemabe.com/more-ideas-or-faster-strategy-creation</id>
        <published>2025-12-23T15:30:00-05:00</published>
        <updated>2025-12-23T06:48:00-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;OK, quick question for you.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you could choose between one of these two options:&lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;Create 10x the ideas for trading strategies (starting points that you could create a backtest and optimize from)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A process that could backtest and optimize an idea 10x faster than what you&amp;#039;re currently doing&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;You have to choose one but not both.&lt;/p&gt;&lt;p&gt;Which do you choose and why?&lt;/p&gt;&lt;p&gt;Hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The ICE Method for Prioritizing Strategies</title>
        <link href="https://davemabe.com/the-ice-method-for-prioritizing-strategies"/>
        <id>https://davemabe.com/the-ice-method-for-prioritizing-strategies</id>
        <published>2025-12-22T15:30:00-05:00</published>
        <updated>2025-12-22T08:27:56-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, I discuss a prioritization method I implemented during my time as CTO at Trade-Ideas.&lt;/p&gt;&lt;p&gt;It worked so well that I&amp;#039;ve modified it for use by traders in prioritizing their work.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you have two ideas for strategies.  They both have varying trade counts and styles.  They differ from what you currently trade.  But you have more confidence in one idea than the other.&lt;/p&gt;&lt;p&gt;Which idea do you work on first?&lt;/p&gt;&lt;p&gt;It&amp;#039;s unclear!&lt;/p&gt;&lt;p&gt;This simple framework allows you to decide which one you should work on first.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/the-ice-method-for-prioritizing-strategies&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit? Join the other traders who reversed their drawdowns and are printing money with MabeKit:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;Get Instant Access&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What's a Good ROI for a Strategy?</title>
        <link href="https://davemabe.com/whats-a-good-roi-for-a-strategy"/>
        <id>https://davemabe.com/whats-a-good-roi-for-a-strategy</id>
        <published>2025-12-19T15:30:00-05:00</published>
        <updated>2025-12-19T07:41:55-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another question from Matthew A., a long-time reader from way back in my StockTickr days in the 2000s (!!).&lt;/p&gt;&lt;p&gt;(Name used with permission)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matthew A.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;What would you consider a decent “Return on Investment” for any strategy, and during back testing, how many years of consistency do you look for?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Most new traders evaluate strategies based on the annual percentage return.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s the wrong way to think about it.&lt;/p&gt;&lt;p&gt;The right way to evaluate short-term trading strategies is by the smoothness of the equity curve.&lt;/p&gt;&lt;p&gt;Experienced traders recognize that drawdowns are the most challenging part.&lt;/p&gt;&lt;p&gt;One glance at the equity curve is going to give you more information than any combination of metrics can.&lt;/p&gt;&lt;p&gt;A smooth equity curve provides &lt;strong&gt;stability&lt;/strong&gt; and &lt;strong&gt;flexibility&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;A strategy with a smooth equity curve can scale in various ways.&lt;/p&gt;&lt;p&gt;A strategy with a good &amp;quot;ROI&amp;quot; but large drawdowns is going to be very difficult to scale to significant size.&lt;/p&gt;&lt;p&gt;That&amp;#039;s why I always evaluate the equity curve - every other metric I look at is a distant second in comparison.&lt;/p&gt;&lt;p&gt;Remember: every trader who ever quit trading did so during a drawdown.&lt;/p&gt;&lt;p&gt;Thanks for the question and for sharing, Matthew!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Think you have trading skill but nothing concrete to test? Start with the proven backtest included in my Amibroker AFL Course and make it your own.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=proven&quot;&gt;Get Immediate Access »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Should You Use Ranking in Your Strategy?</title>
        <link href="https://davemabe.com/should-you-use-ranking-in-your-strategy"/>
        <id>https://davemabe.com/should-you-use-ranking-in-your-strategy</id>
        <published>2025-12-18T15:30:00-05:00</published>
        <updated>2025-12-18T08:59:36-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another excellent question from a reader, Radek R. (name used with permission, question edited lightly for readability)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Radek R.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I have been experimenting with the columns and filtering trades, and it seems to improve the strategy. However, since there are usually more trades than available slots, I am not sure how to select the ranking method&lt;br&gt;to decide which trades to take. The effect of PositionScore looks quite dramatic, so it would be great if there were a way to automatically select the best ones. Do you think this can be done without repeating the backtest each time?&lt;br&gt;&lt;br&gt;From your podcast, I heard that you generate a lot of trades at the beginning and then narrow them down with filters. I tried something similar by setting MaxOpenPositions to a high number, allowing me to capture all trades.&lt;/p&gt;&lt;p&gt;My concern is that when I later reduce it to the target number of slots, the columns may no longer be predictive. I would really appreciate your view on this.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Let&amp;#039;s define rank and what it means in this context.  You have a system with more trades than your buying power can handle.  Instead of taking all the trades or the first X trades until you run out of buying power, you decide to rank the top X trades by day by some factor and then take those.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve tried using rank as a way to filter trades in a system, but I always abandon it because it increases complexity, ultimately based on a variable that changes over time: your account size.&lt;/p&gt;&lt;p&gt;First of all, the trades in a system don&amp;#039;t care about their relative ranking to one another, so I&amp;#039;ve always felt a rank used in this way is arbitrary.&lt;/p&gt;&lt;p&gt;Because of that, it doesn&amp;#039;t provide a true path to confidence in your system.&lt;/p&gt;&lt;p&gt;Secondly, your account size will change over time.  Making decisions about your strategy that rely so much on your account size means you&amp;#039;ll be reoptimizing periodically for an arbitrary reason (remember: the market doesn&amp;#039;t care about your account size or your feelings.)&lt;/p&gt;&lt;p&gt;Using rank like this is a form of &lt;strong&gt;premature optimization&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I prefer to remove any arbitrary constraints and have my backtests assume unlimited buying power.  (That is the first step I take before running any backtest.)&lt;/p&gt;&lt;p&gt;That way, you&amp;#039;re set up to optimize your trading system for whatever your account size grows to. (And if you&amp;#039;re doing this right, your account will be growing a lot.)&lt;/p&gt;&lt;p&gt;If and when you run out of buying power, dig in and figure out at that point how to adjust your system to account for it.&lt;/p&gt;&lt;p&gt;Using rank is trying to address that issue as you optimize, which is the wrong time.&lt;/p&gt;&lt;p&gt;Keep it simple!&lt;/p&gt;&lt;p&gt;Great question, Radek!  Thanks for sharing with the group!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you have periods of trading success, only to see your strategy give it back?  What would it look like to get rid of the biggest losing trades from your strategy?&lt;/p&gt;&lt;p&gt;With MabeKit, you can.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=get_rid&quot;&gt;Get Instant Access Now »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Build Automated Trading Systems with Dave Mabe</title>
        <link href="https://davemabe.com/how-to-build-automated-trading-systems-with-dave-mabe"/>
        <id>https://davemabe.com/how-to-build-automated-trading-systems-with-dave-mabe</id>
        <published>2025-12-17T15:30:00-05:00</published>
        <updated>2025-12-17T07:46:57-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Anthony Nieto from the &lt;a href=&quot;https://www.investorsunderground.com/the-traders-journey/&quot;&gt;Investor Underground&amp;#039;s Trader&amp;#039;s Journey Podcast&lt;/a&gt; had me on recently to discuss backtesting and automated trading.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.investorsunderground.com/dave-mabe-interview/&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Here are the show notes from the episode:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How Dave’s engineering background shaped his approach to markets and risk.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Journaling trades and using simple data analysis before backtesting.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The moment backtesting became central to his process&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Differences Dave sees between retail and prop traders when they bring him strategies.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The full lifecycle: from hypothesis → live capital.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Common backtesting mistakes: overfitting, data mining, and more.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How Dave thinks about sizing up a strategy.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The tech stack: data sources, backtesting platforms, and building an automation pipeline&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Sharing is caring...&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you find this episode useful, please share it with two friends who might also benefit. TIA!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. When you&amp;#039;re ready to take your trading to the next level, MabeKit is the key.  Here&amp;#039;s what one RealTest trader said about it:&lt;/p&gt;&lt;p&gt;&amp;quot;The MabeKit Column Library is absolutely essential for using RealTest. It has a dual purpose: it immediately provides columns whose predictive value the Cruncher can identify, and it also serves as inspiration for adding new columns.  Practically speaking, without the column library, I wouldn’t be using RealTest.&amp;quot;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=rt_testimonial&quot;&gt;Get Instant Access to MabeKit&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Automation Versus AI</title>
        <link href="https://davemabe.com/automation-versus-ai"/>
        <id>https://davemabe.com/automation-versus-ai</id>
        <published>2025-12-16T15:30:00-05:00</published>
        <updated>2025-12-16T06:40:54-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;[Note: I have a backlog of excellent reader questions that I&amp;#039;m working through. If you&amp;#039;ve asked one and I haven&amp;#039;t responded yet, please be patient.]&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a good question from Jenny M. on automation and AI (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Jenny M:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Automating my trades is very interesting to me.  What&amp;#039;s your view on automation vs AI?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;It might sound strange to some traders, but I view automation and AI as very different.&lt;/p&gt;&lt;p&gt;The most overrated concept in AI right now is &amp;quot;agentic AI&amp;quot; - that is, having LLMs do something automatically on your behalf.&lt;/p&gt;&lt;p&gt;Has anyone trusted an AI agent to book travel for them end-to-end?  No.&lt;/p&gt;&lt;p&gt;If you can&amp;#039;t trust it for booking travel, then there&amp;#039;s no way it&amp;#039;s going to reliably answer a question like &amp;quot;what&amp;#039;s the best way I should trade AAPL right now?&amp;quot;&lt;/p&gt;&lt;p&gt;I would argue even super-intelligence isn&amp;#039;t going to help much with that question.&lt;/p&gt;&lt;p&gt;Pontificate all you want about how AI is going to do this or that for you in the future, but the better question is, how can it increase your P&amp;amp;L &lt;strong&gt;right now&lt;/strong&gt;?&lt;/p&gt;&lt;p&gt;Think about your process for creating trading strategies.&lt;/p&gt;&lt;p&gt;What are the biggest bottlenecks? Be specific.&lt;/p&gt;&lt;p&gt;Now ask an LLM how to solve this very specific problem you&amp;#039;ve identified in your process.&lt;/p&gt;&lt;p&gt;Maybe something related to automating your trades.&lt;/p&gt;&lt;p&gt;Maybe it can tutor you in learning a new framework that will ultimately make your process faster.&lt;/p&gt;&lt;p&gt;The more detailed the context you can provide, the better answers you&amp;#039;ll get from an LLM.&lt;/p&gt;&lt;p&gt;Do this regularly, and your P&amp;amp;L will follow.&lt;/p&gt;&lt;p&gt;Great question, Jenny, and thanks for sharing with the group!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;Wish you could backtest your ideas - without spending months learning to code?&lt;/p&gt;&lt;p&gt;Run your first backtest in an afternoon &lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=months_coding&quot;&gt;using my Amibroker AFL Course&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Much Does Speed Matter in Trading?</title>
        <link href="https://davemabe.com/how-much-does-speed-matter-in-trading"/>
        <id>https://davemabe.com/how-much-does-speed-matter-in-trading</id>
        <published>2025-12-15T15:30:00-05:00</published>
        <updated>2025-12-14T07:50:12-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we take on a topic submitted by Isaac, a trader I work with.&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;How much does timing matter?  Signal to execution time, tick data versus 1 minute bar data for backtest/signals, etc.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This is a great question because technically minded people often tend to over-engineer solutions.&lt;/p&gt;&lt;p&gt;(I find myself doing this frequently!)&lt;/p&gt;&lt;p&gt;These rabbit holes can be huge time sucks for no real benefit.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;When timing/speed matters and when it doesn&amp;#039;t&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The types of trading strategies where latency is likely the bottleneck&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How rushing to solve problems can be counter-productive (waiting can reveal simpler solutions)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Concrete steps to determine if latency is really an issue and how to address it&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-much-does-speed-matter-in-trading&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Thanks for the excellent question, Isaac!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Why is every other trader printing money while you’re stuck?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=printing&quot;&gt;Close the gap with MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Better Strategy Starting Points</title>
        <link href="https://davemabe.com/better-strategy-starting-points"/>
        <id>https://davemabe.com/better-strategy-starting-points</id>
        <published>2025-12-12T15:30:00-05:00</published>
        <updated>2025-12-12T07:10:26-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from list member Matt H.  (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matt H.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;How do you think about universe filters? I have been struggling with this all month because each back test takes 5-7 hours and I get as many as 799,331 rows of trades when starting from 2016.  Which then need to be analyzed to come up with a filter or stoploss/profit target level to test.  It makes testing ideas really slow.  I&amp;#039;m only able to run about 3 backtests per day.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;First, some background.&lt;/p&gt;&lt;p&gt;As you&amp;#039;ve heard me preach before, most traders who start backtesting try to create a &amp;quot;final version&amp;quot; of their strategy with their first backtest.&lt;/p&gt;&lt;p&gt;This is, by far, the most common mistake systematic traders make.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll end up wasting so much time with that approach, and if you happen to end up with a profitable strategy, it will be mostly luck.&lt;/p&gt;&lt;p&gt;But more importantly, you&amp;#039;ll end up with a strategy that could be far more profitable.&lt;/p&gt;&lt;p&gt;Once traders begin to understand this, their workflow improves by using much better starting points.&lt;/p&gt;&lt;p&gt;That is, the first backtest is more about collecting data in a way that will lead to a profitable strategy.&lt;/p&gt;&lt;p&gt;But many traders often overcorrect here and create a starting point with far TOO many trades.&lt;/p&gt;&lt;p&gt;If your starting point has more than 100k trades, it&amp;#039;s almost definitely too large.&lt;/p&gt;&lt;p&gt;With that many trades, your backtest is guaranteed to contain a high percentage of noise.&lt;/p&gt;&lt;p&gt;So when you start optimizing, you&amp;#039;ll be fitting to that noise.&lt;/p&gt;&lt;p&gt;This is where &lt;strong&gt;universe filters&lt;/strong&gt; come in handy.&lt;/p&gt;&lt;p&gt;Unlike applying filters that are predictive and directly improve the profitability of your strategy, a universe filter fences in the set of stocks your strategy is willing to consider.&lt;/p&gt;&lt;p&gt;So a universe filter isn&amp;#039;t providing edge per se, but it&amp;#039;s culling your initial set of stocks to a reasonable starting point.&lt;/p&gt;&lt;p&gt;If your strategy has 700k trades, it&amp;#039;s going to contain stocks like this one:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/aapi_daily_chart.png&quot;&gt;At first glance, the chart seems reasonable.&lt;/p&gt;&lt;p&gt;But when you look closer, you&amp;#039;ll see that there&amp;#039;s hardly any volume there.  In fact, on most trading days, there&amp;#039;s no volume at all!&lt;/p&gt;&lt;p&gt;A good universe filter eliminates this noise before it&amp;#039;s even considered for your strategy.&lt;/p&gt;&lt;p&gt;That will make your entire process better:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Your backtests will be much faster&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The starting points will be &amp;quot;cleaner&amp;quot; - i.e., not tainted by so much noise&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your optimization process can be solely focused on edge rather than noise removal&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;More signal, less noise.&lt;/p&gt;&lt;p&gt;Good question, Matt - thanks for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;Does the market feel like it changed and left your edge behind?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=market_change&quot;&gt;Adapt instantly with MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Amibroker Exploration Demo</title>
        <link href="https://davemabe.com/amibroker-exploration-demo"/>
        <id>https://davemabe.com/amibroker-exploration-demo</id>
        <published>2025-12-11T15:30:00-05:00</published>
        <updated>2025-12-11T06:31:18-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the most useful features of Amibroker is the Exploration.&lt;/p&gt;&lt;p&gt;It allows you to view bar data, indicator values - any derived data you&amp;#039;d like - from a completely customizable interface.&lt;/p&gt;&lt;p&gt;One thing traders often struggle with in Amibroker is dealing with dates and times.&lt;/p&gt;&lt;p&gt;So I thought I&amp;#039;d put together a video showing the power of an exploration in Amibroker to solve a real-world problem that traders run into with dates and times.&lt;/p&gt;&lt;p&gt;In this video, I show:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How to add custom columns to an exploration&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Setting the width of each column to appear perfectly without manual adjustment&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Showing some data with a custom background color for highlighting importance&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to remove the default columns to completely customize the interface&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://www.loom.com/share/ee56b953764c4ddb9025ef50551209ef&quot;&gt;View the Amibroker Exploration Demo&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;Wish you could backtest your ideas - without spending months learning to code?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=backtest_ideas&quot;&gt;Get the strategy included in the Amibroker AFL Course&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Get Confident in Your Trading Edge</title>
        <link href="https://davemabe.com/how-to-get-confident-in-your-trading-edge"/>
        <id>https://davemabe.com/how-to-get-confident-in-your-trading-edge</id>
        <published>2025-12-10T15:30:00-05:00</published>
        <updated>2025-12-10T07:22:48-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Trading is easy if you don&amp;#039;t trade with meaningful size.&lt;/p&gt;&lt;p&gt;It&amp;#039;s much harder to trade when you start increasing your position size to make serious profits.&lt;/p&gt;&lt;p&gt;And the hardest part is trading through drawdowns.&lt;/p&gt;&lt;p&gt;If you aren&amp;#039;t able to do that, then there&amp;#039;s a ceiling on how much P&amp;amp;L your trading can generate.&lt;/p&gt;&lt;p&gt;Of course, drawdowns suck.  Bad.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re in a drawdown, doing all this work, and still losing money, why on earth would you keep trading through it?&lt;/p&gt;&lt;p&gt;The only way to do it is to have confidence in your strategy.&lt;/p&gt;&lt;p&gt;Confidence that there&amp;#039;s a strong edge that will continue into the future.&lt;/p&gt;&lt;p&gt;Where does that type of confidence come from?&lt;/p&gt;&lt;p&gt;There are only two sources:&lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;Experience trading the strategy day in and day out for an extended period&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Backtesting&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;A lot of traders consider backtesting too hard, but when you think about it this way, it&amp;#039;s the cheat code.&lt;/p&gt;&lt;p&gt;It&amp;#039;s the shortcut to confidence.&lt;/p&gt;&lt;p&gt;Now imagine that every time you took a trade, you had a mountain of evidence supporting your reason for the trade.&lt;/p&gt;&lt;p&gt;What if you never took a trade without overwhelming evidence that you have an edge?&lt;/p&gt;&lt;p&gt;How much better would your results be?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Tired of hesitating for one second and missing the entire move? &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=confidence&quot;&gt;Get confident in your trading with MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Successful Traders Have This One Trait in Common</title>
        <link href="https://davemabe.com/successful-traders-have-this-one-trait-in-common"/>
        <id>https://davemabe.com/successful-traders-have-this-one-trait-in-common</id>
        <published>2025-12-09T15:30:00-05:00</published>
        <updated>2025-12-09T05:52:46-05:00</updated>
        <summary/>
        <content type="html">&lt;blockquote&gt;&lt;p&gt;“One day I walked away from the empire of the expertise of others.” - Gabrielle Calvocoressi, poet&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;My wife showed me this quote from a book of poetry she&amp;#039;s reading.&lt;/p&gt;&lt;p&gt;Gabrielle turned the corner when she started ignoring the advice of the so-called experts.&lt;/p&gt;&lt;p&gt;There&amp;#039;s more in common between traders and artists and poets than you might think.&lt;/p&gt;&lt;p&gt;Think of successful musicians.&lt;/p&gt;&lt;p&gt;How many of them still do covers of someone else&amp;#039;s music?&lt;/p&gt;&lt;p&gt;How many artists can you name who are famous for creating replicas of another artist&amp;#039;s work?&lt;/p&gt;&lt;p&gt;The answer is, of course, zero.&lt;/p&gt;&lt;p&gt;The same is true for trading.&lt;/p&gt;&lt;p&gt;The reason you see other traders doing better than you is that they&amp;#039;re not trying to be someone else.&lt;/p&gt;&lt;p&gt;They&amp;#039;re not getting rich in a trading room following the stock picks of some guru who&amp;#039;s good at getting traders to sign up for their trading room.&lt;/p&gt;&lt;p&gt;Like Gabrielle, successful traders have long since ignored the &amp;quot;expertise of others.&amp;quot;&lt;/p&gt;&lt;p&gt;When will you walk away from it?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Does it feel like your strategy works for everyone but you?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=butyou&quot;&gt;Make it work for your data with MabeKit »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Portfolio-Level Backtesting: Essential or Waste of Time?</title>
        <link href="https://davemabe.com/portfolio-level-backtesting-essential-or-waste-of-time"/>
        <id>https://davemabe.com/portfolio-level-backtesting-essential-or-waste-of-time</id>
        <published>2025-12-08T15:30:00-05:00</published>
        <updated>2025-12-08T12:08:28-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, Michael and I butt heads over portfolio-level testing.&lt;/p&gt;&lt;p&gt;This feature is one of the key differences between RealTest and Amibroker.&lt;/p&gt;&lt;p&gt;I understand the value of it, but I think using it when creating a strategy falls in the category of &lt;em&gt;premature optimization&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s just say Michael disagrees. :-)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/portfolio-level-backtesting-useful-or-waste-of-time&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Is this just a matter of day trading versus swing trading?&lt;/p&gt;&lt;p&gt;What do &lt;strong&gt;you&lt;/strong&gt; think?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you sick of second-guessing yourself every time you click buy or sell?&lt;/p&gt;&lt;p&gt;Trade with conviction using &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=second_guess&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Treat Your Trading Like THIS Kind of Business</title>
        <link href="https://davemabe.com/treat-your-trading-like-this-kind-of-business"/>
        <id>https://davemabe.com/treat-your-trading-like-this-kind-of-business</id>
        <published>2025-12-05T15:30:00-05:00</published>
        <updated>2025-12-05T08:22:57-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In yesterday&amp;#039;s post, I said you &lt;a href=&quot;https://davemabe.com/dont-treat-your-trading-like-a-business&quot;&gt;should NOT treat your trading like a business&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Because most small businesses fail after just 5 years, simply treating your trading like a business isn&amp;#039;t good enough.&lt;/p&gt;&lt;p&gt;But there is a type of business that has a much higher success rate than the average small business.&lt;/p&gt;&lt;p&gt;(A couple of astute readers guessed correctly.)&lt;/p&gt;&lt;p&gt;The answer is a &lt;strong&gt;franchise&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Why?&lt;/p&gt;&lt;p&gt;The reason is simple.  The owner of a franchise business has designed it from the ground up to operate independently of their direct involvement.&lt;/p&gt;&lt;p&gt;That&amp;#039;s the &lt;em&gt;whole point&lt;/em&gt; of a franchise.&lt;/p&gt;&lt;p&gt;The ceiling for a business is much lower if the owner has to be heavily involved for it to function.&lt;/p&gt;&lt;p&gt;A business can&amp;#039;t scale if the owner has to be on site at every location, making decisions.&lt;/p&gt;&lt;p&gt;OK, so what are the lessons here for your trading?&lt;/p&gt;&lt;p&gt;Systematize everything.&lt;/p&gt;&lt;p&gt;Are you making decisions during your trades rather than following your pre-defined script?&lt;/p&gt;&lt;p&gt;If you are, you&amp;#039;re like the owner who needs to be at every location for the business to function.&lt;/p&gt;&lt;p&gt;How &amp;quot;involved&amp;quot; are you in your trades?&lt;/p&gt;&lt;p&gt;How much more capacity would your trading have if you weren&amp;#039;t directly involved in every trading decision?&lt;/p&gt;&lt;p&gt;How can you get there?&lt;/p&gt;&lt;p&gt;Over the next few days, I&amp;#039;ll share ways to transform your trading from a struggling small business into a growing &lt;em&gt;franchise&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Don't Treat Your Trading Like a Business</title>
        <link href="https://davemabe.com/dont-treat-your-trading-like-a-business"/>
        <id>https://davemabe.com/dont-treat-your-trading-like-a-business</id>
        <published>2025-12-04T15:30:00-05:00</published>
        <updated>2025-12-04T06:55:37-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve heard this common wisdom:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Treat your trading like a business&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;But if you look closely at the failure rate of small businesses in the U.S., it&amp;#039;s surprisingly high.&lt;/p&gt;&lt;p&gt;22% fail in the first year.&lt;/p&gt;&lt;p&gt;50% fail in the first five years.&lt;/p&gt;&lt;p&gt;And a whopping 65% fail by year ten.&lt;/p&gt;&lt;p&gt;But did you know there&amp;#039;s a specific kind of business that has a MUCH higher success rate than average?&lt;/p&gt;&lt;p&gt;Any guesses what it is?&lt;/p&gt;&lt;p&gt;More tomorrow on what business this is and what it means for your trading.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Amibroker users: are you trying to use ChatGPT to create a backtest only to discover how bad the LLMs are at coding Amibroker&amp;#039;s language?  You&amp;#039;re not alone!&lt;/p&gt;&lt;p&gt;You need my Amibroker AFL Course.  It comes with a demo strategy that serves as the perfect starting point for any strategy you want to create.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/amibroker-afl-course?utm_source=email&amp;amp;utm_campaign=bad_chatgpt&quot;&gt;Get instant access to the Amibroker AFL Course&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Increase Max Number of Bars in Amibroker</title>
        <link href="https://davemabe.com/increase-max-number-of-bars-in-amibroker"/>
        <id>https://davemabe.com/increase-max-number-of-bars-in-amibroker</id>
        <published>2025-12-03T15:30:00-05:00</published>
        <updated>2025-12-03T07:06:50-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When I install Amibroker on a new computer, there are a few steps that I take immediately.&lt;/p&gt;&lt;p&gt;But the very first one is something simple, but it unlocks a key capability for my backtesting.&lt;/p&gt;&lt;p&gt;By default, Amibroker allows up to one million bars per symbol in the local database when using IQFeed to import data.&lt;/p&gt;&lt;p&gt;(Important note, this limit doesn&amp;#039;t apply if you&amp;#039;re &amp;quot;manually&amp;quot; importing data from, say, Polygon.  It only applies if you&amp;#039;re using a plug-in like IQFeed or eSignal to backfill your data.)&lt;/p&gt;&lt;p&gt;In the Database Settings, it tells you that corresponds to 8 years of 1-minute bar data per symbol (in reality, it&amp;#039;s less than that when you include all pre- and post-market data).&lt;/p&gt;&lt;p&gt;When you try to put a number larger than 1 million in that field, Amibroker gives you an error message.&lt;/p&gt;&lt;p&gt;However, there&amp;#039;s a way to modify it to allow larger numbers for this setting.&lt;/p&gt;&lt;p&gt;(Warning - it involves making a change to the Windows Registry, which you should always do very carefully.)&lt;/p&gt;&lt;p&gt;Bring up the Registry Editor from the Start menu in Windows.  (Type &lt;code&gt;registry&lt;/code&gt; when the Start menu is in focus.)&lt;/p&gt;&lt;p&gt;Navigate to the following registry key:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;HKEY_CURRENT_USER\Software\TJP\Broker\Settings&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Right-click on the Settings folder and choose New -&amp;gt; DWORD (32 bit) Value.&lt;/p&gt;&lt;p&gt;For the name of the value, use &lt;code&gt;MaximumNumberOfBars&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;For the Value data field, choose &lt;code&gt;Decimal&lt;/code&gt; for the Base radio button and enter a value higher than 1 million.&lt;/p&gt;&lt;p&gt;I use &lt;code&gt;1000000000&lt;/code&gt; for the value, so I never run into the limitation:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/amibroker_registry_setting.png&quot; alt=&quot;Amibroker MaximumNumberOfBars registry setting&quot;&gt;&lt;/p&gt;&lt;p&gt;With that set, I can use a much larger value for the Number of bars field in my backtesting database:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/amibroker_number_of_bars_setting.png&quot; alt=&quot;Amibroker number of bars value in Database Settings&quot;&gt;&lt;/p&gt;&lt;p&gt;With a value of 3000000, I have data all the way back to 2008 for AAPL.&lt;/p&gt;&lt;p&gt;That allows me to backtest using a much larger window, if I so choose.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Afraid to size up because you don’t trust your edge? Build confidence to trade your strategy with bigger size with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=sizing_up&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Export Data from Trade-Ideas</title>
        <link href="https://davemabe.com/how-to-export-data-from-trade-ideas"/>
        <id>https://davemabe.com/how-to-export-data-from-trade-ideas</id>
        <published>2025-12-02T15:30:00-05:00</published>
        <updated>2025-12-02T06:54:14-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last week, a trader I&amp;#039;m working with (a 7-figure/year trader who prefers to remain anonymous) asked me this:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Any idea how we can get a list of tickers Trade-Ideas considers US based?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It&amp;#039;s definitely possible to export data from Trade-Ideas in this way, although there are a few steps involved.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easier to explain in a video, so I recorded this demonstration to show the best way to do it.&lt;/p&gt;&lt;p&gt;It involves using a top list and the automatic logging feature I added to the program several years ago for this exact purpose.&lt;/p&gt;&lt;p&gt;It also uses the Country symbol lists, which are updated daily.&lt;/p&gt;&lt;p&gt;Watch the video here:&lt;/p&gt;&lt;p&gt;Let me know if you like this video format - hit reply and let me know, and I&amp;#039;ll do more of these if folks find it helpful.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you in a drawdown and ready to quit?  Join the other traders who reversed their drawdowns and are printing money with &lt;a href=&quot;https://davemabe.com/?utm_source=email&amp;amp;utm_campaign=mabekit&quot;&gt;MabeKit&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Often Should You Re-Optimize Your Strategy?</title>
        <link href="https://davemabe.com/how-often-should-you-re-optimize-your-strategy"/>
        <id>https://davemabe.com/how-often-should-you-re-optimize-your-strategy</id>
        <published>2025-12-01T15:30:00-05:00</published>
        <updated>2025-12-01T06:17:07-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss a common question from systematic traders:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;How often should you re-optimize your strategies?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The better you get at creating and optimizing strategies, the less you have to do it.&lt;/p&gt;&lt;p&gt;That&amp;#039;s because your strategies will have more staying power.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How to &lt;strong&gt;optimize&lt;/strong&gt; so you have to &lt;strong&gt;re-optimize&lt;/strong&gt; as little as possible&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How better columns directly translate into more robust strategies&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Hold a rule &amp;quot;in reserve&amp;quot; so you can apply it when needed without full re-optimization&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Documenting previous optimization decisions will make the next strategy better&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-often-should-you-re-optimize&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Profitable Strategy with 5% Win Rate - Realistic?</title>
        <link href="https://davemabe.com/profitable-strategy-with-5-win-rate-realistic"/>
        <id>https://davemabe.com/profitable-strategy-with-5-win-rate-realistic</id>
        <published>2025-11-28T15:30:00-05:00</published>
        <updated>2025-11-26T07:26:04-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Matt H. about a strategy he&amp;#039;s working on for &lt;a href=&quot;https://davemabe.com/strategy-ideas-from-a-chart-2&quot;&gt;the challenge I presented a few days ago&lt;/a&gt; (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matt H:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I have a strategy for the challenge based on a consolidation breakout.  I am a little unconfident, but the numbers are looking great and the equity curve, too.  &lt;/p&gt;&lt;ol start=&quot;1&quot;&gt;&lt;li&gt;&lt;p&gt;very tight stop = 0.27 1min ATR.  The idea - catch the ones that go up and keep going.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;position size based off the stop - risking $100 per trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;profit target is 27 1 min ATR or end of day&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;It wins about 5% of the time but when it does it&amp;#039;s huge.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Is this real?  Or am I missing something related to execution, or do you think my backtest might have a bug?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a common situation for new traders.&lt;/p&gt;&lt;p&gt;You can create a strategy with backtesting that looks great on paper, but quickly falls apart when you trade it in real-time.&lt;/p&gt;&lt;p&gt;This is a classic example.&lt;/p&gt;&lt;p&gt;&amp;quot;Very tight stop&amp;quot;&lt;/p&gt;&lt;p&gt;That means there will be more slippage than usual - probably a lot more!&lt;/p&gt;&lt;p&gt;&amp;quot;position size based off the stop&amp;quot;&lt;/p&gt;&lt;p&gt;This is usually a good idea, but combining that with a &amp;quot;very tight stop&amp;quot; and you realize the position sizes will be large, magnifying the slippage even more.&lt;/p&gt;&lt;p&gt;(The profit target seems reasonable.)&lt;/p&gt;&lt;p&gt;But the biggest red flag here doesn&amp;#039;t come from a metric in the backtest.&lt;/p&gt;&lt;p&gt;Even if the backtest matches reality perfectly (which it won&amp;#039;t), this strategy would be incredibly tough to trade psychologically.&lt;/p&gt;&lt;p&gt;With only 1 of 20 trades profitable, there will be long streaks of losing trades.&lt;/p&gt;&lt;p&gt;Then imagine the winning trade comes along - and you miss it or get a partial fill.&lt;/p&gt;&lt;p&gt;Talk about frustrating!&lt;/p&gt;&lt;p&gt;These mental aspects are important - considering them as you create a strategy should be a crucial part of your process.&lt;/p&gt;&lt;p&gt;Thanks for the question and for sharing with the group, Matt!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">LLMs: What I'm Doing in Amibroker is Impossible</title>
        <link href="https://davemabe.com/llms-what-im-doing-in-amibroker-is-impossible"/>
        <id>https://davemabe.com/llms-what-im-doing-in-amibroker-is-impossible</id>
        <published>2025-11-27T15:30:00-05:00</published>
        <updated>2025-11-26T07:05:55-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A list member who prefers to remain anonymous recently sent me this from a session with ChatGPT where he&amp;#039;s trying to decide if Amibroker is right for him:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;I also spoke to ChatGPT who argued the Amibroker would use terabytes of ram potentially for 10k symbols 15y and 200 custom columns.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This is ChatGPT saying what I&amp;#039;ve done for over 15 years is impossible.&lt;/p&gt;&lt;p&gt;In fact, I&amp;#039;ve got over 400 columns in my column library, and a backtest takes less than an hour to complete.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to be wooed by the fake confidence in ChatGPT and other LLMs.&lt;/p&gt;&lt;p&gt;Don&amp;#039;t be fooled.&lt;/p&gt;&lt;p&gt;LLMs are incredibly powerful, but using them proficiently requires practice and discernment about what they&amp;#039;re telling you.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Tomorrow is a half-day, so don&amp;#039;t forget to close your positions before the earlier close.  This is a good time to test your half-day logic in your code.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Are LLMs So Bad at Trading?</title>
        <link href="https://davemabe.com/why-are-llms-so-bad-at-trading"/>
        <id>https://davemabe.com/why-are-llms-so-bad-at-trading</id>
        <published>2025-11-26T15:30:00-05:00</published>
        <updated>2025-11-26T06:51:28-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I use LLMs a lot.&lt;/p&gt;&lt;p&gt;I think they&amp;#039;re simultaneously the most overhyped &lt;em&gt;and&lt;/em&gt; underhyped tech we&amp;#039;ve seen in a long time.&lt;/p&gt;&lt;p&gt;But are they good at trading?&lt;/p&gt;&lt;p&gt;The answer should be obvious, but here&amp;#039;s some proof to show how bad they are at it.&lt;/p&gt;&lt;p&gt;Someone set up a trading contest - with real money and real trades - and pitted each LLM against each other.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a snapshot of how it&amp;#039;s going.  Spoiler: they&amp;#039;re &lt;strong&gt;all lighting money on fire&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/llm_trading_contest.png&quot;&gt;This should not come as a surprise - there are several reasons LLMs are terrible traders.&lt;/p&gt;&lt;p&gt;The primary reason is that LLMs are trained using data on the public internet.&lt;/p&gt;&lt;p&gt;In that way, they&amp;#039;re literally trained to follow the crowd and therefore lose money trading.&lt;/p&gt;&lt;p&gt;Just try finding an idea for a great trading strategy by searching Google.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a great lesson for traders here.&lt;/p&gt;&lt;p&gt;How is your trading unique?  How is it different than what the masses are doing?&lt;/p&gt;&lt;p&gt;What is your process for creating more unique ideas for strategies over time?&lt;/p&gt;&lt;p&gt;LLMs are great for lots of purposes, but creativity isn&amp;#039;t one of them (yet).&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Generic Portfolio Analyzer Submitted By a Trader</title>
        <link href="https://davemabe.com/a-generic-portfolio-analyzer-submitted-by-a-trader"/>
        <id>https://davemabe.com/a-generic-portfolio-analyzer-submitted-by-a-trader</id>
        <published>2025-11-25T15:30:00-05:00</published>
        <updated>2025-11-25T06:27:29-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A &lt;a href=&quot;https://davemabe.com/view-performance-across-multiple-strategies-in-amibroker&quot;&gt;few days ago&lt;/a&gt;, I suggested that you don&amp;#039;t need any particular tool to analyze a portfolio of backtests.&lt;/p&gt;&lt;p&gt;In fact, this task is the perfect project to improve your AI chops and have ChatGPT create a generic Python script that can work across backtests from &lt;strong&gt;any&lt;/strong&gt; platform.&lt;/p&gt;&lt;p&gt;Long-time list member, Anthony S., took up the challenge (name used with permission, lightly edited for readability):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Anthony S.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I was considering getting RealTest to do this kind of thing.  &lt;/p&gt;&lt;p&gt;I am running systems based on EOD data in Amibroker.  As my systems are short-term long only, I was concerned about concentration risk and wanted to do exactly what you mentioned. My assistant, Claude, and I discussed the pros and cons of switching to RealTest, but neither of us considered this approach LOL.&lt;/p&gt;&lt;p&gt;This is a very straightforward idea to implement.&lt;/p&gt;&lt;p&gt;I have a working version that I really like and am happy to share with the community if you feel it has some value.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/asichi/portfolio_analyzer&quot;&gt;Portfolio Analyzer&lt;/a&gt;&lt;/p&gt;&lt;p&gt;It is very simple but serves my needs.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Well done, Anthony, and thanks for sharing with the group!&lt;/p&gt;&lt;p&gt;I&amp;#039;m glad you and your team were able to tackle this.  :-)&lt;/p&gt;&lt;p&gt;&amp;quot;Very simple&amp;quot; is almost always best in trading - more on this topic in the coming days...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Moving Your Stop To Breakeven A Mistake?</title>
        <link href="https://davemabe.com/is-moving-your-stop-to-breakeven-a-mistake"/>
        <id>https://davemabe.com/is-moving-your-stop-to-breakeven-a-mistake</id>
        <published>2025-11-24T15:30:00-05:00</published>
        <updated>2025-11-24T07:37:34-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, we answer a question I received from Emmett:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Towards the end of a recent episode, you guys started talking negatively about moving stop losses up to break even on a winning position.  I found this interesting as I tend to move my stops up.  The reason being that I don&amp;#039;t like to have more than a certain % of my account at risk at any one time and so if I&amp;#039;m in a position to take risk off somewhere, it allows me to take on new positions or maybe add risk elsewhere.  Am I thinking about this all wrong?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It&amp;#039;s a great question that many traders eventually consider.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Similar to taking partial profits, moving a stop to breakeven is more about psychological comfort&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Profitable trading requires tolerating discomfort, as difficult as that is at times&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;It seems like a simple idea to test, but it quickly adds significant complexity to a backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to actually test this in a backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;This is a great example of the platitudes you often hear from people who are good at &lt;em&gt;talking about trading&lt;/em&gt;, but don&amp;#039;t &lt;em&gt;actually trade&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/is-moving-your-stop-to-breakeven-a-mistake&quot;&gt;&lt;strong&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">An Even Cheaper Way to Get Data into Amibroker</title>
        <link href="https://davemabe.com/an-even-cheaper-way-to-get-data-into-amibroker"/>
        <id>https://davemabe.com/an-even-cheaper-way-to-get-data-into-amibroker</id>
        <published>2025-11-21T15:30:00-05:00</published>
        <updated>2025-11-21T08:02:04-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last week I &lt;a href=&quot;https://davemabe.com/cheapest-way-to-get-data-into-amibroker&quot;&gt;shared my script&lt;/a&gt; for importing Polygon (er, Massive) data into Amibroker.&lt;/p&gt;&lt;p&gt;Long-time list member, Matt H., sent me a way to import intraday data for even cheaper - free in fact!&lt;/p&gt;&lt;p&gt;It&amp;#039;s not for the faint of heart, as it&amp;#039;s not a turnkey solution, but he tells me it works.&lt;/p&gt;&lt;p&gt;He has offered to share his code with members of the list in &lt;a href=&quot;https://github.com/Mat-eo-H/Alpaca_data_collection&quot;&gt;this GitHub repo&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;I haven&amp;#039;t tested this, and there are some caveats to consider.  For example, you need to open an Alpaca account, and the data takes a considerable amount of time to get into Amibroker.&lt;/p&gt;&lt;p&gt;However, if you&amp;#039;re looking for the most cost-effective way to import data into Amibroker and are willing to put your nerd hat on for a while to make it happen, you might be interested in this.&lt;/p&gt;&lt;p&gt;Thanks for sharing with the group, Matt!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your Most Profitable Strategy...</title>
        <link href="https://davemabe.com/your-most-profitable-strategy"/>
        <id>https://davemabe.com/your-most-profitable-strategy</id>
        <published>2025-11-20T15:30:00-05:00</published>
        <updated>2025-11-20T08:40:12-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The trading strategy that you&amp;#039;ll make the most money from over your trading career, you haven&amp;#039;t thought of yet.&lt;/p&gt;&lt;p&gt;But the idea isn&amp;#039;t going to come to you magically out of thin air.&lt;/p&gt;&lt;p&gt;It might feel that way when it happens, but it will be the result of putting yourself in a position to notice unusual market behavior regularly.&lt;/p&gt;&lt;p&gt;Not just when you feel like it.&lt;/p&gt;&lt;p&gt;Not just when it&amp;#039;s convenient.&lt;/p&gt;&lt;p&gt;Not just when your TODO app reminds you.&lt;/p&gt;&lt;p&gt;Professional chefs don&amp;#039;t need to be reminded to sharpen their knives.&lt;/p&gt;&lt;p&gt;What habit can you create for yourself today, so that in a year, you&amp;#039;re pulling serious profits from a strategy you haven&amp;#039;t thought of yet?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Make Your Amibroker Code Pretty - Automatically</title>
        <link href="https://davemabe.com/make-your-amibroker-code-pretty-automatically"/>
        <id>https://davemabe.com/make-your-amibroker-code-pretty-automatically</id>
        <published>2025-11-19T15:30:00-05:00</published>
        <updated>2025-11-19T08:26:49-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you&amp;#039;re an Amibroker user, you might be tempted to use an external editor other than the built-in AFL Formula Editor for editing AFL files.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve tried using Vim (my favorite text editor by far) to edit AFL files over the years.&lt;/p&gt;&lt;p&gt;And I always find myself returning to the built-in editor in Amibroker.&lt;/p&gt;&lt;p&gt;Why?&lt;/p&gt;&lt;p&gt;Because it&amp;#039;s so carefully thought through, and the workflow is seamless.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s yet another example of that.&lt;/p&gt;&lt;p&gt;In the AFL editor on the Edit menu, there&amp;#039;s an unassuming item called &lt;strong&gt;Prettify Selection&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When selected, it will automatically format all your code to the AFL standard style:&lt;/p&gt;&lt;p&gt;All your extra spaces, parentheses scattered about, etc, are standardized across the entire file in one fell swoop.&lt;/p&gt;&lt;p&gt;Standardization like this is important.  More important than you might think.&lt;/p&gt;&lt;p&gt;When you see something in code that &lt;em&gt;technically&lt;/em&gt; works, but stands out as non-standard (extra spaces, say), there&amp;#039;s a background thread in your brain that notices it and obsesses about it.&lt;/p&gt;&lt;p&gt;Having these non-standard annoyances automatically handled (the technical term is &amp;quot;linting your code&amp;quot;) will streamline your routine and eliminate the background threads.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. The code in the screenshot is the Amibroker template I use for each strategy I create.  This is included with the Amibroker Course I&amp;#039;m working on, which will be released publicly soon.  &lt;a href=&quot;https://davemabe.com/amibroker-course-notification&quot;&gt;Add yourself to the waiting list&lt;/a&gt; to be notified the moment it&amp;#039;s released.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Backtest Workflow Diagram</title>
        <link href="https://davemabe.com/backtest-workflow-diagram"/>
        <id>https://davemabe.com/backtest-workflow-diagram</id>
        <published>2025-11-18T15:30:00-05:00</published>
        <updated>2025-11-18T08:05:15-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the most rewarding aspects of writing this newsletter is attracting smart and motivated traders.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a great example of that.&lt;/p&gt;&lt;p&gt;Long-time list member Rami A. sent me this diagram he put together with his take on my backtesting workflow.&lt;/p&gt;&lt;p&gt;Very impressive, Rami!&lt;/p&gt;&lt;p&gt;The Core Performance Metrics section is not perfect (I have strategies with Profit Factors lower than 1.75 and also much higher than 2.0), and I use more indicators than the six listed there, but the spirit of this is spot on.&lt;/p&gt;&lt;p&gt;Diagramming workflows like this is an underrated skill (I just coached my daughter on this exact topic this week).&lt;/p&gt;&lt;p&gt;Take a look and see what you think:&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://davemabe.com/assets/rami_backtesting_workflow.png&quot; alt=&quot;Rami&amp;#039;s take on backtesting workflow&quot;&gt;Any suggestions for improvements?  Hit reply and let me know.&lt;/p&gt;&lt;p&gt;Thanks again to Rami A. for sharing with the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Next Steps when a Strategy Fades</title>
        <link href="https://davemabe.com/next-steps-when-a-strategy-fades"/>
        <id>https://davemabe.com/next-steps-when-a-strategy-fades</id>
        <published>2025-11-17T15:30:00-05:00</published>
        <updated>2025-11-17T07:54:44-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This week on the Line Your Own Pockets podcast, we follow up with Andre, whose strategy stopped working. He sent me some more details about his strategy and how he backtested it.&lt;/p&gt;&lt;p&gt;Michael and I discuss the next steps for Andre to try to get his strategy back to profitability.&lt;/p&gt;&lt;p&gt;Topics include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Ways to try to include more profitable trades in the system&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to add more predictive columns to improve the strategy and create new ones&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to re-optimize more smartly to create a more robust strategy with staying power&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/next-steps-when-your-strategy-fades&quot;&gt;&lt;u&gt;LISTEN NOW »&lt;/u&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you have trading questions you&amp;#039;d like to hear answered on the podcast?  Hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Cheapest Way to Get Data into Amibroker</title>
        <link href="https://davemabe.com/cheapest-way-to-get-data-into-amibroker"/>
        <id>https://davemabe.com/cheapest-way-to-get-data-into-amibroker</id>
        <published>2025-11-14T15:30:00-05:00</published>
        <updated>2025-11-14T07:55:02-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several traders have asked about using Amibroker and the best way to import data.&lt;/p&gt;&lt;p&gt;The easiest way to import data is to use the IQFeed plugin and then backfill data.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve used this method to import data going back to 2005 in my backtesting database.&lt;/p&gt;&lt;p&gt;But IQFeed is not the &lt;em&gt;cheapest&lt;/em&gt; way.&lt;/p&gt;&lt;p&gt;The cheapest way is with Polygon (inexplicably renamed to &amp;quot;Massive&amp;quot; recently).&lt;/p&gt;&lt;p&gt;If you aren&amp;#039;t yet sure you&amp;#039;ll use Amibroker with real-time data, it&amp;#039;s a great choice for backtesting only.&lt;/p&gt;&lt;p&gt;Polygon has a &amp;quot;flat files&amp;quot; offering that allows you to download their minute agg files.&lt;/p&gt;&lt;p&gt;These are zipped files that contain 1-minute bar data (Open, High, Low, Close, Volume) for every US equity on any given trading day.&lt;/p&gt;&lt;p&gt;This is ideal for importing into Amibroker to use for backtesting.&lt;/p&gt;&lt;p&gt;I like this approach for traders who are getting started because it allows them to focus on the hard part (creating a profitable strategy) in the cheapest way possible.&lt;/p&gt;&lt;p&gt;Once you create a strategy that looks great, then you can go down the path of trading it in real-time.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re a Strategy Cruncher user, you can download the scripts I use to download the Polygon files and import them into Amibroker.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the &lt;a href=&quot;https://app.davemabe.com/optimizer/polygon-amibroker&quot;&gt;documentation for how the process works&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Different Volume Filters in Premarket Versus RTH?</title>
        <link href="https://davemabe.com/why-different-volume-filters-in-premarket-versus-rth"/>
        <id>https://davemabe.com/why-different-volume-filters-in-premarket-versus-rth</id>
        <published>2025-11-13T15:30:00-05:00</published>
        <updated>2025-11-13T06:51:25-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several folks replied to my posts about &lt;a href=&quot;https://davemabe.com/relative-volume-in-the-premarket&quot;&gt;relative volume&lt;/a&gt; in the &lt;a href=&quot;https://davemabe.com/rvol-in-premarket-with-trade-ideas&quot;&gt;premarket&lt;/a&gt; and asked variations of:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Why not just use &amp;quot;percent of average volume&amp;quot; across the premarket and regular trading hours? Why have different filters for volume during premarket versus RTH?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This is a great question, and there&amp;#039;s a good reason for using two different calculations in each context.&lt;/p&gt;&lt;p&gt;For most stocks, it&amp;#039;s unusual for them to be doing any volume at all in the premarket.&lt;/p&gt;&lt;p&gt;To try to calculate &lt;em&gt;relative&lt;/em&gt; volume in the premarket wouldn&amp;#039;t make sense.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example.  Let&amp;#039;s say symbol XYZ normally trades very little in the premarket (a very common situation).&lt;/p&gt;&lt;p&gt;Then one day it trades 100 shares.&lt;/p&gt;&lt;p&gt;On that day, the theoretical &lt;strong&gt;relative volume&lt;/strong&gt; calculation would be:&lt;/p&gt;&lt;p&gt;&lt;code&gt;volume today / normal volume at this time of day&lt;/code&gt;&lt;/p&gt;&lt;p&gt;Which would be &lt;code&gt;100 / $A_REALLY_SMALL_NUMBER&lt;/code&gt;.  Which could easily be infinite.&lt;/p&gt;&lt;p&gt;This should point you to the simpler &lt;code&gt;volume / average daily volume * 100&lt;/code&gt; calculation for the premarket (I&amp;#039;ll refer to this as the &lt;strong&gt;volume percent&lt;/strong&gt; calculation).&lt;/p&gt;&lt;p&gt;But, conversely, if you try to apply this to regular trading hours when stock XYZ (and most stocks) trade plenty of volume, if you use &lt;strong&gt;volume percent,&lt;/strong&gt; then you end up with a calculation that isn&amp;#039;t normalized across the trading day.&lt;/p&gt;&lt;p&gt;The simple volume percent calculation will be in the single digits at the start of the regular trading hours, and then slowly increase to 100 as you get closer to the market close.&lt;/p&gt;&lt;p&gt;That is, it&amp;#039;s not &lt;em&gt;normalized by time of day&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;In the context of RTH, the relative volume calculation really shines.&lt;/p&gt;&lt;p&gt;On a normal day, the &lt;strong&gt;relative volume&lt;/strong&gt; will be &lt;code&gt;1.0&lt;/code&gt; throughout the trading day.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">View Performance Across Multiple Strategies in Amibroker</title>
        <link href="https://davemabe.com/view-performance-across-multiple-strategies-in-amibroker"/>
        <id>https://davemabe.com/view-performance-across-multiple-strategies-in-amibroker</id>
        <published>2025-11-12T15:30:00-05:00</published>
        <updated>2025-11-12T06:44:24-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from long-time list member, Abhishek K. (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Abhishek K.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt; I have 2 strategies I test separately in Amibroker. &lt;/p&gt;&lt;p&gt; How can I get the metrics of these 2 strategies together? (similar to RealTest?)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a common question for traders coming to Amibroker, but looking at aggregate performance across strategies has never been very important to me (compared to other traders).&lt;/p&gt;&lt;p&gt;I would put this in the category of &lt;strong&gt;premature optimization&lt;/strong&gt;. (More on this topic later.)&lt;/p&gt;&lt;p&gt;The simplest way to do this is to open the CSV files generated from the Amibroker backtests in Excel.&lt;/p&gt;&lt;p&gt;Combine the results into a single sheet, then look at the Profit column across both strategies.&lt;/p&gt;&lt;p&gt;It&amp;#039;s tempting to do this as a one-off task in Excel each time, but if you find yourself doing this routinely, it&amp;#039;s a good idea to systematize it.&lt;/p&gt;&lt;p&gt;In fact, I think this is a great project to use an LLM to create a generic Python script that lets you combine multiple backtests and view performance.&lt;/p&gt;&lt;p&gt;The inputs would be the CSV files generated from Amibroker backtests.&lt;/p&gt;&lt;p&gt;The outputs would be whatever summary statistics you want to see (an equity curve, aggregate metrics, etc).&lt;/p&gt;&lt;p&gt;It&amp;#039;s a good idea to always add command-line arguments to control the behavior of a script like this.&lt;/p&gt;&lt;p&gt;That forces you to think more generically, and it&amp;#039;s an excellent habit to get into.&lt;/p&gt;&lt;p&gt;The goal is to create a script with flexible parameters so you can run it on any number of backtest files without having to modify the code each time.&lt;/p&gt;&lt;p&gt;Good question, Abhishek, and thanks for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Best Way to Make Your Backtest Faster</title>
        <link href="https://davemabe.com/the-best-way-to-make-your-backtest-faster"/>
        <id>https://davemabe.com/the-best-way-to-make-your-backtest-faster</id>
        <published>2025-11-11T15:30:00-05:00</published>
        <updated>2025-11-11T16:08:26-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Many new traders, whether using Amibroker or other backtesters that can handle large amounts of intraday data, focus on speeding up the backtest.&lt;/p&gt;&lt;p&gt;And that&amp;#039;s certainly worth doing.&lt;/p&gt;&lt;p&gt;But, by far, the biggest bang for the buck in this area is setting up your backtests so that you only have to run one of them!&lt;/p&gt;&lt;p&gt;If you&amp;#039;re still &amp;quot;guessing and checking&amp;quot; by running backtest after backtest after backtest, you can dramatically improve your testing workflow simply by setting up your initial backtest differently.&lt;/p&gt;&lt;p&gt;When you add your custom library of columns to your backtest, you only have to run a single backtest!&lt;/p&gt;&lt;p&gt;And when you only have to run one, then it doesn&amp;#039;t matter nearly as much how long it takes.&lt;/p&gt;&lt;p&gt;Your path to a profitable strategy is significantly shorter.&lt;/p&gt;&lt;p&gt;In fact, if you&amp;#039;re not doing it this way, you&amp;#039;ll very likely never end up with a profitable strategy, and if you do, it will be by accident.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I accidentally sent a duplicate email this morning.  Sorry about that!  I&amp;#039;m updating the site, and that one snuck through while I was running this morning.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You Missed A Trade But It Comes Back</title>
        <link href="https://davemabe.com/you-missed-a-trade-but-it-comes-back"/>
        <id>https://davemabe.com/you-missed-a-trade-but-it-comes-back</id>
        <published>2025-11-10T15:30:00-05:00</published>
        <updated>2025-11-11T06:37:49-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The price blew through your planned entry, leaving you without a fill. Frustrating!&lt;/p&gt;&lt;p&gt;But now it comes back, giving you another chance to enter at your original price.&lt;/p&gt;&lt;p&gt;Do you take that trade?&lt;/p&gt;&lt;p&gt;On this week’s episode of Line Your Own Pockets, we go deep into this common situation.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Your default should be to take the trade if it still matches your system&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;There&amp;#039;s more information to decide on - what can you add to your backtest?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What are &lt;em&gt;post-entry&lt;/em&gt; columns, and how can they help?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How deep thinking about the issue can help you create brand new strategies&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more…&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/you-missed-a-trade-now-what&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Automated Trading While At Work?</title>
        <link href="https://davemabe.com/automated-trading-while-at-work"/>
        <id>https://davemabe.com/automated-trading-while-at-work</id>
        <published>2025-11-07T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another reader question, this time from Danny S. (&lt;em&gt;name used with permission, lightly edited for readability&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Danny S.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve been listening to the podcast, great content! I&amp;#039;ve mostly done manual trading, but also dabbled in automated trading, mainly on futures through Tradestation.&lt;/p&gt;&lt;p&gt;Is it reasonable to have intraday automated systems run during the day while I&amp;#039;m at work during EST hours? I haven&amp;#039;t looked at Amibroker, but I am confident I can learn it. Or is that idea too risky?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Is it reasonable or too risky?&lt;/p&gt;&lt;p&gt;It all depends on your risk preferences and the confidence in your strategies.&lt;/p&gt;&lt;p&gt;Some traders can easily overcome the mental hurdle of automated trading without constant supervision, but others feel the need to watch things like a hawk.&lt;/p&gt;&lt;p&gt;There&amp;#039;s definitely a path to get there, and I&amp;#039;ve worked with several traders to become comfortable enough to do it.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing:&lt;/p&gt;&lt;p&gt;It&amp;#039;s not all or nothing - there&amp;#039;s a continuum from completely manual to fully automated, unsupervised trading.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a whole range of things you can do to move down that continuum.&lt;/p&gt;&lt;p&gt;Every step you take down that range will improve your trading, regardless of whether you make it all the way to the last step of full automation while you&amp;#039;re at work.&lt;/p&gt;&lt;p&gt;The first step is backtesting a strategy and getting it in good enough shape to trade.&lt;/p&gt;&lt;p&gt;Staring at a great-looking equity curve you&amp;#039;ve created is usually all the motivation you need to start taking steps toward automation.&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve used TradeStation, you&amp;#039;ll have no problem using Amibroker, and your backtesting will get a lot better and faster, thanks to the ability to add custom columns to your backtest.&lt;/p&gt;&lt;p&gt;(It&amp;#039;s mind-boggling to me why TradeStation hasn&amp;#039;t added that feature; there&amp;#039;s no way I could use it without that.)&lt;/p&gt;&lt;p&gt;Thanks for the question, Danny S. and good luck!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">RVOL in Premarket with Trade-Ideas</title>
        <link href="https://davemabe.com/rvol-in-premarket-with-trade-ideas"/>
        <id>https://davemabe.com/rvol-in-premarket-with-trade-ideas</id>
        <published>2025-11-06T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In yesterday&amp;#039;s post, I shared &lt;a href=&quot;https://www.davemabe.com/relative-volume-in-the-premarket/&quot;&gt;a common approach&lt;/a&gt; for determining if premarket volume is unusual or not.&lt;/p&gt;&lt;p&gt;If you are a Trade-Ideas user, there are two applicable filters/columns already included in the program to use for this purpose.&lt;/p&gt;&lt;p&gt;The first is &lt;a href=&quot;https://www.trade-ideas.com/help/filter/RV/&quot;&gt;Relative Volume&lt;/a&gt;.  As I mentioned in the previous post, this is often quite predictive for strategies when used in &lt;strong&gt;regular trading hours&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;The second is the calculation you should use in the premarket.  In TI, the filter is called &lt;a href=&quot;https://www.trade-ideas.com/help/filter/PV/&quot;&gt;Volume Today %&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In this screenshot, you can see both of these columns in use: &lt;strong&gt;Vol Today ($)&lt;/strong&gt; and &lt;strong&gt;Rel Vol&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I took this screenshot in the premarket, so you can see that Relative Volume is 1.00 even though both of these stocks have already done far more volume than their 10-day average volume.&lt;/p&gt;&lt;p&gt;It also shows clearly how the Volume Today % is calculated (divide the &lt;strong&gt;Vol Today&lt;/strong&gt; column by the &lt;strong&gt;Avg Vol (10D)&lt;/strong&gt; column and convert to a percentage).&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I&amp;#039;m considering sharing a few of my go-to &lt;strong&gt;Trade-Ideas&lt;/strong&gt; alert windows and toplists that I use regularly.  These are not trading strategies per se, but views of the market I use to review the day and understand what&amp;#039;s moving.  If you&amp;#039;re a Trade-Ideas user and this interests you, let me know by clicking this link:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Relative Volume in the Premarket</title>
        <link href="https://davemabe.com/relative-volume-in-the-premarket"/>
        <id>https://davemabe.com/relative-volume-in-the-premarket</id>
        <published>2025-11-05T20:30:00-05:00</published>
        <updated>2025-11-07T13:18:32-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I made a guest appearance on SMB Capital&amp;#039;s Bionic Trader yesterday, and there were lots of great questions after my presentation on backtesting software.&lt;/p&gt;&lt;p&gt;One was: &amp;quot;Are there certain columns that the Strategy Cruncher identifies routinely as predictive across strategies?&amp;quot;&lt;/p&gt;&lt;p&gt;There are definitely a few, and one of them is &lt;strong&gt;Relative Volume&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;With the increase in premarket trading over the last few years, there has been more interest in calculating Relative Volume in the premarket.&lt;/p&gt;&lt;p&gt;But I think most traders think about this calculation in the wrong way.&lt;/p&gt;&lt;p&gt;Even though there&amp;#039;s more premarket trading now, there are still plenty of stocks that don&amp;#039;t trade at all in the premarket session.&lt;/p&gt;&lt;p&gt;But in regular trading hours, it&amp;#039;s unusual for a stock not to trade.&lt;/p&gt;&lt;p&gt;This is what makes the Relative Volume calculation so effective during RTH trading.&lt;/p&gt;&lt;p&gt;So in the premarket, a Relative Volume calculation is less meaningful because the variance is so high (and often premarket volume of zero is &lt;strong&gt;normal&lt;/strong&gt;).&lt;/p&gt;&lt;p&gt;The better approach for the premarket is a much simpler calculation:&lt;/p&gt;&lt;p&gt;Until significant premarket volume becomes truly &amp;quot;normal,&amp;quot; that&amp;#039;s the better calculation to use.&lt;/p&gt;&lt;p&gt;And then treat RTH and premarket volume separately when designing your system.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;I want to backtest, but I'm not a programmer&quot;</title>
        <link href="https://davemabe.com/i-want-to-backtest-but-im-not-a-programmer"/>
        <id>https://davemabe.com/i-want-to-backtest-but-im-not-a-programmer</id>
        <published>2025-11-04T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from new list member Emmett H (&lt;em&gt;name used with permission&lt;/em&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Emmett H:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I want to start backtesting. I&amp;#039;m sold after reading your stuff and listening to the podcast.&lt;/p&gt;&lt;p&gt;Do you think RealTest would be a good start for someone with no coding experience?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;RealTest&lt;/strong&gt; is a good place to start, with one caveat.&lt;/p&gt;&lt;p&gt;RealTest operates on daily bar data &lt;strong&gt;only&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you ever want to use intraday data, then you&amp;#039;ll need another backtesting tool.&lt;/p&gt;&lt;p&gt;(And note that the vast majority of traders who trade for a living are trading intraday strategies. There are a variety of reasons why this is the case, which I&amp;#039;ll review in future posts.)&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a quick overview of the options for intraday strategies:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Trade-Ideas&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;No coding required&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Backtest is very fast&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Downside: only 3 months of historical data&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Amibroker&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Unlimited backtesting history (the only limit is the amount of data you can find to import)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Has its own language to learn (coding required)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Downside: LLMs are not great at coding Amibroker&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Python&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;General-purpose language&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Unlimited flexibility&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much harder to get up to speed with trading&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;That said, I&amp;#039;ve worked with several traders who also said &amp;quot;I&amp;#039;m not a coder,&amp;quot; but once they start seeing what&amp;#039;s possible trading intraday strategies, they find a way to backtest with Amibroker.&lt;/p&gt;&lt;p&gt;Good-looking equity curves can be incredibly motivating.&lt;/p&gt;&lt;p&gt;The other thing to point out here is most developers reflexively choose Python for backtesting, but the better choice for them is Amibroker.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve helped several traders switch from Python to Amibroker, and they&amp;#039;re much happier!&lt;/p&gt;&lt;p&gt;Good question, Emmett!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">NASDAQ's Announcement on Tokenization of Stocks</title>
        <link href="https://davemabe.com/nasdaqs-announcement-on-tokenization-of-stocks"/>
        <id>https://davemabe.com/nasdaqs-announcement-on-tokenization-of-stocks</id>
        <published>2025-11-03T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week’s episode of Line Your Own Pockets, we discuss NASDAQ&amp;#039;s recent announcement of its initiative to tokenize all equities by next year.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What tokenization is and what that means for equities&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How it affects settlement and paves the way for 24/7 trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Prediction markets and positive externalities of betting (&amp;quot;Betting is a tax on bullsh*t.&amp;quot;)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Dave proposed a bet to Michael based on the volume traded in the opening and closing crosses in the future&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/nasdaqs-announcement-on-tokenization-of-stocks&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;But I'm Worried About Curve Fitting&quot;</title>
        <link href="https://davemabe.com/but-im-worried-about-curve-fitting"/>
        <id>https://davemabe.com/but-im-worried-about-curve-fitting</id>
        <published>2025-10-31T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Remember when you were a kid and you were scared of the dark?&lt;/p&gt;&lt;p&gt;I bet there was a phase when anytime your mom put you to bed and turned out the lights, you got scared.&lt;/p&gt;&lt;p&gt;But at some point, you learned that the dark wasn&amp;#039;t as scary as you thought.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not that there are no dangers when it&amp;#039;s dark - you&amp;#039;re a lot more likely to fall down the stairs in the dark than when it&amp;#039;s light.&lt;/p&gt;&lt;p&gt;But you learned to live your life without a terrifying fear of darkness.&lt;/p&gt;&lt;p&gt;Many traders have the same irrational fear of &lt;strong&gt;curve fitting&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;They&amp;#039;re scared to make any improvement to their trading strategy because it &amp;quot;could be curve fitting.&amp;quot;&lt;/p&gt;&lt;p&gt;You should consider curve fitting when optimizing your strategy, but with the right process, it should not be crippling you with fear.&lt;/p&gt;&lt;p&gt;Think of one way you could improve your trading strategy.&lt;/p&gt;&lt;p&gt;How can you revisit it with fresh eyes, knowing that most traders are too scared of &lt;strike&gt;the dark&lt;/strike&gt; curve fitting?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Statistically Significant Number of Trades</title>
        <link href="https://davemabe.com/statistically-significant-number-of-trades"/>
        <id>https://davemabe.com/statistically-significant-number-of-trades</id>
        <published>2025-10-30T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;List member Simon replied and asked a question that crosses the minds of all systematic traders at some point or another. (&lt;em&gt;Name used with permission&lt;/em&gt;.)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Simon:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;How do you determine if a model has a statistically significant number of trades?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;My thinking has evolved on this over the years.&lt;/p&gt;&lt;p&gt;I used to think: &amp;quot;The more trades, the better.&amp;quot;  In general, I still think this and always try to create the most trades possible in a strategy.&lt;/p&gt;&lt;p&gt;However, as your intuition and &amp;quot;strategy taste&amp;quot; improve over time, you can be more confident in strategies with fewer trades.&lt;/p&gt;&lt;p&gt;If you understand the workings of your model well, with a strong signal, you can develop the faith to trade a strategy with size even if there are a small number of trades.&lt;/p&gt;&lt;p&gt;There have been multiple times over the years when I&amp;#039;ve shared the details of one of my strategies with smart people with PhDs in statistics.&lt;/p&gt;&lt;p&gt;I remember one of them told me, &amp;quot;Yeah, there&amp;#039;s nothing there.  It&amp;#039;s not statistically significant.&amp;quot;&lt;/p&gt;&lt;p&gt;This is a strategy that generates multiple 6-figure years in profits.&lt;/p&gt;&lt;p&gt;Yet, it&amp;#039;s not &amp;quot;statistically significant&amp;quot; if you apply all the fancy t-tests and such.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing.&lt;/p&gt;&lt;p&gt;The only person you need to convince that your strategy has edge is... yourself.&lt;/p&gt;&lt;p&gt;Specifically, your future self who is trying to find the confidence to continue trading through a system&amp;#039;s drawdown.&lt;/p&gt;&lt;p&gt;Would that person find more confidence if there were more trades or fewer in the backtest?&lt;/p&gt;&lt;p&gt;So, start with more trades than you think you might need, but eventually you might find that fewer trades can work when you develop more intuition.&lt;/p&gt;&lt;p&gt;Great question, Simon - thanks for sharing with the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Execution Hints in a Backtest</title>
        <link href="https://davemabe.com/execution-hints-in-a-backtest"/>
        <id>https://davemabe.com/execution-hints-in-a-backtest</id>
        <published>2025-10-29T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I addressed Matt&amp;#039;s question about &lt;a href=&quot;https://www.davemabe.com/backtesting-versus-execution/&quot;&gt;the rabbit hole of trying to model perfect execution&lt;/a&gt; in a backtest and what not to do.&lt;/p&gt;&lt;p&gt;Today, I&amp;#039;ll share a way to include meaningful data in your backtest that&amp;#039;s highly correlated with execution while still keeping the super simple &amp;quot;one entry and one exit&amp;quot; backtesting approach.&lt;/p&gt;&lt;p&gt;It will come as no surprise to Strategy Cruncher users that the answer is to &lt;strong&gt;add custom columns&lt;/strong&gt; to your backtest.&lt;/p&gt;&lt;p&gt;What Matt&amp;#039;s really trying to do is capture profit from symbols trading with less volume than most larger traders will notice.&lt;/p&gt;&lt;p&gt;I like this approach because the default for a lot of systematic traders is to use a hefty minimum threshold for volume in their strategies.  That is, they only consider the trades in the thickest symbols.&lt;/p&gt;&lt;p&gt;(I bet your stomach would drop when you see how thinly traded some of the symbols are in some of my models!)&lt;/p&gt;&lt;p&gt;Of course, there is a limit to how thinly traded it can be, but there are many tricks you can use to trade thin names.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re running a backtest, you should include columns that describe a symbol&amp;#039;s thickness and then you have a good idea of how low to go and a reference point to adjust to real-world trading results.&lt;/p&gt;&lt;p&gt;Here are some column ideas you can use to capture a symbol&amp;#039;s &amp;quot;thickness&amp;quot;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Average Volume&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Relative Volume (recent volume versus average)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Spread (ask - bid) (raw value and in terms of ATR)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Very recent volume&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Very recent volume as a percent of today&amp;#039;s volume&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Notice that a lot of these columns will apply not only to execution, but could very well be predictive for your strategy more generally.&lt;/p&gt;&lt;p&gt;With the Strategy Cruncher, there&amp;#039;s no reason to limit the number of columns you add since it will tell you which ones are the most predictive.  (Some users have over 300 columns in their backtests.)&lt;/p&gt;&lt;p&gt;Do you have any suggestions for other &amp;quot;thickness-based&amp;quot; columns?  Hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. A lot of these columns are included in Trade-Ideas backtests by default, so TI users will see how to improve their strategy using the Cruncher in seconds.  Click here to get started:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Backtesting Versus Execution</title>
        <link href="https://davemabe.com/backtesting-versus-execution"/>
        <id>https://davemabe.com/backtesting-versus-execution</id>
        <published>2025-10-28T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a good question from long-time list member, Matt H (name used with permission), on simulating real-world executions in a backtest for his strategy in Amibroker.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matt H:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I have a different AmiBroker question.  I spent many hours trying to get this to work, but have not been successful yet.&lt;/p&gt;&lt;p&gt;I know you prefer to have a single entry and exit, but for my current strategy, for the sake of trying to capture liquidity, I need to have several buy and sell locations per symbol.&lt;/p&gt;&lt;p&gt;The first entry position size was properly calculated and entered correctly, but no matter if I pre-calculated an array for the order size (based on candle volume) or calculated the position size inside the for loop, the subsequent entries were oversized and uncorrelated to volume.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You&amp;#039;re absolutely right that my default is to have a single entry and exit in my backtests.&lt;/p&gt;&lt;p&gt;The reason for that is important: it keeps your backtest simple.&lt;/p&gt;&lt;p&gt;Backtesting is daunting for a lot of traders already.&lt;/p&gt;&lt;p&gt;But it is so key to creating consistently profitable strategies - that&amp;#039;s where your valuable insights will come from.&lt;/p&gt;&lt;p&gt;Your backtesting process should be as streamlined as possible, so you can get better at this skill by getting a lot of reps.&lt;/p&gt;&lt;p&gt;The more complicated your backtesting process, the less you&amp;#039;ll end up doing it, so the fewer profitable insights you&amp;#039;ll create for yourself over time.&lt;/p&gt;&lt;p&gt;Modeling execution (which is what Matt&amp;#039;s describing) is a rabbit hole to avoid.&lt;/p&gt;&lt;p&gt;Does that mean you should ignore the differences between your backtest and execution?&lt;/p&gt;&lt;p&gt;No, but understand that any modeling of execution in your backtest is going to be imperfect and totally guessing.&lt;/p&gt;&lt;p&gt;And always one step away from a more &amp;quot;complete picture&amp;quot;, e.g. &amp;quot;if I only include NBBO data&amp;quot; turns into &amp;quot;if I only include Level 2 data&amp;quot;.&lt;/p&gt;&lt;p&gt;A classic rabbit hole requiring a lot of work and resources for minimal benefit.&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll share a minimalist approach for getting almost all the benefits while keeping your backtest as simple as possible.&lt;/p&gt;&lt;p&gt;Thanks for the question, Matt!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What To Do When A Strategy Flips</title>
        <link href="https://davemabe.com/what-to-do-when-a-strategy-flips"/>
        <id>https://davemabe.com/what-to-do-when-a-strategy-flips</id>
        <published>2025-10-27T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week’s episode of Line Your Own Pockets, we discuss a listener&amp;#039;s question.  Andre asks about a strategy he&amp;#039;s backtested, put live, and traded successfully.&lt;/p&gt;&lt;p&gt;Then, the strategy stops working and, in fact, the edge &lt;em&gt;reverses&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;Topics discussed:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What this situation says about your strategy and ultimately your optimization process&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Steps to take if this happens to you&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to prevent this situation in the future&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/what-to-do-when-a-strategy-flips&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Tool to Create a Strategy from a Chart</title>
        <link href="https://davemabe.com/a-tool-to-create-a-strategy-from-a-chart"/>
        <id>https://davemabe.com/a-tool-to-create-a-strategy-from-a-chart</id>
        <published>2025-10-24T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Imagine going to a high-end restaurant with a famous chef.&lt;/p&gt;&lt;p&gt;You get seated and you&amp;#039;re ready for a fantastic meal.&lt;/p&gt;&lt;p&gt;But instead of having menus, the chef arrives at your table and says, &amp;quot;OK, what should I make?&amp;quot;&lt;/p&gt;&lt;p&gt;Wouldn&amp;#039;t that be bizarre?&lt;/p&gt;&lt;p&gt;Yet, that&amp;#039;s what you&amp;#039;re doing when you try to create a strategy from a chart - it&amp;#039;s hard!&lt;/p&gt;&lt;p&gt;To create a strategy, you need a signal.&lt;/p&gt;&lt;p&gt;Wouldn&amp;#039;t it be nice if you had a menu of signals that actually occurred on a chart to choose from?&lt;/p&gt;&lt;p&gt;That&amp;#039;s exactly what the very underrated and free (!!) &lt;a href=&quot;https://www.trade-ideas.com/StockInfo/_StocksLikeThis.html&quot;&gt;Stocks Like This tool&lt;/a&gt; at Trade-Ideas does.&lt;/p&gt;&lt;p&gt;Take a chart like GTX from 10/23.  Let&amp;#039;s say you were trying to concoct a signal to fade the up move in the yellow rectangle below:&lt;/p&gt;&lt;p&gt;You would plug in the symbol, the date, the time of day, and the duration into the Stocks Like This tool (&lt;a href=&quot;https://www.trade-ideas.com/StockInfo/_StocksLikeThis.html?symbol=GTX&amp;amp;start_date=1761202800&amp;amp;start_hours=9&amp;amp;start_minutes=45&amp;amp;time=30&quot;&gt;link to the results&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;It returns a comprehensive list of the signals that occurred during that time period in the stock, along with the number of times the signal occurred.  Here are the first few:&lt;/p&gt;&lt;p&gt;Rather than an open-ended starting point (like the chef asking &lt;strong&gt;you&lt;/strong&gt; what he should make), this allows you to order a signal off a menu.&lt;/p&gt;&lt;p&gt;A much easier starting point.&lt;/p&gt;&lt;p&gt;Kick the tires a bit and let me know what you think.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategy Ideas from a Chart</title>
        <link href="https://davemabe.com/strategy-ideas-from-a-chart-2"/>
        <id>https://davemabe.com/strategy-ideas-from-a-chart-2</id>
        <published>2025-10-23T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I &lt;a href=&quot;https://www.davemabe.com/strategy-ideas-from-a-chart/&quot;&gt;showed the mistake most traders make&lt;/a&gt; when trying to formulate a strategy based on a stock chart.&lt;/p&gt;&lt;p&gt;A few readers responded with their thoughts on the RTX chart in that post.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s brainstorm some ways to create a strategy based on that chart.&lt;/p&gt;&lt;p&gt;Here are a few ideas that come to mind from this one example.  Here&amp;#039;s the chart again for reference, ideas follow:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Strategy Ideas&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Find an alert in the first tall green bar (probably a new high alert with some volume)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;After the first tall green bar, go long the pull back in the second green bar with the long wick&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Fade the initial move by finding a threshold that the price has gone up too far&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;After the first two green bars, a consolidation forms.  Go long the breakout of that consolidation.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Go short the breakdown of that consolidation (wouldn&amp;#039;t have triggered in this example, but easy to find other examples that would have)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A hammer bar forms in the consolidation (the 10th bar in the yellow box) - go long the break of that candle&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Short the subsequent move up (above the yellow box)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There are seven ideas to test from this one chart.&lt;/p&gt;&lt;p&gt;Can you think of others?&lt;/p&gt;&lt;p&gt;Each of these ideas is easily testable in Amibroker, and some can be modeled in Trade-Ideas.&lt;/p&gt;&lt;p&gt;The point here is not whether these ideas would have worked in this particular RTX example.&lt;/p&gt;&lt;p&gt;The real value is creating ideas from this chart to apply across the entire market.&lt;/p&gt;&lt;p&gt;Anyone interested in testing one of these ideas and sharing the results with the list?&lt;/p&gt;&lt;p&gt;If so, hit reply and let me know.  I&amp;#039;ll give you a free month of &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher access&lt;/a&gt; to do a case study.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategy Ideas from a Chart</title>
        <link href="https://davemabe.com/strategy-ideas-from-a-chart"/>
        <id>https://davemabe.com/strategy-ideas-from-a-chart</id>
        <published>2025-10-22T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As you do your daily review of the charts of &lt;a href=&quot;https://www.davemabe.com/where-do-strategy-ideas-come-from/&quot;&gt;stocks that moved&lt;/a&gt;, what exactly are you looking for?&lt;/p&gt;&lt;p&gt;You&amp;#039;re brainstorming ways you could have realistically participated in that move.&lt;/p&gt;&lt;p&gt;The key word there is &lt;strong&gt;realistically&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Most traders look at a chart and immediately gravitate towards the area before the big move and try to find a signal there.&lt;/p&gt;&lt;p&gt;Take this chart of RTX from yesterday that appeared on my &amp;quot;Stocks with the Biggest Range&amp;quot; scan in Trade-Ideas:&lt;/p&gt;&lt;p&gt;Most traders try to concoct a strategy signal where the red arrow is pointing, but you&amp;#039;re mostly wasting your time looking for a signal there.&lt;/p&gt;&lt;p&gt;The better approach is to find a signal &lt;strong&gt;after some initial movement&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;It&amp;#039;s tough to predict which stocks the market will react to (although RTX had earnings that caused this spike - good luck predicting the direction ahead of time, though!)&lt;/p&gt;&lt;p&gt;It&amp;#039;s significantly easier (not easy!) to create a strategy that trades the reaction to some event.&lt;/p&gt;&lt;p&gt;So the first place I would look on this chart is not the red arrow, but the yellow triangle.&lt;/p&gt;&lt;p&gt;Maybe you get lucky and find a trade or two where the red arrow is, but we&amp;#039;re looking for something repeatable.&lt;/p&gt;&lt;p&gt;Something that happens frequently that we can capitalize on.&lt;/p&gt;&lt;p&gt;Tomorrow I&amp;#039;ll go over ideas for signals for a trading strategy from looking at charts.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Where Do Strategy Ideas Come From?</title>
        <link href="https://davemabe.com/where-do-strategy-ideas-come-from"/>
        <id>https://davemabe.com/where-do-strategy-ideas-come-from</id>
        <published>2025-10-21T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;It&amp;#039;s hard for new traders to imagine having too many ideas for trading strategies, but that&amp;#039;s what happens when you create a process for yourself and follow it.&lt;/p&gt;&lt;p&gt;The best traders put themselves in a position every day to &lt;strong&gt;notice&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;What are they noticing?&lt;/p&gt;&lt;p&gt;Trading strategies come from not just everyday market behavior, but from &lt;strong&gt;unusual market behavior&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;The normal stuff is noise, but the unusual action provides the seeds that can turn into a trading strategy.&lt;/p&gt;&lt;p&gt;To notice the unusual stuff, you need to look at charts.&lt;/p&gt;&lt;p&gt;This will not come naturally to traders who come from an engineering or programming background, who prefer to work in a spreadsheet.&lt;/p&gt;&lt;p&gt;Creating a process to review charts is important.&lt;/p&gt;&lt;p&gt;You don&amp;#039;t need to scan the charts of every stock in the market every day.&lt;/p&gt;&lt;p&gt;So which charts should you look at?&lt;/p&gt;&lt;p&gt;Start with the stocks that traded unusually today.&lt;/p&gt;&lt;p&gt;Here are a few ideas for different scans to get started:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Stocks that went up the most today (in terms of percentage or ATR)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Stocks that went down the most today (in terms of percentage or ATR)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Stocks that moved the most today (the largest ranges)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Stocks that gapped up today&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Stocks that gapped down today&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There will be significant overlap between stocks in those lists and stocks that appeared in successful trading strategies.&lt;/p&gt;&lt;p&gt;The next step is formulating an idea based on what you see in those charts.&lt;/p&gt;&lt;p&gt;That&amp;#039;s the topic for tomorrow.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you have other scans that you look at regularly and would like to share? Hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Stopped Out by a Penny?  Good.</title>
        <link href="https://davemabe.com/stopped-out-by-a-penny-good"/>
        <id>https://davemabe.com/stopped-out-by-a-penny-good</id>
        <published>2025-10-20T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, we talk about stops.&lt;/p&gt;&lt;p&gt;Psst, and I&amp;#039;ve got news for you - there&amp;#039;s nobody who cares enough about your stops to go &amp;quot;hunting for them.&amp;quot;&lt;/p&gt;&lt;p&gt;And getting stopped out by a penny is frustrating, but it&amp;#039;s actually a &lt;strong&gt;good&lt;/strong&gt; sign.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Blaming an algo or anything else for your trade getting stopped out is counter-productive&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why most traders are completely wrong about placing stops&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to select stops for your strategy in a data-driven way&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/stopped-out-by-a-penny-good&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Share Your Ideas</title>
        <link href="https://davemabe.com/share-your-ideas"/>
        <id>https://davemabe.com/share-your-ideas</id>
        <published>2025-10-17T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the big mistakes you can make in your trading career is &lt;strong&gt;not&lt;/strong&gt; sharing your ideas.&lt;/p&gt;&lt;p&gt;&amp;quot;Who was I to put ideas out in the universe?&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;quot;Why would I do that?&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;quot;What was the ROI?&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;quot;Why would anyone read what I wrote?&amp;quot;&lt;/p&gt;&lt;p&gt;These are all thoughts I had at various times.&lt;/p&gt;&lt;p&gt;But looking back, they were just excuses.&lt;/p&gt;&lt;p&gt;The more you share, the more you get back.&lt;/p&gt;&lt;p&gt;But even before getting anything back from the universe from writing, there&amp;#039;s a very immediate benefit from it.&lt;/p&gt;&lt;p&gt;Writing forces you to crystallize your ideas.&lt;/p&gt;&lt;p&gt;To turn them from fleeting thoughts into well-formed, actionable ideas.&lt;/p&gt;&lt;p&gt;I&amp;#039;m always grateful when someone benefits from something I write or from the podcast.&lt;/p&gt;&lt;p&gt;What&amp;#039;s really great, though, is when someone shares their ideas as a result.&lt;/p&gt;&lt;p&gt;That&amp;#039;s why I want to highlight the work of long-time list member, Bruce Tharp.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s &lt;a href=&quot;https://bwtharp.substack.com/p/strategies-todays-choice-and-the?r=2467cl&amp;amp;utm_campaign=post&amp;amp;utm_medium=web&amp;amp;triedRedirect=true&quot;&gt;his latest post describing his futures strategy&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;He describes one thing he learned from the podcast that &amp;quot;opened a whole new world of results&amp;quot; from his backtests.&lt;/p&gt;&lt;p&gt;Well done, Bruce, and thanks for sharing!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. For a good book on the subject of sharing, I highly recommend &lt;a href=&quot;https://www.amazon.com/Give-Take-Helping-Others-Success/dp/0143124986/&quot;&gt;Give and Take&lt;/a&gt; by Adam Grant.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Turning on Your Trading Idea Spigot</title>
        <link href="https://davemabe.com/turning-on-your-trading-idea-spigot"/>
        <id>https://davemabe.com/turning-on-your-trading-idea-spigot</id>
        <published>2025-10-16T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When beginning traders are getting started, they&amp;#039;re typically starving for good ideas for strategies.&lt;/p&gt;&lt;p&gt;That&amp;#039;s the bottleneck at first.&lt;/p&gt;&lt;p&gt;Once you have some success, the ideas start to come.&lt;/p&gt;&lt;p&gt;It often sneaks up on traders and they&amp;#039;re caught flat-footed without an organized way of capturing and processing the ideas that start flowing.&lt;/p&gt;&lt;p&gt;It&amp;#039;s always interesting to me that new traders are terrified of not having ideas, but experienced traders literally have the opposite problem: too many ideas!&lt;/p&gt;&lt;p&gt;That&amp;#039;s the real bottleneck for the experienced trader.&lt;/p&gt;&lt;p&gt;It might seem like an avalanche of trading ideas is a lifetime away.&lt;/p&gt;&lt;p&gt;Or that you weren&amp;#039;t born with the &amp;quot;trading idea&amp;quot; gene.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s simply not true.&lt;/p&gt;&lt;p&gt;Professional baseball players didn&amp;#039;t emerge from the womb able to hit a 100mph fastball.&lt;/p&gt;&lt;p&gt;But they did create a process for themselves to improve.&lt;/p&gt;&lt;p&gt;To get a little bit better every day.&lt;/p&gt;&lt;p&gt;Great traders put themselves every day in a position to notice the important patterns.&lt;/p&gt;&lt;p&gt;Patterns that could turn into a trading strategy.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll be focusing on this topic in the coming days.&lt;/p&gt;&lt;p&gt;Stay tuned!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Useful Amibroker Keyboard Shortcut</title>
        <link href="https://davemabe.com/a-useful-amibroker-keyboard-shortcut"/>
        <id>https://davemabe.com/a-useful-amibroker-keyboard-shortcut</id>
        <published>2025-10-15T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;It&amp;#039;s not every day that I learn a new feature in Amibroker, but that happened just yesterday.&lt;/p&gt;&lt;p&gt;This is something I wish I&amp;#039;d have known years ago - I bet it would have saved me thousands of mouse clicks per month.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how it works.  The AFL editor where you edit your code is in a separate window from the analysis window, where you run your exploration or backtest.&lt;/p&gt;&lt;p&gt;So, you&amp;#039;re often switching between these windows to try something, then going back to your code to make adjustments, and then trying again, etc.&lt;/p&gt;&lt;p&gt;To make this workflow efficient, I would place the AFL editor window on a different monitor.&lt;/p&gt;&lt;p&gt;But now that I stumbled upon a convenient keyboard shortcut, I&amp;#039;ve completely changed how I do this.&lt;/p&gt;&lt;p&gt;The keyboard shortcut is &lt;code&gt;control-backtick&lt;/code&gt; (&lt;code&gt;cntl-`&lt;/code&gt;) (the backtick is above the tab key).&lt;/p&gt;&lt;p&gt;This toggles between the main Amibroker window and the AFL editor window.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a video showing it in action:  (I&amp;#039;m simply typing &lt;code&gt;cntl-`&lt;/code&gt; to make this happen)&lt;/p&gt;&lt;p&gt;If the video doesn&amp;#039;t appear, you can &lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2025/10/amibroker_shortcut.gif&quot;&gt;view it on the web here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Now I have the AFL editor right behind the main Amibroker window, and I can efficiently toggle between them with minimal context change.&lt;/p&gt;&lt;p&gt;A big improvement.&lt;/p&gt;&lt;p&gt;Do you have other keyboard shortcuts you use in Amibroker?  Hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Amibroker: Coding a Time Stop</title>
        <link href="https://davemabe.com/amibroker-coding-a-time-stop"/>
        <id>https://davemabe.com/amibroker-coding-a-time-stop</id>
        <published>2025-10-14T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Long-time reader Thanit P. (name used with permission) sent me a code snippet in AFL with a question about coding a time stop, that is, an exit after a certain amount of time if another exit order hasn&amp;#039;t executed.&lt;/p&gt;&lt;p&gt;(I won&amp;#039;t include the entire AFL code to keep Thanit&amp;#039;s strategy logic private, but I&amp;#039;ll share the logic in question in my response.)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Thanit P.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;It would be great if you could give some suggestions on my following code as it has failed to give any signal in live trading (a topic I have never talked about with you before but would be eager to). However, it gave normal backtesting results. &lt;/p&gt;&lt;p&gt;The reason is that I think you may be able to help is that your demo code involves the use of a loop, which is something I didn&amp;#039;t think of before about AFL. However, after trying to code &amp;quot;exit on X bars&amp;quot;, ChatGPT gave me this loop. At first, I thought it would be OK as the backtest was fine. I suspect the function &amp;quot;barcount&amp;quot; may work differently in a live environment?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The AFL code in question is this:&lt;/p&gt;&lt;p&gt;First of all, ChatGPT is notoriously poor at AFL.&lt;/p&gt;&lt;p&gt;Hopefully, it will improve, but I end up fixing a lot of bad AFL code for traders who generate it with ChatGPT.&lt;/p&gt;&lt;p&gt;In theory, this code should work, but there are edge cases where it won&amp;#039;t.&lt;/p&gt;&lt;p&gt;For example, this won&amp;#039;t work if there are bars where the symbol doesn&amp;#039;t trade.  That is, if you&amp;#039;re expecting to exit in 30 minutes and the symbol doesn&amp;#039;t have trades for half of those bars, then this logic won&amp;#039;t exit until 60 minutes!&lt;/p&gt;&lt;p&gt;For time stops, it&amp;#039;s always a good idea to use &lt;strong&gt;minutes since the market open&lt;/strong&gt; and/or &lt;strong&gt;minutes until the market close&lt;/strong&gt; as a reference.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easier to follow the logic, and it&amp;#039;s extensible.  For example, you could integrate half-day support and your logic wouldn&amp;#039;t change.&lt;/p&gt;&lt;p&gt;Real-time versus backtesting in Amibroker is a big topic.&lt;/p&gt;&lt;p&gt;There are major differences that come into play in real-time trading that you don&amp;#039;t have to think about in backtesting.&lt;/p&gt;&lt;p&gt;More on that later.&lt;/p&gt;&lt;p&gt;Thanks for the question, Thanit P.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Trading Gambling?</title>
        <link href="https://davemabe.com/is-trading-gambling"/>
        <id>https://davemabe.com/is-trading-gambling</id>
        <published>2025-10-13T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode, we tackle this popular question. I polled several traders I coach and got some surprising answers.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How much is trading like, say, poker, or something that is even more up to chance?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Even starting a business can be called gambling if defined purely as &amp;quot;risking money on uncertain outcomes.&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Does having an edge make trading less like gambling?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;In a casino, is the house &amp;quot;gambling&amp;quot; because it has a strong edge?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;What&amp;#039;s your take?&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/is-trading-gambling&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Amibroker Performance Tool: Profiler</title>
        <link href="https://davemabe.com/amibroker-performance-tool-profiler"/>
        <id>https://davemabe.com/amibroker-performance-tool-profiler</id>
        <published>2025-10-10T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When troubleshooting Amibroker performance, there&amp;#039;s a valuable tool that most users don&amp;#039;t know about or appreciate.&lt;/p&gt;&lt;p&gt;It&amp;#039;s called a code profiler.&lt;/p&gt;&lt;p&gt;Developers might recognize this type of tool from other languages (for example, Visual Studio includes an excellent one for C#).&lt;/p&gt;&lt;p&gt;A code profiler tells you all the function calls your program is making and how resource-intensive each one is.&lt;/p&gt;&lt;p&gt;This is invaluable for tracking down performance issues.&lt;/p&gt;&lt;p&gt;In Amibroker, it&amp;#039;s available in the &lt;strong&gt;AFL Formula Editor&lt;/strong&gt; window by going to &lt;strong&gt;Tools&lt;/strong&gt; and choosing the &lt;strong&gt;Code Check &amp;amp; Profile&lt;/strong&gt; menu item.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the report from an AFL file I&amp;#039;m working on now:&lt;/p&gt;&lt;p&gt;I can see that the GetGradient function is only called 3 times, but the time spent in that function is 94ms, the most of any function called.&lt;/p&gt;&lt;p&gt;This allows you to quickly track down which functions are causing the biggest delay in your code.&lt;/p&gt;&lt;p&gt;Typically, this doesn&amp;#039;t matter THAT much for backtesting, but when you start using Amibroker to trade in real-time, it becomes very important.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Does Automated Trading Require a Developer?</title>
        <link href="https://davemabe.com/does-automated-trading-require-a-developer"/>
        <id>https://davemabe.com/does-automated-trading-require-a-developer</id>
        <published>2025-10-09T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Early in my career, I remember wondering if I could even write code since I didn&amp;#039;t have a computer science degree.&lt;/p&gt;&lt;p&gt;It turns out I could.&lt;/p&gt;&lt;p&gt;Self-taught programmers are usually good because they&amp;#039;ve learned to code from a genuine desire to automate a need they had.&lt;/p&gt;&lt;p&gt;It&amp;#039;s one thing to learn to program by following an example in a book or course.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a lot more motivating to learn when the task is not some contrived example project, but a real-world thing that will make your life better.&lt;/p&gt;&lt;p&gt;And can you guess what the most motivating project is?&lt;/p&gt;&lt;p&gt;One that magically converts &amp;quot;non-developers&amp;quot; into people who can write code?&lt;/p&gt;&lt;p&gt;Just one glance at the equity curve of a decent trading strategy can turn someone who isn&amp;#039;t a developer into someone who can get it done.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve seen this many times.&lt;/p&gt;&lt;p&gt;Equity curves have a way of being very motivating.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Signal Generation and Trade Execution - Separate?</title>
        <link href="https://davemabe.com/signal-generation-and-trade-execution-separate"/>
        <id>https://davemabe.com/signal-generation-and-trade-execution-separate</id>
        <published>2025-10-08T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another great question from a new list member, Chip, about how to set up the code for automating his trading strategy.  (Name used with permission)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Chip:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve always kind of known discretionary wasn&amp;#039;t for me...been at this unsuccessfully for a long time. Had previously used Python to do some analysis work, but your stuff really inspired me to revisit a backtest for an idea I had. Changing the approach to adding columns was a game-changer for finding the edge in the idea (I think). It&amp;#039;s taken weeks to get it to a usable place, but I started trading it a few days ago. Not fully automated yet, it&amp;#039;s just spitting out the signals, but I&amp;#039;m excited about seeing how it works and figuring out how to automate the orders.&lt;/p&gt;&lt;p&gt;Is it best practice to have the alert script place the orders? Or, do you create a separate script to read the alert output and then place the orders?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The &lt;strong&gt;signal generation&lt;/strong&gt; and &lt;strong&gt;acting on it&lt;/strong&gt; are two different things.  In this case, I like having them separate.&lt;/p&gt;&lt;p&gt;That makes it way easier to test things, and you&amp;#039;ll have separate code files for each function.&lt;/p&gt;&lt;p&gt;The computer science term for this idea is &lt;a href=&quot;https://en.wikipedia.org/wiki/Separation_of_concerns&quot;&gt;separation of concerns&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;And it&amp;#039;s not something you simply learn in school, it&amp;#039;s a practical way to design your code structure that makes your life way easier.&lt;/p&gt;&lt;p&gt;One thing I ALWAYS include in either script is plenty of parameters to control the behavior without actually modifying the code.&lt;/p&gt;&lt;p&gt;One of them in particular is a &lt;code&gt;--pretend&lt;/code&gt; mode (sometimes called &lt;code&gt;--dry-run&lt;/code&gt;).&lt;/p&gt;&lt;p&gt;In that mode, it takes all the steps except actually doing anything - it simply reports what it WOULD do if it weren&amp;#039;t in pretend mode.&lt;/p&gt;&lt;p&gt;I can&amp;#039;t tell you how many times a scenario comes up where pretend mode comes in handy!&lt;/p&gt;&lt;p&gt;Trying to cobble that together when you need it is trickier than it seems, so I do this right from the beginning when I create almost any script or code.&lt;/p&gt;&lt;p&gt;Thanks for the question, Chip, and welcome to the list!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Monte Carlo Simulations for a Backtest</title>
        <link href="https://davemabe.com/monte-carlo-simulations-for-a-backtest"/>
        <id>https://davemabe.com/monte-carlo-simulations-for-a-backtest</id>
        <published>2025-10-07T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Long-time list member Marek R. wrote in to ask about Monte Carlo simulations (name used with permission).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Marek R.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve recently discovered Monte Carlo simulations. How do you approach this? Do you use this kind of random order of the trades to confirm the edge and avoid curve fitting to only the historical data sequence?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I think Monte Carlo simulations are a useful tool to have in your toolbox.&lt;/p&gt;&lt;p&gt;I don&amp;#039;t use them frequently, but occasionally I&amp;#039;ll use them to visualize different ways a strategy might have played out.&lt;/p&gt;&lt;p&gt;The idea is you take your backtest, which is a list of trades in order by entry time, and reorder them randomly.&lt;/p&gt;&lt;p&gt;You can do this multiple times and then compare the resulting equity curves against each other.&lt;/p&gt;&lt;p&gt;The ordering of your trades is somewhat random, so when you reorder them, you are simulating plausible scenarios that could have occurred, but didn&amp;#039;t happen just by chance.&lt;/p&gt;&lt;p&gt;You can better visualize what could have happened, and therefore what sort of variance you can expect going forward.&lt;/p&gt;&lt;p&gt;Is this useful?  Yes.&lt;/p&gt;&lt;p&gt;Is it a silver bullet that you can use to improve your strategy or prevent curve fitting?  Probably not.&lt;/p&gt;&lt;p&gt;But it&amp;#039;s certainly worth knowing about and having in your bag of tricks.&lt;/p&gt;&lt;p&gt;Good question, Marek - thank you!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using Alternative Data in a Backtest</title>
        <link href="https://davemabe.com/using-alternative-data-in-a-backtest"/>
        <id>https://davemabe.com/using-alternative-data-in-a-backtest</id>
        <published>2025-10-06T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode, Michael asks me how to include alternative data in one of his backtests.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What is alternative data, and how can you use it in a strategy?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Examples of alternative data&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Using it in real-time versus a backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to automate the process for backtesting and real-time trading&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/using-alternative-data-in-a-backtest&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Dynamic Sizing Based on Risk?</title>
        <link href="https://davemabe.com/dynamic-sizing-based-on-risk"/>
        <id>https://davemabe.com/dynamic-sizing-based-on-risk</id>
        <published>2025-10-03T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;List member Brandon C. replied in response to my &lt;a href=&quot;https://www.davemabe.com/what-sizing-is-best/&quot;&gt;recent post on position sizing&lt;/a&gt; with a good question (name used with permission).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Brandon C.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;What are your thoughts on dynamic sizing based on risk? For example, you have set parameters for grading an opportunity/catalyst and risk tiers and acting accordingly.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Grade A and A+: 80 to 100% of your daily stop&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Grade B setups: 40%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Grade C setups: 20% and so on.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I love this approach.&lt;/p&gt;&lt;p&gt;It&amp;#039;s definitely not for beginning traders, but it&amp;#039;s something all traders should be shooting for and thinking about.&lt;/p&gt;&lt;p&gt;Why?&lt;/p&gt;&lt;p&gt;It puts you in a mindset to scale your strategy.&lt;/p&gt;&lt;p&gt;Take a look at your equity curve for your backtest.&lt;/p&gt;&lt;p&gt;Now imagine, before entering, being able to identify the most profitable 20% of the trades (without curve fitting).&lt;/p&gt;&lt;p&gt;When you can do that, you have a powerful way to scale up your strategy by &lt;strong&gt;increasing your size in the most profitable trades&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Some traders tell me that there&amp;#039;s no way they can do this with their strategy - every trade has the same probability of succeeding.&lt;/p&gt;&lt;p&gt;But there&amp;#039;s just no way that can be true.&lt;/p&gt;&lt;p&gt;Once you develop a strategy that works, this is the next step for making it significantly better.&lt;/p&gt;&lt;p&gt;Thanks for the question, Brandon C.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;The Strategy Cruncher&lt;/a&gt; is the perfect tool for figuring out how to increase size in the most profitable trades in your backtest.  Here&amp;#039;s an example from one of my strategies that I backtest in Amibroker. This comes right from the cruncher report.  I can quickly see from this one suggestion from the cruncher that I can use a larger size for this set of trades.  This rule is based on the distance from yesterday&amp;#039;s close price - something I would not have been aware of if the cruncher hadn&amp;#039;t suggested it.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Percent of Account to Risk</title>
        <link href="https://davemabe.com/percent-of-account-to-risk"/>
        <id>https://davemabe.com/percent-of-account-to-risk</id>
        <published>2025-10-02T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Following up on &lt;a href=&quot;https://www.davemabe.com/what-sizing-is-best/&quot;&gt;yesterday&amp;#039;s post&lt;/a&gt; to address the crux of Abhishek&amp;#039;s question.&lt;/p&gt;&lt;p&gt;What percent of your account should you be risking per trade?&lt;/p&gt;&lt;p&gt;This is one of those questions where there aren&amp;#039;t any right answers, but there are a whole lot of wrong ones.&lt;/p&gt;&lt;p&gt;The way I like to approach this is: what&amp;#039;s the smallest number you can use and still accomplish your goals?&lt;/p&gt;&lt;p&gt;In general, risk is trader-dependent. There are too many factors to have a one-size-fits-all answer.&lt;/p&gt;&lt;p&gt;Here are some factors I&amp;#039;ve used over the years to determine the risk to use per trade in one of my strategies:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;My age&lt;/strong&gt; - in my younger trading years, I could afford to risk more since time was on my side&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Tail risk&lt;/strong&gt; - does the strategy have significant tail risk? If so, tend towards a lower number than you think&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Strategy quality&lt;/strong&gt; - does the strategy have the ability to scale? If I think so, I&amp;#039;d start with a lower number with the plan to increase over time&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Win rate&lt;/strong&gt; - definitely an overrated stat, but still, strategies with a lower win rate are psychologically difficult to trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Historical drawdowns&lt;/strong&gt; - how deep are the drawdowns? How much am I willing to go in the hole in the future? If they&amp;#039;re large, then I&amp;#039;d tend towards a lower percentage&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Smoothness of the equity curve&lt;/strong&gt; - the most underrated stat!&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Confidence in the above factors&lt;/strong&gt; - you&amp;#039;ll very likely have varying levels of confidence in the previous factors. If my confidence is fuzzy, I&amp;#039;d start with a lower number and increase as things come into focus&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;If this feels like a wishy-washy answer, good!  That&amp;#039;s the right takeaway.&lt;/p&gt;&lt;p&gt;Risk is a personal decision, and when in doubt, risk a lower amount than you think is prudent.&lt;/p&gt;&lt;p&gt;Risk is one of those things that &lt;em&gt;should&lt;/em&gt; keep you up at night a little.&lt;/p&gt;&lt;p&gt;How might you be fooling yourself?  Overconfidence is a far bigger problem than underconfidence.&lt;/p&gt;&lt;p&gt;Thanks for the question, Abhishek!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What Sizing is Best?</title>
        <link href="https://davemabe.com/what-sizing-is-best"/>
        <id>https://davemabe.com/what-sizing-is-best</id>
        <published>2025-10-01T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a follow-up question from Abhishek K. (used with permission) to my recent post on &lt;a href=&quot;https://www.davemabe.com/two-position-sizing-approaches/&quot;&gt;two position sizing approaches&lt;/a&gt;.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Abhishek:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;When the sizing is based on stop, are you risking a fixed % of your capital every trade? If so, how much do you recommend: 1%, 2%, or 5% per trade?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Yes, with most strategies, I risk a certain amount of capital with every trade.&lt;/p&gt;&lt;p&gt;This is different than the &lt;strong&gt;total amount of money at work&lt;/strong&gt; for a given trade.&lt;/p&gt;&lt;p&gt;This is a crucial concept to understand.&lt;/p&gt;&lt;p&gt;The &lt;strong&gt;amount at risk&lt;/strong&gt; is the important part - the total money at work is almost irrelevant for good trading system design.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a hypothetical example from the &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot;&gt;Get Systematic Roadmap&lt;/a&gt; I offer:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;You go long 1000 shares of AAPL at $186 with a stop price of $176. You exit with a profit of $1900.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You go long 1000 shares of AAPL at $186 with a stop price of $185. You exit with a profit of $1900.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;One of those trades is a LOT better than the other.&lt;/p&gt;&lt;p&gt;Can you tell which one?&lt;/p&gt;&lt;p&gt;Tomorrow I&amp;#039;ll address the meat of Abhishek&amp;#039;s question about the percent of account size to risk.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Special Symbols for your Backtest</title>
        <link href="https://davemabe.com/special-symbols-for-your-backtest"/>
        <id>https://davemabe.com/special-symbols-for-your-backtest</id>
        <published>2025-09-30T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On Friday, I showed &lt;a href=&quot;https://www.davemabe.com/adding-data-from-other-symbols-into-a-backtest/&quot;&gt;how easy it is to add alternative symbols&lt;/a&gt; to your Amibroker backtest using the &lt;code&gt;SetForeign&lt;/code&gt; function.&lt;/p&gt;&lt;p&gt;I showed how to add data from the SPY, but there are many interesting special symbols available to you if you know where to look.&lt;/p&gt;&lt;p&gt;Although you can&amp;#039;t trade these symbols, from your data feed&amp;#039;s perspective, they look and feel exactly like regular symbols.&lt;/p&gt;&lt;p&gt;This makes them very convenient to add to your backtest as a column.&lt;/p&gt;&lt;p&gt;And once you add it as a column, you can easily optimize on it.&lt;/p&gt;&lt;p&gt;Here are the ones in my column library that I include in each backtest as columns (IQFeed symbol in parens):&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;TICK (TICK.Z)&lt;/strong&gt; - The NYSE Tick: number of NYSE‐listed stocks whose &lt;strong&gt;last trade was above&lt;/strong&gt; the previous trade minus the number whose last trade was below the previous trade. In other words, net upticks minus downticks.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;TRIN (TRIN.Z)&lt;/strong&gt; - Also called the “Arms Index” or “NYSE Trin”. It is a breadth‐oscillator that compares &lt;strong&gt;advancing vs declining issues&lt;/strong&gt; (number of stocks up vs down) relative to their respective &lt;strong&gt;volume&lt;/strong&gt;. Formula is something like (Advancers ÷ Decliners) divided by (Advancing volume ÷ Declining volume).&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;VIX (VIX.XO)&lt;/strong&gt; - The CBOE Volatility Index — often called the “fear index”. It measures the market’s expectation of &lt;strong&gt;30-day forward volatility&lt;/strong&gt; implied by S&amp;amp;P 500 option prices.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;IINA (IINA.Z)&lt;/strong&gt; - The number of &lt;strong&gt;advancing issues&lt;/strong&gt; (stocks trading up from prior close) on the NYSE — at a snapshot (often cumulative through the trading day) or repeated interval snapshots.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;IIND (IIND.Z)&lt;/strong&gt; - The number of &lt;strong&gt;declining issues&lt;/strong&gt; on the NYSE — stocks trading down from their prior close, same framing as IINA.Z.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;IINU (IINU.Z)&lt;/strong&gt; - The number of &lt;strong&gt;unchanged issues&lt;/strong&gt; on the NYSE — stocks whose price hasn’t changed (from their prior close) at that snapshot.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Your data feed will likely have slightly different symbols for these and other special symbols.  Search for &amp;quot;symbology&amp;quot; to find the documentation for your data feed.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the link to &lt;a href=&quot;https://ws1.dtn.com/IQ/Guide/indices_index.html&quot;&gt;IQFeed&amp;#039;s Market Indices Symbols&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;You can bring these symbols up in a chart and get a sense of the range of values to understand what&amp;#039;s normal and extreme.&lt;/p&gt;&lt;p&gt;(I use IQFeed as my real-time data feed for Amibroker.)&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Different Way to Go Live</title>
        <link href="https://davemabe.com/a-different-way-to-go-live"/>
        <id>https://davemabe.com/a-different-way-to-go-live</id>
        <published>2025-09-29T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode, Dave discusses a conversation he had with John M. from SMB Trading and his unique approach to taking a strategy live.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;John&amp;#039;s 35+ strategies he runs live&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How quickly he gets a strategy running in production&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;His approach to collaboration with other traders&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What &amp;quot;strategy taste&amp;quot; is and how you can improve yours over time&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/a-different-way-to-go-live&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Adding Data from Other Symbols into a Backtest</title>
        <link href="https://davemabe.com/adding-data-from-other-symbols-into-a-backtest"/>
        <id>https://davemabe.com/adding-data-from-other-symbols-into-a-backtest</id>
        <published>2025-09-26T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The beauty of using the &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher&lt;/a&gt; is that there&amp;#039;s no reason not to add more columns to your backtest.&lt;/p&gt;&lt;p&gt;The Cruncher will tell you which ones are important.&lt;/p&gt;&lt;p&gt;I have over 200 columns in my column library - some traders have over 300 - that get automatically added to every backtest I run.&lt;/p&gt;&lt;p&gt;One type of data point traders often overlook is data from other symbols.&lt;/p&gt;&lt;p&gt;For example, you have a strategy that trades gapping stocks.&lt;/p&gt;&lt;p&gt;One useful column might be the current SPY gap.&lt;/p&gt;&lt;p&gt;If SPY is gapping up, maybe a stock gapping up isn&amp;#039;t that unusual.&lt;/p&gt;&lt;p&gt;Amibroker makes accessing this data easy using the &lt;code&gt;SetForeign&lt;/code&gt; function:&lt;/p&gt;&lt;p&gt;Now, any calculation can be made on SPY data and included as a column in your backtest.&lt;/p&gt;&lt;p&gt;Next time, I&amp;#039;ll share the alternate data points I include in my backtest - stay tuned.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Backtesting on Short Timeframes</title>
        <link href="https://davemabe.com/backtesting-on-short-timeframes"/>
        <id>https://davemabe.com/backtesting-on-short-timeframes</id>
        <published>2025-09-25T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from list member Marek R. on how to do backtesting on small timeframes.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Marek R.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;How do you approach backtesting on 1-minute data when there are trades with a trade duration less than 1 minute?&lt;/p&gt;&lt;p&gt;When I design the strategy, I try to intuitively engineer the strategy that I would avoid trades executed within a 1-minute candle, but when I was doing trade review today, I noticed that yesterday I had 11 trades and 5 were within a 1-minute duration, which turned the winning ratio to:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Backtest:  7 winners from 11 trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Paper trading: 2 winners from 11 trades (both with duration more than 1 minute)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a common scenario in backtesting.&lt;/p&gt;&lt;p&gt;You should always look closely at the duration of the trades in your backtest to determine if the precision of your data is causing skew.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re backtesting on 1-minute bars, and you have durations of one minute, then you can bet your backtest is too optimistic.&lt;/p&gt;&lt;p&gt;The first instinct of many traders is to try to find data with finer precision, but that&amp;#039;s last on the list of ways to handle this situation.&lt;/p&gt;&lt;p&gt;Why?  Because even if you get 1 &lt;em&gt;second &lt;/em&gt;bars and backtest on them, you&amp;#039;ll still run into this issue.&lt;/p&gt;&lt;p&gt;In fact, even if you use tick data, you&amp;#039;ll still run into issues with what the bid and ask were historically.&lt;/p&gt;&lt;p&gt;Even if you solve that, you&amp;#039;ll &lt;em&gt;still&lt;/em&gt; encounter issues with the depth of the order book (level two data).&lt;/p&gt;&lt;p&gt;All of a sudden, your data requirements have exploded, and the resources required to store and process a backtest would be prohibitive for almost anyone reading this.&lt;/p&gt;&lt;p&gt;However, the good news is that you don&amp;#039;t need that level of precision to backtest a strategy like this.&lt;/p&gt;&lt;p&gt;The first thing to do is run your backtest without stops or targets - only your time stop.&lt;/p&gt;&lt;p&gt;This removes any precision problems in your backtest around the entry bar.&lt;/p&gt;&lt;p&gt;(You shouldn&amp;#039;t &lt;em&gt;trade&lt;/em&gt; without stops, but this exercise is useful for having a deeper understanding of how your backtester works - and your strategy.)&lt;/p&gt;&lt;p&gt;In most strategies, removing a stop should make your backtest look better.&lt;/p&gt;&lt;p&gt;If it makes it worse, then I would review charts of the trades with and without the stop to fully understand what&amp;#039;s going on.&lt;/p&gt;&lt;p&gt;I love Marek&amp;#039;s approach here - he learned a valuable lesson by paper trading and therefore didn&amp;#039;t put any money at risk to learn it.&lt;/p&gt;&lt;p&gt;Well done!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Two Position Sizing Approaches</title>
        <link href="https://davemabe.com/two-position-sizing-approaches"/>
        <id>https://davemabe.com/two-position-sizing-approaches</id>
        <published>2025-09-24T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several of you responded to &lt;a href=&quot;https://www.davemabe.com/how-do-you-do-position-sizing/&quot;&gt;yesterday&amp;#039;s post&lt;/a&gt; about the different position sizing approaches I use.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a nice visual I put together to see the difference in one of my strategies.&lt;/p&gt;&lt;p&gt;This is the pre-optimized version of the strategy, before putting it through the Strategy Cruncher.&lt;/p&gt;&lt;p&gt;Both the green and the red lines have the same trades, but with only a single difference.&lt;/p&gt;&lt;p&gt;The green line is using position sizing based on the distance to the stop price.&lt;/p&gt;&lt;p&gt;The red line is using a constant share size.&lt;/p&gt;&lt;p&gt;Which equity curve would you rather use as your starting point?&lt;/p&gt;&lt;p&gt;Why are the lines so different?  Two reasons:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The stop price is selected based on recent price action&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The sizing is based on the distance to the stop&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;You can see how this approach incorporates sizing at a fundamental level - it&amp;#039;s baked into the strategy itself.&lt;/p&gt;&lt;p&gt;The strategy doesn&amp;#039;t really make sense without this sizing.&lt;/p&gt;&lt;p&gt;Choosing the right position sizing approach will make or break your strategy.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re bolting it on at the end as an afterthought, it&amp;#039;s unlikely to be good enough.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How do you do position sizing?</title>
        <link href="https://davemabe.com/how-do-you-do-position-sizing"/>
        <id>https://davemabe.com/how-do-you-do-position-sizing</id>
        <published>2025-09-23T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;List member Dean J. wrote in with a question on position sizing (used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dean J.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;When you are doing your backtesting, do you use a standard size for each stock, ie, every trade is 100 shares, or do you size by a % or something else?  In other words, a $20 stock won&amp;#039;t move as much as a $100 stock if they were all the same size, wouldn&amp;#039;t it make the results look different than the true value of each stock might be in your strategy?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;There are a few ways I&amp;#039;ll size positions based on the strategy:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Constant shares (rare, but there are strategies where this is the best choice)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Constant dollars - e.g. $1000 / entry_price&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Based on ATR or volatility - e.g. $1000 / ATR&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Based on the stop distance - when signal is from a pattern with a logical stop&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I have strategies that use all these approaches.&lt;/p&gt;&lt;p&gt;I think the most underrated is the last one - sizing based on the stop distance.&lt;/p&gt;&lt;p&gt;I see some really good traders who don&amp;#039;t even consider sizing based on stop distance.&lt;/p&gt;&lt;p&gt;The reason it&amp;#039;s so valuable is that the sizing is fundamentally based on the trading signal.&lt;/p&gt;&lt;p&gt;When you do that and then optimize your strategy in the Cruncher, you&amp;#039;ll get a completely different set of predictive variables.&lt;/p&gt;&lt;p&gt;And it&amp;#039;s easier to find ways to scale the strategy - because you&amp;#039;ll have trades where the stop is a short distance away.&lt;/p&gt;&lt;p&gt;And because it&amp;#039;s based on a pattern, the setup itself (and the sizing) leads to a strategy with a clearer path to confidence.&lt;/p&gt;&lt;p&gt;That is, you have a path to believe in it enough to trade with significant size.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Follow Up On Quant/Discretionary Collaboration</title>
        <link href="https://davemabe.com/follow-up-on-quant-discretionary-collaboration"/>
        <id>https://davemabe.com/follow-up-on-quant-discretionary-collaboration</id>
        <published>2025-09-22T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we review last week&amp;#039;s interview with Mike Bellafiore and Nick Coutrakon from SMB Capital.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How Dave first connected with Bella&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The cultural DNA of SMB Capital&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The challenges of quant/discretionary collaboration&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The importance of being a giver, not a taker&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/follow-up-on-quant-discretionary-collaboration&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Related episodes:&lt;br&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/mike-bellafiore-and-nick-coutrakon-from-smb-capital-on-trading-teams&quot;&gt;Mike Bellafiore and Nick Coutrakon from SMB Capital on Trading Teams&lt;/a&gt;&lt;br&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/creating-a-trusted-trader-group&quot;&gt;Creating a Trusted Trading Group&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Books mentioned:&lt;br&gt;&lt;a href=&quot;https://www.amazon.com/Give-Take-Helping-Others-Success/dp/0143124986&quot;&gt;Give and Take&lt;/a&gt; by Adam Grant|&lt;br&gt;&lt;a href=&quot;https://www.amazon.com/Go-Giver-Expanded-Little-Powerful-Business/dp/1591848288&quot;&gt;The Go-Giver&lt;/a&gt; by Bob Burg and John David Mann&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Plan for a Drawdown Like a Pro</title>
        <link href="https://davemabe.com/plan-for-a-drawdown-like-a-pro"/>
        <id>https://davemabe.com/plan-for-a-drawdown-like-a-pro</id>
        <published>2025-09-19T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the biggest problems with drawdowns is that they seem to come out of nowhere and catch you off guard.&lt;/p&gt;&lt;p&gt;There&amp;#039;s never a convenient time for a drawdown - in fact, they have a knack for selecting the worst possible time to occur.&lt;/p&gt;&lt;p&gt;But you don&amp;#039;t have to be caught completely flat-footed.&lt;/p&gt;&lt;p&gt;After being blindsided by drawdowns several times, I got fed up and came up with an approach that works really well.&lt;/p&gt;&lt;p&gt;When I optimize a trading strategy initially, I create two versions.&lt;/p&gt;&lt;p&gt;The first version is the one I&amp;#039;m planning to go live with - my best guess at the optimal way to trade the strategy.&lt;/p&gt;&lt;p&gt;The second version, however, is one with fewer but more profitable trades than the first version.&lt;/p&gt;&lt;p&gt;If you go back to &lt;a href=&quot;https://www.davemabe.com/which-is-the-best-strategy/&quot;&gt;the example strategy I shared a few weeks ago&lt;/a&gt; with different versions, I might go live with version one:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Version 1&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor: 1.87&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent: 53.8%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades: 3,859&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades per day: 3.3&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;But then hold version two in reserve to have ready to go if the strategy goes into a drawdown:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Version 2&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor: 3.29&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent: 55.1%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades: 1,619&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades per day: 1.4&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;This approach gives you a systematic way to plan for drawdowns from the outset.&lt;/p&gt;&lt;p&gt;And when you&amp;#039;re optimizing your strategy, you&amp;#039;re in exactly the right mindset to create this plan.&lt;/p&gt;&lt;p&gt;If you wait until you&amp;#039;re already in a drawdown, you&amp;#039;ll be frustrated and pissed - exactly the wrong mindset you need to come up with a plan.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. If your backtested strategy is in a drawdown, you can use the Strategy Cruncher to improve it. One trader told me this week that he covered over 2 years of the Cruncher&amp;#039;s cost with just a single use.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Get Started with the Strategy Cruncher&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Drawdowns Make You Better If You Let Them</title>
        <link href="https://davemabe.com/drawdowns-make-you-better-if-you-let-them"/>
        <id>https://davemabe.com/drawdowns-make-you-better-if-you-let-them</id>
        <published>2025-09-18T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Every trader who ever quit trading did so during a drawdown.&lt;/p&gt;&lt;p&gt;But at the same time, every profitable trader experienced the same drawdowns and didn&amp;#039;t quit.&lt;/p&gt;&lt;p&gt;In fact, profitable traders will often cite drawdowns as fundamental inflection points in their trading career.&lt;/p&gt;&lt;p&gt;They &lt;strong&gt;learned&lt;/strong&gt; from them.&lt;/p&gt;&lt;p&gt;Why do some traders quit while others treat drawdowns as learning opportunities?&lt;/p&gt;&lt;p&gt;I believe it comes down to your attitude about the markets.&lt;/p&gt;&lt;p&gt;If you believe your drawdown isn&amp;#039;t your fault...&lt;/p&gt;&lt;p&gt;If you believe the bad guys came after your stop...&lt;/p&gt;&lt;p&gt;If you believe the Chinese manipulators caused your drawdown...&lt;/p&gt;&lt;p&gt;If you believe your guru in the trading room didn&amp;#039;t give you the signal fast enough...&lt;/p&gt;&lt;p&gt;Then you will eventually quit trading during a future drawdown.&lt;/p&gt;&lt;p&gt;But if you realize that &lt;strong&gt;you alone&lt;/strong&gt; are responsible for your current drawdown, as painful as that might be, then you have the right attitude.&lt;/p&gt;&lt;p&gt;Because if you&amp;#039;re responsible for the drawdown, then you can make the next one a lot shallower.&lt;/p&gt;&lt;p&gt;What would your results look like if your drawdowns were half as deep and half as frequent?&lt;/p&gt;&lt;p&gt;When you take responsibility for your own trading, you can make that happen.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Compare Real Trades to your Backtest</title>
        <link href="https://davemabe.com/compare-real-trades-to-your-backtest"/>
        <id>https://davemabe.com/compare-real-trades-to-your-backtest</id>
        <published>2025-09-17T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;After you &lt;a href=&quot;https://www.davemabe.com/refresh-your-backtest-in-a-drawdown/&quot;&gt;refresh your backtest to current&lt;/a&gt;, comparing it to your live trades can point you to the reasons for your drawdown.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a list of things you can compare, in order of importance:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Missing Big Winners&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Sort by the largest profit in your trades list.  How many of those are missing from your live trades?  Find out why.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Slippage on Entry&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Compare your entry prices in the backtest with your entry prices in your corresponding live trades. How much of the drawdown is coming from this difference?&lt;/p&gt;&lt;p&gt;A good way to do this is to add another column using Excel for the total slippage in terms of profit dollars for each trade, and then sum it up.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Slippage on Exit&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Compare your exit prices in your backtest with your live exit prices.  Add another column for exit slippage and sum it up to see how much it&amp;#039;s contributing to the shortfall.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing:&lt;/p&gt;&lt;p&gt;Your live trading is never going to perfectly measure up to your backtest, but that doesn&amp;#039;t mean you can&amp;#039;t take action to minimize all these things in the long run.&lt;/p&gt;&lt;p&gt;If your current drawdown is barely visible on your backtest, don&amp;#039;t get frustrated - that&amp;#039;s a good thing.&lt;/p&gt;&lt;p&gt;There&amp;#039;s always something you can do to address these issues.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Refresh Your Backtest in a Drawdown</title>
        <link href="https://davemabe.com/refresh-your-backtest-in-a-drawdown"/>
        <id>https://davemabe.com/refresh-your-backtest-in-a-drawdown</id>
        <published>2025-09-16T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Most traders will run a backtest, implement a strategy in live trading, and then largely disregard the backtest.&lt;/p&gt;&lt;p&gt;At any point in time, your list of trades from the backtest might be a few weeks or even months old.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re in a drawdown, the first thing you should do is update your backtest to the most recent trading day.&lt;/p&gt;&lt;p&gt;(It&amp;#039;s important enough that I have code in place to automatically run my backtests each day, and I strongly encourage the traders I coach to do the same.)&lt;/p&gt;&lt;p&gt;Why is this so important?&lt;/p&gt;&lt;p&gt;When you&amp;#039;re in a drawdown, you can feel like your world is falling apart.&lt;/p&gt;&lt;p&gt;Nothing is going right.&lt;/p&gt;&lt;p&gt;You&amp;#039;re starting to have doubts, sometimes serious doubts.&lt;/p&gt;&lt;p&gt;&amp;quot;I knew my success had to end at some point,&amp;quot; you might tell yourself.&lt;/p&gt;&lt;p&gt;Drawdowns have a way of flipping your mental negativity switch.&lt;/p&gt;&lt;p&gt;This is the opposite mindset of what you need to be successful.&lt;/p&gt;&lt;p&gt;Looking at an up-to-date backtest almost always puts you in a productive mindset.&lt;/p&gt;&lt;p&gt;With a backtest as your guide, you can:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Get a zoomed-out perspective across time (is this drawdown normal?)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Find concrete things to do to improve your live trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Identify ways to avoid poor trades to prevent future drawdowns&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Your mental switch flips back to positive almost immediately.&lt;/p&gt;&lt;p&gt;You realize you have plenty of ways to get better.&lt;/p&gt;&lt;p&gt;The perspective you get from a backtest is valuable anytime - but especially when you&amp;#039;re in a drawdown.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Mike Bellafiore and Nick Coutrakon from SMB Capital on Trading Teams</title>
        <link href="https://davemabe.com/mike-bellafiore-and-nick-coutrakon-from-smb-capital-on-trading-teams"/>
        <id>https://davemabe.com/mike-bellafiore-and-nick-coutrakon-from-smb-capital-on-trading-teams</id>
        <published>2025-09-15T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we&amp;#039;re joined by &lt;a href=&quot;https://x.com/MikeBellafiore&quot;&gt;Mike Bellafiore&lt;/a&gt; and &lt;a href=&quot;https://x.com/ncoutrader&quot;&gt;Nick Coutrakon&lt;/a&gt; from &lt;a href=&quot;https://www.smbcap.com&quot;&gt;SMB Capital&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Bella and I were recently discussing the makeup of trading teams at SMB.  After giving it more thought, I realized it would make an excellent topic for the podcast.&lt;/p&gt;&lt;p&gt;Get an inside view into the teams at one of the best trading firms in the world.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How teams have traditionally been formed at SMB&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Incorporating quants into a primarily discretionary trading group&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What quants can do to fit in and what they should avoid&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What discretionary traders can do to create the most profit through collaboration&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Whether you&amp;#039;re a discretionary or a quant trader, you don&amp;#039;t want to miss this episode.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/mike-bellafiore-and-nick-coutrakon-from-smb-capital-on-trading-teams&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Reducing Size in a Drawdown</title>
        <link href="https://davemabe.com/reducing-size-in-a-drawdown"/>
        <id>https://davemabe.com/reducing-size-in-a-drawdown</id>
        <published>2025-09-12T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Every car crash could be avoided if one of the cars were going a little slower.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re in a hurry for any reason as a trader, it&amp;#039;s almost always a bad sign.&lt;/p&gt;&lt;p&gt;And that includes being too rushed to make profits from your strategy.&lt;/p&gt;&lt;p&gt;The quickest way to turn a modest drawdown into a big one is to maintain your same size (or increase it!)&lt;/p&gt;&lt;p&gt;And the big drawdowns are when you&amp;#039;ll give up - on your strategy or even trading altogether.&lt;/p&gt;&lt;p&gt;I know this because I came &lt;a href=&quot;https://www.davemabe.com/the-day-i-almost-quit-trading/&quot;&gt;very close to quitting trading&lt;/a&gt; several years ago, and it was precisely because I stubbornly refused to reduce size during a drawdown.&lt;/p&gt;&lt;p&gt;One reason you might be refusing to reduce size is that your strategy is working now, but you think it &lt;strong&gt;might&lt;/strong&gt; stop working soon, so you maintain your size to capture profits while they&amp;#039;re available.&lt;/p&gt;&lt;p&gt;But if that&amp;#039;s the case, then by definition, you don&amp;#039;t have a &lt;strong&gt;path to confidence&lt;/strong&gt; with your strategy.&lt;/p&gt;&lt;p&gt;If you don&amp;#039;t have confidence in the durability of your strategy, then you haven&amp;#039;t put enough thought into it.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve chosen rules that you don&amp;#039;t quite fully believe in.&lt;/p&gt;&lt;p&gt;Reducing size isn&amp;#039;t admitting defeat; it&amp;#039;s living to fight another day.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Handling a Drawdown</title>
        <link href="https://davemabe.com/handling-a-drawdown"/>
        <id>https://davemabe.com/handling-a-drawdown</id>
        <published>2025-09-11T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;ve heard from more than a few traders over the past few days that they&amp;#039;re in a drawdown due to recent market &lt;strike&gt;manipulation&lt;/strike&gt; events.  (See long-time friend of the list Maoxian&amp;#039;s &lt;a href=&quot;https://open.substack.com/pub/maoxian/p/day-tarding-results-4bd?r=n5gn&amp;amp;utm_campaign=post&amp;amp;utm_medium=web&amp;amp;showWelcomeOnShare=false&quot;&gt;recent post&lt;/a&gt; on his Substack.)&lt;/p&gt;&lt;p&gt;Here are some suggestions for handling drawdowns (which are inevitable, despite what the folks who are good at talking about trading rather than actually trading might have you believe).&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Reduce size - psychologically difficult, but better in the long run&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Refresh your backtest up to current - the perspective a backtest provides is incredibly helpful&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Observe market action in real-time - more than you normally would&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Develop theories to improve your strategy - and add new columns to your backtest to capture aspects you&amp;#039;re missing&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Deploy a &amp;quot;version two&amp;quot; of your strategy for exactly this type of situation&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Drawdowns are the market giving you clues for how to get better.&lt;/p&gt;&lt;p&gt;They also flush out the hobbyists.&lt;/p&gt;&lt;p&gt;Every trader who ever quit trading did so during a drawdown.&lt;/p&gt;&lt;p&gt;Handling drawdowns separates the pros from the pretenders.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not &lt;strong&gt;if&lt;/strong&gt; another drawdown comes, but &lt;strong&gt;when&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;What can you do now to be better prepared for the next one?&lt;/p&gt;&lt;p&gt;More on this topic over the next few days.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategy Starting Points</title>
        <link href="https://davemabe.com/strategy-starting-points"/>
        <id>https://davemabe.com/strategy-starting-points</id>
        <published>2025-09-10T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In yesterday&amp;#039;s post on &lt;a href=&quot;https://www.davemabe.com/troubleshooting-amibroker-performance/&quot;&gt;Amibroker performance&lt;/a&gt;, I shared some steps to minimize the time it takes to run a backtest.&lt;/p&gt;&lt;p&gt;It&amp;#039;s worth digging into the details and figuring out how to maximize your use of whatever backtesting tool you&amp;#039;re using.&lt;/p&gt;&lt;p&gt;If you can reduce the amount of time you&amp;#039;re twiddling your thumbs waiting for a backtest to complete, that&amp;#039;s more time you can spend doing the fun part - optimizing your strategy.&lt;/p&gt;&lt;p&gt;Part of that process is figuring out the strategy to start with.&lt;/p&gt;&lt;p&gt;Remember: your first backtest shouldn&amp;#039;t be an attempt at your &amp;quot;final answer&amp;quot; - it should be a strategy with minimal filtering to use as a starting point.&lt;/p&gt;&lt;p&gt;Most often, after optimizing with &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;the Strategy Cruncher&lt;/a&gt;, the version I end up going live with has a fraction of the number of trades as the original backtest - sometimes less than 10%.&lt;/p&gt;&lt;p&gt;The backtest mentioned in yesterday&amp;#039;s post had over 134k trades over 5 years.&lt;/p&gt;&lt;p&gt;That&amp;#039;s on the very top end of the number of trades I&amp;#039;ve &lt;em&gt;ever&lt;/em&gt; started with for a strategy.&lt;/p&gt;&lt;p&gt;It&amp;#039;s more art than science, but choosing the right starting point for a strategy ends up saving a lot of time in the long run.&lt;/p&gt;&lt;p&gt;The more trades in your backtest, the more memory your machine has to use to add custom columns and complete the portfolio phase to merge all the trades at the end.&lt;/p&gt;&lt;p&gt;Another important consideration is that with 134k trades over 5 years, there has to be a lot of noise in that starting point (&lt;strong&gt;noise&lt;/strong&gt; as opposed to &lt;strong&gt;signal&lt;/strong&gt;).&lt;/p&gt;&lt;p&gt;The higher the signal-to-noise ratio in your starting point, the better your strategy will end up being - and the easier your optimization process will be.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll get better and better at choosing good starting points the more you do it - it takes practice.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Troubleshooting Amibroker Performance</title>
        <link href="https://davemabe.com/troubleshooting-amibroker-performance"/>
        <id>https://davemabe.com/troubleshooting-amibroker-performance</id>
        <published>2025-09-09T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question I received from Mugu M. about his local Amibroker performance and how long it takes him to run a backtest (shared with permission).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mugu M.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I noticed in the email you sent to the group as a follow-up to your new computer acquisition that you can run a backtest across the entire market (1-minute bars) in 35 minutes in Amibroker.&lt;/p&gt;&lt;p&gt;This got me thinking, I could be missing a few setup tricks.&lt;/p&gt;&lt;p&gt;Here is a backtest I ran on S&amp;amp;P 500 constituents:&lt;/p&gt;&lt;p&gt;Does anything stand out? This backtest took 6.5 hours on 10-minute bars 2015 - 2019: 5 years. I have an Amibroker database in 1-minute granularity from 2009/2010 to date.&lt;/p&gt;&lt;p&gt;I can think of the extra compute from the &lt;code&gt;for&lt;/code&gt; loops vs the Amibroker native way of handling array operations, but this gives us the benefit of predictive columns extraction from the backtest.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;There is some background I should review here for readers.  Mugu was an early adopter of the forthcoming Amibroker course, which comes with a sample strategy showing you the right way to code a strategy in Amibroker.&lt;/p&gt;&lt;p&gt;Given how poor ChatGPT is at creating Amibroker code (it&amp;#039;s shockingly bad, but it thinks it&amp;#039;s great at it!), this sample strategy is a big head start for traders using Amibroker.&lt;/p&gt;&lt;p&gt;The sample strategy contains two sections that are very important to creating a profitable strategy in Amibroker.&lt;/p&gt;&lt;p&gt;One is a &lt;code&gt;for&lt;/code&gt; loop that iterates through all the bars in your database.&lt;/p&gt;&lt;p&gt;Why is a &lt;code&gt;for&lt;/code&gt; loop required?  It&amp;#039;s required to add custom columns to your backtest.&lt;/p&gt;&lt;p&gt;Why are custom columns required?  Because otherwise you&amp;#039;re going to be forever stuck in &amp;quot;backtest world&amp;quot; without figuring out how to make your strategy profitable and actually trade it live.&lt;/p&gt;&lt;p&gt;The other section turns on Amibroker&amp;#039;s &amp;quot;custom backtester&amp;quot; interface.  This interface allows you to add custom columns to the resulting backtest.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I suggest Mugu do to determine where the slowdown is.&lt;/p&gt;&lt;p&gt;Run a backtest with just this AFL code:&lt;/p&gt;&lt;p&gt;This is the simplest backtest possible - no for loops - in fact, it won&amp;#039;t even take any trades, but it will iterate through all the bars in the database with minimal processing.&lt;/p&gt;&lt;p&gt;Measure how long it takes for this to complete.&lt;/p&gt;&lt;p&gt;The next step is to run another backtest with the same code, but with a simple &lt;code&gt;for&lt;/code&gt; loop added:&lt;/p&gt;&lt;p&gt;Measure this and compare.&lt;/p&gt;&lt;p&gt;There are a lot of technical details here, but they&amp;#039;re important.  If you can get your backtest down to a smaller amount of time, your entire workflow is going to be faster, which will eventually translate into more profits.&lt;/p&gt;&lt;p&gt;I ultimately believe that Mugu&amp;#039;s performance issues are related to the number of trades in his backtest.&lt;/p&gt;&lt;p&gt;More on that tomorrow.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Baby Steps Towards Automating Your Trades</title>
        <link href="https://davemabe.com/baby-steps-towards-automating-your-trades"/>
        <id>https://davemabe.com/baby-steps-towards-automating-your-trades</id>
        <published>2025-09-08T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss several tiny steps you can take to get closer to automating your trades.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a whole range of steps you can take on your progression towards automation.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Various custom trading programs I&amp;#039;ve created for myself over the years&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Tiny steps you can take to get more and more confident with automation&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How even small steps make you a better trader&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How automation opens up new strategy possibilities that manual click traders can&amp;#039;t consider&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/baby-steps-towards-automating-your-trades&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Where are you on the manual-to-fully automated trading continuum? Hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Missing the Big Winning Trades</title>
        <link href="https://davemabe.com/missing-the-big-winning-trades"/>
        <id>https://davemabe.com/missing-the-big-winning-trades</id>
        <published>2025-09-05T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When you first start trading a strategy live, the very first thing you should do is compare the backtest to the live trades.&lt;/p&gt;&lt;p&gt;This is not a step you should put off until later.&lt;/p&gt;&lt;p&gt;Do it as soon as possible after the first day you have live trades.&lt;/p&gt;&lt;p&gt;Some traders like to let some time pass at this stage to &amp;quot;collect more data.&amp;quot;&lt;/p&gt;&lt;p&gt;But that&amp;#039;s a missed opportunity.&lt;/p&gt;&lt;p&gt;You can get answers &lt;strong&gt;so quickly&lt;/strong&gt; when you compare your trades to your backtest, even on an average day for your trading system.&lt;/p&gt;&lt;p&gt;Doing this lets you shift your &lt;strong&gt;path to confidence&lt;/strong&gt; in your trading system into hyperdrive.&lt;/p&gt;&lt;p&gt;When comparing to the backtest, there are lots of data points you can reconcile.  (Slippage in, slippage out, etc.)&lt;/p&gt;&lt;p&gt;But by far the most important, the easiest, and the most motivating thing to look for is...&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Missing the big winning trades&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re missing them, you should drop everything else you&amp;#039;re doing and figure out why.&lt;/p&gt;&lt;p&gt;Because at that point, it&amp;#039;s the most important thing you can work on (and it&amp;#039;s not even close).&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Success Story from Reader Robin J</title>
        <link href="https://davemabe.com/success-story-from-reader-robin-j"/>
        <id>https://davemabe.com/success-story-from-reader-robin-j</id>
        <published>2025-09-04T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Fellow list member Robin J responded to &lt;a href=&quot;https://www.davemabe.com/how-do-you-know-your-strategy-has-an-edge/&quot;&gt;my message from a couple of days ago&lt;/a&gt; with a success story about applying lessons from the &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot;&gt;Get Systematic Roadmap&lt;/a&gt; (she was an early beta tester for it) on expectancy (shared with permission, with minor formatting changes):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Robin J:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I met with you when you were starting your individual sessions. I&amp;#039;m the teacher who quit teaching to trade.&lt;/p&gt;&lt;p&gt;When I started trading, it was like printing money. Then came the breakeven period. Thankfully, even with drawdowns, I&amp;#039;ve never ended up at a loss.&lt;/p&gt;&lt;p&gt;I just thought, reflected, let it percolate.&lt;/p&gt;&lt;p&gt;Then came the epiphanal moment on how to finally get my risk management under control, consistently. I had been feeling like the more I strived for the generating consistent income approach, the more I missed.&lt;/p&gt;&lt;p&gt;It took about a year to really nail it down. (You and I worked on R primarily in my session with you.)&lt;br&gt;I thought I&amp;#039;d share that one of the things that has helped me tighten this up was actually using the expectancy equation.&lt;/p&gt;&lt;p&gt;Where:&lt;/p&gt;&lt;p&gt;&lt;code&gt;Pw&lt;/code&gt; = probability of a winning trade&lt;br&gt;&lt;code&gt;Aw&lt;/code&gt; = average win size&lt;br&gt;&lt;code&gt;Pl&lt;/code&gt; = probability of a losing trade&lt;br&gt;&lt;code&gt;Al&lt;/code&gt; = average loss size&lt;/p&gt;&lt;p&gt;From there, I could think about how to cast a wider net in a way that allows me to continue to scale. I also decided that it would have to scale itself, like a biz building itself. I wanted to prove the concept, so I started in my paper account and then took it live once it had accumulated enough evidence for me. &lt;/p&gt;&lt;p&gt;Essentially, I shifted from trying to catch a medium or large fish each trade to how can I catch lots of smaller fish in one net on a regular basis, and tip the balance in my favor in a way that I can then end with a bigger haul than I would have.&lt;/p&gt;&lt;p&gt;Our talk about R made me realize:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;that I didn&amp;#039;t know what that was!&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;that I needed to adjust my expectations.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;that I was going to have to put in some work and calculations to identify exactly how to make my strategy work. When we run so much based on statistics, but when you are 1 person with 1 account, that changes how the statistics are going to work in reality.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;And the mantra &amp;quot;live to trade another day&amp;quot; needed to be integral to my practice.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;And this is my equity curve with my newly applied risk management, starting late July:&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Congrats to Robin on her breakthrough!&lt;/p&gt;&lt;p&gt;I hope this inspires other traders to leverage good risk management and apply it to their own strategies.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;And Now a Word From Our Sponsors&quot;</title>
        <link href="https://davemabe.com/and-now-a-word-from-our-sponsors"/>
        <id>https://davemabe.com/and-now-a-word-from-our-sponsors</id>
        <published>2025-09-03T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Just kidding LOL.&lt;/p&gt;&lt;p&gt;There are no sponsors for this newsletter and no plans to add any.&lt;/p&gt;&lt;p&gt;There&amp;#039;s so much snake oil in the trading business, it&amp;#039;s mind-boggling to me.&lt;/p&gt;&lt;p&gt;Affiliate programs are everywhere - and they&amp;#039;ve never sat well with me.&lt;/p&gt;&lt;p&gt;If your product is good enough, you shouldn&amp;#039;t have to pay someone to incentivize them to tell others.&lt;/p&gt;&lt;p&gt;If I recommend something, it&amp;#039;s because I genuinely think it will benefit you, not because someone is paying me to suggest it.&lt;/p&gt;&lt;p&gt;There are people who are &lt;strong&gt;good at trading&lt;/strong&gt;, and people who are good at &lt;strong&gt;talking about trading&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;The overlap between those two sets is... tiny.&lt;/p&gt;&lt;p&gt;OK, stepping off my soapbox now.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Do You Know Your Strategy Has An Edge?</title>
        <link href="https://davemabe.com/how-do-you-know-your-strategy-has-an-edge"/>
        <id>https://davemabe.com/how-do-you-know-your-strategy-has-an-edge</id>
        <published>2025-09-02T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;There’s a huge difference between carrying a stethoscope and being a doctor.&lt;/p&gt;&lt;p&gt;In the markets, it&amp;#039;s trivial to execute buy and sell orders, but that doesn&amp;#039;t make you a trader.&lt;/p&gt;&lt;p&gt;Trading is easy when you trade with inconsequential amounts of money.&lt;/p&gt;&lt;p&gt;It&amp;#039;s dramatically harder when you set out to trade with significant capital (whatever amount that might mean to you).&lt;/p&gt;&lt;p&gt;For every strategy you trade, you should have a &lt;strong&gt;path to confidence&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;What questions would you need to answer to trade it with bigger size than you are now?&lt;/p&gt;&lt;p&gt;The first question I ask traders is:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;How do you know your strategy has an edge?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you aren&amp;#039;t thinking about that question - and charting out your path to confidence - then you&amp;#039;re putting a ceiling on how good you can be.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Version of this Strategy is Best?</title>
        <link href="https://davemabe.com/which-version-of-this-strategy-is-best"/>
        <id>https://davemabe.com/which-version-of-this-strategy-is-best</id>
        <published>2025-09-01T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss the responses to my recent post on &lt;a href=&quot;https://www.davemabe.com/which-is-the-best-strategy/&quot;&gt;different versions of a strategy&lt;/a&gt; I&amp;#039;m working on.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The tradeoffs between different versions of a strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How newer traders might be drawn to a specific version&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How automation gives you more flexibility for trading a strategy with lots of trades or infrequent trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;This is one of my favorite topics.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/which-version-of-this-strategy-is-best&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Great Use Case for Trading with a VPS</title>
        <link href="https://davemabe.com/a-great-use-case-for-a-vps"/>
        <id>https://davemabe.com/a-great-use-case-for-a-vps</id>
        <published>2025-08-29T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s an interesting exchange with a trader named Angel R. (name used with permission) about using a local trading computer or a remote VPS (virtual private server).&lt;/p&gt;&lt;p&gt;Angel&amp;#039;s situation seems like a slam dunk for using a VPS.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Angel R:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Congratulations on the first year of the podcast!&lt;/p&gt;&lt;p&gt;The episode of Line Your Own Pockets was very interesting about &lt;a href=&quot;https://lineyourownpockets.com/episodes/how-to-trade-when-traveling&quot;&gt;trading when traveling&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;I was not familiar with Chrome Remote Desktop, I like to use Anydesk to access my trading computer at home, but I think that the connection with Teamviewer is too slow.&lt;/p&gt;&lt;p&gt;But I am wondering, what do you think about a VPS for running IB Gateway (from IBKR) remotely? I am considering it to have a stable network (avoiding connection and power issues at home), and also to reduce latency on IB servers (I am living in Panamá).&lt;/p&gt;&lt;p&gt;I imagine I will need to access the VPS every morning to log into IB Gateway and run my scripts.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;When you have a questionable internet connection, I think it makes a lot of sense to use a VPS and the IB Gateway or TWS.&lt;/p&gt;&lt;p&gt;Are you considering the IB Gateway for performance reasons?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Angel R:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Yes, I am testing IB Gateway for better performance. The worst-case scenario I&amp;#039;ve seen with TWS is an 11-second delay when placing an order (I am a day trader), which can be quite long, but with IB Gateway, orders are placed fairly quickly (about 1 second).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The &lt;a href=&quot;https://www.interactivebrokers.com/en/trading/ibgateway-latest.php&quot;&gt;IB Gateway is a headless version of TWS&lt;/a&gt; - basically just a local endpoint that exposes the IBKR API in the most efficient way.&lt;/p&gt;&lt;p&gt;I knew it had lower overhead than the full-blown TWS, but I didn&amp;#039;t realize the performance difference was that dramatic!&lt;/p&gt;&lt;p&gt;In this case, the benefit of a VPS seems overwhelmingly worth the cost.&lt;/p&gt;&lt;p&gt;I&amp;#039;m curious, are other IBKR traders using the IB Gateway rather than TWS?&lt;/p&gt;&lt;p&gt;Reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Have a great Labor Day weekend!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Commissions and Slippage in Backtest?</title>
        <link href="https://davemabe.com/commissions-and-slippage-in-backtest"/>
        <id>https://davemabe.com/commissions-and-slippage-in-backtest</id>
        <published>2025-08-28T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another great question from list member Glenn B. (used with permission). He&amp;#039;s asking about Amibroker, but this applies more generally to any backtest.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Glenn B.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Should I include these in backtests? I know AmiBroker has built-in commission tracking, but I didn’t see much on slippage. Is it worth factoring in, or better to skip?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You should include commissions in your backtests, but I don&amp;#039;t recommend including slippage.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why I don&amp;#039;t.&lt;/p&gt;&lt;p&gt;Commissions are 100% predictable - there&amp;#039;s no guessing - like death and taxes, they&amp;#039;re a fact of life.&lt;/p&gt;&lt;p&gt;For trading strategies with lots of trades, including commissions can change the optimization a surprising amount.&lt;/p&gt;&lt;p&gt;Slippage, however, is incredibly unpredictable.&lt;/p&gt;&lt;p&gt;Trying to model slippage is hard and not worth the effort, in my opinion.  (Sometimes your trades will experience &lt;em&gt;positive slippage&lt;/em&gt; - meaning you get a better fill than your backtest - try modeling that!)&lt;/p&gt;&lt;p&gt;Does that mean you should put your head in the sand and pretend slippage doesn&amp;#039;t exist? Of course not.&lt;/p&gt;&lt;p&gt;You should have a general sense of how much slippage would make your strategy unprofitable.&lt;/p&gt;&lt;p&gt;Knowing that before trading your strategy with real money will give you a quicker &lt;strong&gt;path to confidence&lt;/strong&gt; once you go live. (For more info, listen to the discussion on &amp;quot;pre-mortems&amp;quot; in the podcast episode called &lt;a href=&quot;https://lineyourownpockets.com/episodes/your-backtest-looks-great-what-could-possibly-go-wrong&quot;&gt;Your Backtest Looks Great - What Could Possibly Go Wrong?&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Rather than trying to predict slippage on any particular trade, I prefer to treat the backtest as what&amp;#039;s theoretically achievable by the strategy.&lt;/p&gt;&lt;p&gt;Your live trading will, of course, fall short of that threshold by some amount, but that&amp;#039;s fine - your strategy shouldn&amp;#039;t require perfect execution to be profitable.&lt;/p&gt;&lt;p&gt;When measuring performance against the backtest, though, I prefer to compare against &amp;quot;perfect execution.&amp;quot;&lt;/p&gt;&lt;p&gt;Great question, Glenn B. - thanks for sharing with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trading Computer Specs</title>
        <link href="https://davemabe.com/trading-computer-specs"/>
        <id>https://davemabe.com/trading-computer-specs</id>
        <published>2025-08-27T19:30:00-04:00</published>
        <updated>2026-01-25T06:38:22-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As mentioned this week in &lt;a href=&quot;https://lineyourownpockets.com/episodes/choosing-a-trading-computer&quot;&gt;How Not To Buy a Trading Computer&lt;/a&gt;, here are the specs for the system I bought a few weeks ago.&lt;/p&gt;&lt;p&gt;It&amp;#039;s working well, and a couple of traders I&amp;#039;m coaching have used this as a reference to buy their own systems.&lt;/p&gt;&lt;p&gt;One of them had an 80% reduction in the time it takes to backtest the entire market with Amibroker compared to their previous system.&lt;/p&gt;&lt;p&gt;The thing I love about this system is that the CPU is liquid-cooled.  This means there are no noise-making fans to cool the CPU.&lt;/p&gt;&lt;p&gt;In fact, I completely turned the case fans down so the only fan running is the video card (which is surprisingly quiet), and it stays plenty cool.&lt;/p&gt;&lt;p&gt;The only thing missing from this quote is two SSDs - one for the system drive and one for a separate drive that I&amp;#039;ve dedicated to Amibroker backtesting and market data (which is important).&lt;/p&gt;&lt;p&gt;With this setup, I can backtest 17 years of 1-minute data across the entire market in about 35 minutes.&lt;/p&gt;&lt;p&gt;Here are the specs and prices I paid:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.kit.com/79aad5a476&quot;&gt;Trading Computer Specs&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is the Optimize Function in Amibroker Useful?</title>
        <link href="https://davemabe.com/is-the-optimize-function-in-amibroker-useful"/>
        <id>https://davemabe.com/is-the-optimize-function-in-amibroker-useful</id>
        <published>2025-08-26T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from Glenn B. (used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Glenn B.:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;After learning about the Strategy Cruncher, the Optimize in Amibroker feature seems like it could easily lead to curve fitting. Are there scenarios where you find it genuinely useful?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Good question.  And, for the most part, the answer is no.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what the Optimize function does:&lt;/p&gt;&lt;p&gt;When you do a backtest in Amibroker, &lt;code&gt;gap_percent&lt;/code&gt; is the value in the &lt;code&gt;default&lt;/code&gt; variable.&lt;/p&gt;&lt;p&gt;When you click Optimize, though, Amibroker will run a backtest for every value defined in the Optimize call from &lt;code&gt;min&lt;/code&gt; to &lt;code&gt;max&lt;/code&gt; in steps of &lt;code&gt;step&lt;/code&gt; and then give you aggregate results across all the individual backtests it runs.&lt;/p&gt;&lt;p&gt;The Optimize function in Amibroker is made completely obsolete by the Strategy Cruncher.&lt;/p&gt;&lt;p&gt;The Cruncher tells you the optimal rules you can apply to your strategy to increase profitability in seconds.&lt;/p&gt;&lt;p&gt;To do that with the Optimize function would take literally years to complete.&lt;/p&gt;&lt;p&gt;There is, however, one rare situation where I &lt;em&gt;might&lt;/em&gt; use it.&lt;/p&gt;&lt;p&gt;It could be useful to run X different versions of a backtest to figure out the best &amp;quot;starting point&amp;quot; strategy to feed to the Cruncher.  (Where X is relatively small.)&lt;/p&gt;&lt;p&gt;It can be a convenient way to run a small number of backtests to get a general sense of a good starting point.&lt;/p&gt;&lt;p&gt;The more you use the Optimize feature of Amibroker, the harder it is to avoid curve fitting, so it should be used very sparingly, if at all.&lt;/p&gt;&lt;p&gt;Thanks for the question, Glenn B.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How NOT To Buy a Trading Computer</title>
        <link href="https://davemabe.com/how-not-to-buy-a-trading-computer"/>
        <id>https://davemabe.com/how-not-to-buy-a-trading-computer</id>
        <published>2025-08-25T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss buying a new trading computer.&lt;/p&gt;&lt;p&gt;I recently replaced my trading computer with a new one.&lt;/p&gt;&lt;p&gt;And it was a huge pain.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Why I no longer build my own trading computers&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The mistake I made when buying a new one&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How I resolved it&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How you can avoid the same mistake&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/choosing-a-trading-computer&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;Holiday Reminder&lt;/strong&gt; - One week from today is Labor Day, and the markets will be closed. Plan something fun if you haven&amp;#039;t already!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Equity Curve Is Better?</title>
        <link href="https://davemabe.com/which-equity-curve-is-better"/>
        <id>https://davemabe.com/which-equity-curve-is-better</id>
        <published>2025-08-22T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another Strategy Cruncher question from Mugu (shared with permission).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mugu:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I am confused by my back test optimization results below regarding column Diff1:&lt;/p&gt;&lt;p&gt;How should I interpret this?  It could be gold or bad data. Your thoughts?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is a situation that often confuses traders.&lt;/p&gt;&lt;p&gt;Notice the red line (the set of worst trades the cruncher found) was above the green line (the set of best trades), but they ended up with the same profit.&lt;/p&gt;&lt;p&gt;Aren&amp;#039;t these two strategies about the same? No!&lt;/p&gt;&lt;p&gt;Look closely at the number of trades in each line (look at the legend).&lt;/p&gt;&lt;p&gt;The green line achieves the same total profit as the red line with only HALF the trades.&lt;/p&gt;&lt;p&gt;The cruncher found a way to make your strategy far more efficient:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Fewer trades with the same total profit&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Increase in profit factor to 3.92&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Increase in win rate to 76%&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Think about the two strategies.&lt;/p&gt;&lt;p&gt;Which one gives you a better &lt;strong&gt;path to confidence&lt;/strong&gt; to trade it eventually with significant size?&lt;/p&gt;&lt;p&gt;It should be pretty clear!&lt;/p&gt;&lt;p&gt;Thanks for the question, Mugu.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. When you&amp;#039;re ready to take your strategy to the next level, the &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher is here&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your First Amibroker Import</title>
        <link href="https://davemabe.com/your-first-amibroker-import"/>
        <id>https://davemabe.com/your-first-amibroker-import</id>
        <published>2025-08-21T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When you first start using Amibroker, most traders are very eager to get a lot of historical data into their database.&lt;/p&gt;&lt;p&gt;Often, they&amp;#039;re accustomed to backtesting in Trade-Ideas, and realize some of their strategies will benefit from a larger backtesting window.&lt;/p&gt;&lt;p&gt;It&amp;#039;s tempting to spend your time loading the database with all the data you can obtain (e.g., I have over 17 years of one-minute bar data in mine).&lt;/p&gt;&lt;p&gt;You might be surprised to learn I don&amp;#039;t recommend doing this right away.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why.&lt;/p&gt;&lt;p&gt;Importing the data can take a while.  It might take a script running all weekend to gather all the data, convert it to the proper format, and import it into Amibroker.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve seen traders spend 3 days importing data, only to realize their data was slightly incorrect and then have to start all over.&lt;/p&gt;&lt;p&gt;Three days wasted!&lt;/p&gt;&lt;p&gt;Instead of importing all the historical data at first, just import a handful of recent market days.&lt;/p&gt;&lt;p&gt;There are a few benefits to this approach.&lt;/p&gt;&lt;p&gt;First, it will be &lt;strong&gt;much faster&lt;/strong&gt;.  You&amp;#039;ll have data to start doing some initial tests in minutes rather than days.&lt;/p&gt;&lt;p&gt;The real work begins after you import your data.&lt;/p&gt;&lt;p&gt;Second, having a smaller database will make your initial testing way faster.&lt;/p&gt;&lt;p&gt;You won&amp;#039;t be tempted to run a backtest across all your data (which will take a while), and when you have to verify your backtest is working properly, it will feel a lot less overwhelming to review trades over a smaller timeframe.&lt;/p&gt;&lt;p&gt;Your feedback loop will be a lot faster.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll learn the basics way quicker.&lt;/p&gt;&lt;p&gt;After you&amp;#039;ve created a backtest and verified it works as expected, &lt;strong&gt;then&lt;/strong&gt; you can take the time to import all your historical market data.&lt;/p&gt;&lt;p&gt;And you&amp;#039;ll be ahead of the game.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you want to get up to speed on Amibroker really quickly?  Then you&amp;#039;ll love the Amibroker course I&amp;#039;m putting the final touches on.  Traders who have taken the course report that they&amp;#039;ve saved months of time and effort.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/amibroker-course-notification/&quot;&gt;Click here&lt;/a&gt; to be among the first to be notified when it&amp;#039;s available and get early-bird pricing.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Sources for Data in Amibroker</title>
        <link href="https://davemabe.com/sources-for-data-in-amibroker"/>
        <id>https://davemabe.com/sources-for-data-in-amibroker</id>
        <published>2025-08-20T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;There are several sources for market data that you can use in Amibroker.&lt;/p&gt;&lt;p&gt;Each has benefits and drawbacks.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a lot to learn all of Amibroker right from the outset, so it&amp;#039;s useful to separate usage into two phases:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;Backtesting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Real-time trading&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Backtesting is simpler since you don&amp;#039;t need to generate signals in real-time.&lt;/p&gt;&lt;p&gt;For that reason, I always have traders start with the backtesting phase first.&lt;/p&gt;&lt;p&gt;(And when you create your strategy with an awesome equity curve and you&amp;#039;re ready to trade it, you&amp;#039;ll have plenty of motivation to tackle the more complex real-time workflow.)&lt;/p&gt;&lt;p&gt;So let&amp;#039;s focus on data sources for backtesting.&lt;/p&gt;&lt;p&gt;The cheapest way to get lots of market data for backtesting is the Polygon flat file service.&lt;/p&gt;&lt;p&gt;Polygon provides a flat file each day of intraday minute bar data that you can download.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll need &lt;a href=&quot;https://polygon.io/pricing&quot;&gt;one level up from their free service&lt;/a&gt; (currently the &amp;quot;Stocks Starter&amp;quot; plan) to access the daily file downloads.&lt;/p&gt;&lt;p&gt;Once you get access, you&amp;#039;ll need to do some Python/LLM wrangling to get the data in a format that Amibroker can import.&lt;/p&gt;&lt;p&gt;You can completely automate this process using Amibroker&amp;#039;s &lt;a href=&quot;https://www.amibroker.com/guide/w_impwizard.html&quot;&gt;Import Wizard&lt;/a&gt; and &lt;a href=&quot;https://www.amibroker.com/guide/d_ascii.html&quot;&gt;ASCII Import&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Other options for backfilling your database are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Amibroker&amp;#039;s IB plugin (free with an IB account, but the IB data is rate-limited so it&amp;#039;s not practical for complete backfilling)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;IQFeed real-time data service (also has excellent backfilling history, but most costly than the other options)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;eSignal real-time data service (nice backfilling history, but even more costly than IQFeed)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Norgate data (no intraday data, daily only)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;See P.S. for another option from a list member&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Tomorrow I&amp;#039;ll go over the best way to approach your first data import.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Long time list member Matt H. created another way to download historical data for free to import into Amibroker through Alpaca. He&amp;#039;s graciously shared his Python code to do this through an Alpaca account. I haven&amp;#039;t tested this, but here&amp;#039;s the link to &lt;a href=&quot;https://github.com/Mat-eo-H/Alpaca_data_collection&quot;&gt;his Github repository&lt;/a&gt;. Thanks, Matt!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Backtest Speed</title>
        <link href="https://davemabe.com/backtest-speed"/>
        <id>https://davemabe.com/backtest-speed</id>
        <published>2025-08-19T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Does the speed of your backtest matter that much?&lt;/p&gt;&lt;p&gt;Backtesting differs from live trading since you can do it after hours.&lt;/p&gt;&lt;p&gt;So does it &lt;em&gt;really&lt;/em&gt; matter if it takes a while to complete?&lt;/p&gt;&lt;p&gt;It matters a lot!&lt;/p&gt;&lt;p&gt;A backtest is an attempt to answer a question.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve developed a theory and determined a way to test it without putting money at risk.&lt;/p&gt;&lt;p&gt;Think of a backtest as your personal question answerer.&lt;/p&gt;&lt;p&gt;But if it takes days or months to get answers, then the answers become less valuable.&lt;/p&gt;&lt;p&gt;The quicker you can generate answers to your questions, the better.&lt;/p&gt;&lt;p&gt;Zoom out and think about your entire feedback loop.&lt;/p&gt;&lt;p&gt;From the initial thought in your head (&amp;quot;hey, this chart looks odd - I wonder if that has an effect on my strategy?&amp;quot;) all the way to applying a rule to make your strategy more profitable.&lt;/p&gt;&lt;p&gt;Most new traders think you&amp;#039;ll be answering a question or two, and then you&amp;#039;ll have your final answer - your profitable strategy that never changes.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s not how it works - you&amp;#039;ll be constantly asking questions about the markets.&lt;/p&gt;&lt;p&gt;And the answers are great, precisely because they often generate more questions that you hadn&amp;#039;t considered before.&lt;/p&gt;&lt;p&gt;So your question/answer feedback loop is critically important. (Way more important than even the strategy you trade.)&lt;/p&gt;&lt;p&gt;How can you minimize the time to generate answers?&lt;/p&gt;&lt;p&gt;More on this topic tomorrow.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Trade When Traveling</title>
        <link href="https://davemabe.com/how-to-trade-when-traveling"/>
        <id>https://davemabe.com/how-to-trade-when-traveling</id>
        <published>2025-08-18T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss trading when you travel.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not something you have to give much thought to if you&amp;#039;re not trading with an edge, but if you&amp;#039;ve got a solid trading business, then vacations can be incredibly expensive when you include the cost of missing trades!&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The best remote desktop solution I&amp;#039;ve found (by far!)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why vacations are different when you have a trading edge&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to prepare for trading on the road&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to do a &amp;quot;dry run&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I also share the notes of a trader I coach who traded during his recent trip to Aspen.&lt;/p&gt;&lt;p&gt;Lots of things to learn in this episode...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-to-trade-when-traveling&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. We just completed our first &lt;strong&gt;year&lt;/strong&gt; of the podcast! Thanks so much for listening - if you enjoy it, please consider giving it a rating and leaving a review on your podcast platform of choice.&lt;/p&gt;&lt;p&gt;That helps other traders find the show.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Databases in Amibroker</title>
        <link href="https://davemabe.com/databases-in-ambroker"/>
        <id>https://davemabe.com/databases-in-ambroker</id>
        <published>2025-08-15T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;An important part of using Amibroker is understanding how the database works.&lt;/p&gt;&lt;p&gt;All market data is stored locally in an Amibroker database, which is simply a folder with various files and subfolders in it.&lt;/p&gt;&lt;p&gt;You can set up multiple databases and switch between them.&lt;/p&gt;&lt;p&gt;And I encourage traders to use two databases:&lt;/p&gt;&lt;p&gt;One for &lt;strong&gt;backtesting&lt;/strong&gt; with lots of data and another for &lt;strong&gt;real-time trading&lt;/strong&gt; with the minimum data required.&lt;/p&gt;&lt;p&gt;This allows you to separate your work and get the most out of Amibroker depending on the situation.&lt;/p&gt;&lt;p&gt;When real-time trading, time and speed are critical.&lt;/p&gt;&lt;p&gt;But when you&amp;#039;re backtesting, time is not of the essence, so speed doesn&amp;#039;t matter as much.&lt;/p&gt;&lt;p&gt;So it&amp;#039;s smart to set up your databases to reflect this.&lt;/p&gt;&lt;p&gt;My backtesting database has 18 years of 1 minute bars for every symbol across the US markets.&lt;/p&gt;&lt;p&gt;My real-time database contains less than one year.&lt;/p&gt;&lt;p&gt;The backtesting database isn&amp;#039;t nearly as fast as the real-time database, but that&amp;#039;s fine - I don&amp;#039;t need it to be as fast.&lt;/p&gt;&lt;p&gt;That said, Amibroker is much, much faster than backtesting in Python.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve worked with traders who see a 5X increase in speed in their backtest switching from Python to Amibroker!&lt;/p&gt;&lt;p&gt;Next time I&amp;#039;ll discuss backtesting speed and why it&amp;#039;s more important than you think...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you stuck in your trading? You know you have potential, but you&amp;#039;re not sure what to do next? Get unstuck with my &lt;a href=&quot;https://www.davemabe.com/call/&quot;&gt;one-on-one coaching call&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using Amibroker - First Steps</title>
        <link href="https://davemabe.com/using-amibroker-first-steps"/>
        <id>https://davemabe.com/using-amibroker-first-steps</id>
        <published>2025-08-14T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;(Note: This is the first post in a series about using Amibroker for creating and trading strategies.)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://amibroker.com/&quot;&gt;Amibroker&lt;/a&gt; is a tool I&amp;#039;ve been using for backtesting for at least 15 years.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a powerful tool for backtesting, real-time charting, and trading.&lt;/p&gt;&lt;p&gt;It works well with Trade-Ideas (more on that later) and other tools.&lt;/p&gt;&lt;p&gt;But it can be overwhelming when you first start using it.&lt;/p&gt;&lt;p&gt;It&amp;#039;s useful to think about using Amibroker in two phases:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Backtesting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Real-Time Trading&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;You should start with backtesting - that will be cheaper to get data and you minimize the technical hurdles required to move your trading needle.&lt;/p&gt;&lt;p&gt;The idea is that once you get a strategy you&amp;#039;re confident in, then you can take the next step of using real-time data in Amibroker, which will add some complexity that you can ignore for now.&lt;/p&gt;&lt;p&gt;Why would you want to use Amibroker?&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;You have ideas to test that would benefit from a longer backtesting window than is available in &lt;a href=&quot;https://www.trade-ideas.com/&quot;&gt;Trade-Ideas&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You want to backtest on daily and intraday data, which rules out &lt;a href=&quot;https://mhptrading.com/&quot;&gt;RealTest&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You want to backtest across all stocks, which rules out almost every other backtesting software out there&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You want to be able to add custom columns to your backtest for use in the &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You want a completely customizable charting platform that runs locally (Amibroker&amp;#039;s charting is way underrated)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;For now, focus on backtesting and creating your strategy.&lt;/p&gt;&lt;p&gt;Once you create your strategy with a fantastic equity curve, you&amp;#039;ll have plenty of motivation to progress to using Amibroker with real-time data.&lt;/p&gt;&lt;p&gt;Tomorrow, we&amp;#039;ll focus on the very first step: creating your database in Amibroker.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you interested in using Amibroker for backtesting? I’m putting the final touches on a course on Amibroker that shows how traders who actually trade for their income use it. Click here to sign up to be notified when it’s available:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Does Your Strategy Tell a Coherent Story?</title>
        <link href="https://davemabe.com/does-your-strategy-tell-a-coherent-story"/>
        <id>https://davemabe.com/does-your-strategy-tell-a-coherent-story</id>
        <published>2025-08-13T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;First, one of my favorite quotes of all time by John Feynman:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&amp;quot;The first principle is that you must not fool yourself, and you are the easiest person to fool.&amp;quot;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This should be in the back of your mind whenever you&amp;#039;re optimizing trading strategies.&lt;/p&gt;&lt;p&gt;A skeptical mindset in this phase can save a lot of time and drawdown pain later.&lt;/p&gt;&lt;p&gt;When you first start optimizing a strategy, it&amp;#039;s easy for traders to fall into the trap of &amp;quot;following the data&amp;quot; too closely.&lt;/p&gt;&lt;p&gt;Not thinking deeply about which rules to apply to a strategy.&lt;/p&gt;&lt;p&gt;Adding too many rules, because, hey, that&amp;#039;s what the data is telling me, and who am I to argue with the data?&lt;/p&gt;&lt;p&gt;What many traders overlook when adding rules to their strategy is ensuring the rule tells a coherent story.&lt;/p&gt;&lt;p&gt;The next time you add a rule to your strategy, imagine having to present your case to a jury of skeptical traders that your rule is predictive and worth adding.&lt;/p&gt;&lt;p&gt;Given the strategy&amp;#039;s entry signal, &lt;strong&gt;WHY&lt;/strong&gt; will this rule improve the strategy?&lt;/p&gt;&lt;p&gt;&amp;quot;Because the data says so&amp;quot; is &lt;strong&gt;not good enough&lt;/strong&gt; - but that&amp;#039;s what most traders use to justify it.&lt;/p&gt;&lt;p&gt;Does the rule &lt;strong&gt;tell a coherent story&lt;/strong&gt;?&lt;/p&gt;&lt;p&gt;It better!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I&amp;#039;ll be doing a series of emails on Amibroker soon, a backtesting and charting software I&amp;#039;ve used for years.  Several traders have beta tested my Amibroker course, and the feedback has been excellent.  Look for an announcement soon on the official course launch and early bird pricing.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Daily Routine</title>
        <link href="https://davemabe.com/a-daily-routine"/>
        <id>https://davemabe.com/a-daily-routine</id>
        <published>2025-08-12T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a quote from the &lt;a href=&quot;https://www.amazon.com/War-Art-Through-Creative-Battles/dp/1936891026&quot;&gt;War of Art&lt;/a&gt;, a book I&amp;#039;m reading about artists. (There are surprising parallels between great artists and traders.)&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Someone once asked Somerset Maugham if he wrote on a schedule or only when struck by inspiration. &amp;quot;I write only when inspiration strikes,&amp;quot; he replied. &amp;quot;Fortunately it strikes every morning at nine o&amp;#039;clock sharp.”&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;If you only review your trades when you feel like it...&lt;/p&gt;&lt;p&gt;If you only brainstorm for new ideas when you feel like it...&lt;/p&gt;&lt;p&gt;If you only try to get better when you happen to be in a drawdown...&lt;/p&gt;&lt;p&gt;Then you&amp;#039;re putting a ceiling on how good you can be.&lt;/p&gt;&lt;p&gt;Inspiration for improving your trading should strike every day when the closing bell rings.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t take much to make big improvements.&lt;/p&gt;&lt;p&gt;But it does take consistency.&lt;/p&gt;&lt;p&gt;How can you get just a little bit better today after the close?&lt;/p&gt;&lt;p&gt;Imagine doing that every single day.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Follow Up on Running Out of Buying Power</title>
        <link href="https://davemabe.com/follow-up-on-running-out-of-buying-power"/>
        <id>https://davemabe.com/follow-up-on-running-out-of-buying-power</id>
        <published>2025-08-11T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we follow up on last week&amp;#039;s discussion on buying power.&lt;/p&gt;&lt;p&gt;There are serious risks when using leverage, so controlling risk is always the number one priority.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Can you lose more money than is in your account?  (Spoiler: yes)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What happens when that occurs?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You don&amp;#039;t have a &amp;quot;right&amp;quot; to a brokerage account&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Are there catastrophic risks to your trading that you&amp;#039;re not thinking about?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/running-out-of-buying-power-part-2&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Switching from Swing Trading to Day Trading</title>
        <link href="https://davemabe.com/switching-from-swing-trading-to-day-trading"/>
        <id>https://davemabe.com/switching-from-swing-trading-to-day-trading</id>
        <published>2025-08-08T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A trader recently emailed me about potentially switching from swing trading to day trading.&lt;/p&gt;&lt;p&gt;Some of his hesitations are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Sunk cost into his current swing trading process&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Significant learning curve to switch to day trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A reliable source for intraday data&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Confidence in day trading idea generation&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I made this switch over 25 years ago, so I have lots of thoughts on it.&lt;/p&gt;&lt;p&gt;But I want to poll traders on the list to get your thoughts.&lt;/p&gt;&lt;p&gt;Have you switched from swing trading to day trading?&lt;/p&gt;&lt;p&gt;How did it go? What advice would you give to someone considering the move?&lt;/p&gt;&lt;p&gt;Hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Deciding Between Two Ways to Improve a Strategy</title>
        <link href="https://davemabe.com/deciding-between-two-ways-to-improve-a-strategy"/>
        <id>https://davemabe.com/deciding-between-two-ways-to-improve-a-strategy</id>
        <published>2025-08-07T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Strategy Cruncher user Mugu sent me this question (shared with permission).  This is a great question that gets to the heart of how to improve strategies.&lt;/p&gt;&lt;p&gt;To give you some background, Mugu submitted his backtest from Amibroker with column data he added using the sample code provided by me in the forthcoming Amibroker course.&lt;/p&gt;&lt;p&gt;The Cruncher parsed through his backtest and is suggesting optimal ways to improve his strategy. He&amp;#039;s trying to choose between two ways to make his strategy more efficient.  That is, fewer trades but higher profit per trade.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mugu:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;In which order should I implement the suggested column filter improvements on a report like this.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Should I prioritize curve improvement or total profit improvement on the Cruncher output?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The second suggestion in the report results in a good improvement in profit factor + Sharpe ratio and half the exposure of unfiltered strategy run. It seems to me the second suggestion should have been ranked as number one on the report from the cruncher?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The ranking in the cruncher report is ordered by the optimal way to split the trade set where the difference between the average profit of the green set and the red set is largest.&lt;/p&gt;&lt;p&gt;(It&amp;#039;s hard to explain, but the sample report gives a good visualization of the ranking.  Scroll through &lt;a href=&quot;https://optimizer01.us-southeast-1.linodeobjects.com/reports/TOzU10gWFmSMGYTdOn1h/index.html&quot;&gt;the charts here&lt;/a&gt;.)&lt;/p&gt;&lt;p&gt;And it&amp;#039;s doing that across all columns - no matter how many you&amp;#039;ve included.&lt;/p&gt;&lt;p&gt;(A Trade-Ideas backtest has over 200 columns and I have Amibroker backtests with over 300 columns.)&lt;/p&gt;&lt;p&gt;In the charts from Mugu&amp;#039;s cruncher report, notice the smoothness of the green line in the first one compared to the second one.&lt;/p&gt;&lt;p&gt;I consider that more consistent and therefore more likely (although not guaranteed) to continue into the future.&lt;/p&gt;&lt;p&gt;Also look at the second chart.  In that one, the red line is smoother than the green one.  In fact, the recent period shows performance that&amp;#039;s roughly equal across both the green and red lines, and the red line is profitable overall.&lt;/p&gt;&lt;p&gt;For these reasons, all things equal, I&amp;#039;d prefer the first suggestion from the cruncher.&lt;/p&gt;&lt;p&gt;Thanks for sharing, Mugu.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Metrics Are Best?</title>
        <link href="https://davemabe.com/which-metrics-are-best"/>
        <id>https://davemabe.com/which-metrics-are-best</id>
        <published>2025-08-06T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a reader question from Rami A. (shared with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Rami A:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I’m trying to create a day trading strategy. Which financial metrics should I consider, such as risk-reward ratio, Sharpe ratio, drawdown, etc., to determine if it’s a good one?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to overcomplicate things here for no real benefit, so I keep it super simple:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Total Profit&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades Per Day&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And, of course, the most important factor is looking at the equity curve.&lt;/p&gt;&lt;p&gt;That&amp;#039;s it!&lt;/p&gt;&lt;p&gt;Why is the equity curve so important?  Because it&amp;#039;s telling you a story that no metric can capture.&lt;/p&gt;&lt;p&gt;It&amp;#039;s telling you the pain you would have felt during those drawdowns.&lt;/p&gt;&lt;p&gt;If I had to choose just one &amp;quot;metric&amp;quot;, it would be the equity curve (by a mile).&lt;/p&gt;&lt;p&gt;When you find a smooth equity curve, it gives you a lot of flexibility in trading the strategy.&lt;/p&gt;&lt;p&gt;Thanks for the question, Rami!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Follow Up to What Is The Best Strategy</title>
        <link href="https://davemabe.com/follow-up-to-what-is-the-best-strategy"/>
        <id>https://davemabe.com/follow-up-to-what-is-the-best-strategy</id>
        <published>2025-08-05T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here are my thoughts on my original message, where I asked &lt;a href=&quot;https://www.davemabe.com/which-is-the-best-strategy/&quot;&gt;which strategy you think is best&lt;/a&gt;, and then later &lt;a href=&quot;https://www.davemabe.com/responses-to-what-is-the-best-strategy/&quot;&gt;posted&lt;/a&gt; the &lt;a href=&quot;https://www.davemabe.com/in-depth-response-to-what-is-the-best-strategy/&quot;&gt;responses&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;There was some insightful feedback, so it&amp;#039;s worth going back and reading those threads if you haven&amp;#039;t already.&lt;/p&gt;&lt;p&gt;This is one of those rare strategies where one or two of the columns I&amp;#039;ve added to the backtest are &lt;strong&gt;highly predictive&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;In fact, each version of the strategy is just using increasingly extreme values for just two columns.&lt;/p&gt;&lt;p&gt;For that reason, I&amp;#039;m not worried about curve fitting, even with version 4 of the strategy.&lt;/p&gt;&lt;p&gt;If I had to use several rules that the Strategy Cruncher suggested to create version 4, that would have been a different story.&lt;/p&gt;&lt;p&gt;When you identify a column or two that are highly predictive, it gives you lots of ways to trade the strategy. (There are no wrong answers to my original question.)&lt;/p&gt;&lt;p&gt;In this situation, I like starting with a version that trades frequently and doing so with tiny size.&lt;/p&gt;&lt;p&gt;This lets you quickly see if the trades are measuring up to the backtest in live while risking a negligible amount of money.&lt;/p&gt;&lt;p&gt;More on this topic and next steps soon...&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Running Out of Buying Power A Good Thing?</title>
        <link href="https://davemabe.com/is-running-out-of-buying-power-a-good-thing-2"/>
        <id>https://davemabe.com/is-running-out-of-buying-power-a-good-thing-2</id>
        <published>2025-08-04T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss one of my favorite topics.&lt;/p&gt;&lt;p&gt;I remember feeling a sense of shame the first time I ran out of buying power in my trading. It took me a while to realize that &lt;strong&gt;it&amp;#039;s a good thing&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Why you should think about the efficient use of buying power&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What to do when you run out&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How buying power issues are fun to solve&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What to do if you aren&amp;#039;t running out of buying power&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/running-out-of-buying-power-a-good-thing&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">In-Depth Response to What Is The Best Strategy</title>
        <link href="https://davemabe.com/in-depth-response-to-what-is-the-best-strategy"/>
        <id>https://davemabe.com/in-depth-response-to-what-is-the-best-strategy</id>
        <published>2025-08-01T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Long-time list member Mahmound G. responded to &lt;a href=&quot;https://www.davemabe.com/which-is-the-best-strategy/&quot;&gt;my original message&lt;/a&gt; about different versions of a strategy in addition to the &lt;a href=&quot;https://www.davemabe.com/responses-to-what-is-the-best-strategy/&quot;&gt;other reader responses I posted yesterday&lt;/a&gt;.  (Shared with permission.)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mahmoud G:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The best scenario, in my opinion, will depend on two factors: the trader&amp;#039;s career stage and their execution method (fully automated or discretionary).&lt;/p&gt;&lt;p&gt;Discretionary traders should adopt high–winning-percentage strategies, as they won&amp;#039;t be able to capture all the backtested trades. This can significantly impact the strategy&amp;#039;s performance and cause a major divergence from the backtest results. Scenarios 3 and 4 would be more suitable for discretionary traders.&lt;/p&gt;&lt;p&gt;Career stage will also determine the balance between drawdown tolerance and profitability. In the early phases, traders usually have smaller accounts, so their tolerance for losses will be more critical.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Case 1&lt;/strong&gt;: Discretionary trader + Early Career = &lt;strong&gt;Version 4 &lt;/strong&gt;(building small account + missing traders won&amp;#039;t highly impact the backtest results)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Case 2&lt;/strong&gt;: Discretionary trader + Experienced trader = &lt;strong&gt;Version 3&lt;/strong&gt; (favoring profitability over winning %  + missing traders won&amp;#039;t highly impact the backtest results)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Case 3&lt;/strong&gt;: Automated trader + Early Career = &lt;strong&gt;Version 2 + taking version 4 with higher size&lt;/strong&gt; (building small account + missing traders  rarely occur)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Case 4&lt;/strong&gt;: Automated trader + Experienced trader = &lt;strong&gt;Version 1 + taking version 4 with higher size &lt;/strong&gt;(favoring profitability over winning % + missing traders rarely occur)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Very interesting breakdown here.&lt;/p&gt;&lt;p&gt;Any thoughts on this approach?&lt;/p&gt;&lt;p&gt;I&amp;#039;ll share my thoughts next week. (Speaking of, see the P.S. below)&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I&amp;#039;ll be in NYC most of next week speaking at the event with SMB Capital. If you&amp;#039;re interested in meeting up for coffee or a drink, hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Responses to What is the Best Strategy and Announcement</title>
        <link href="https://davemabe.com/responses-to-what-is-the-best-strategy"/>
        <id>https://davemabe.com/responses-to-what-is-the-best-strategy</id>
        <published>2025-07-31T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;&lt;strong&gt;Announcement:&lt;/strong&gt; I&amp;#039;ll be &lt;a href=&quot;https://x.com/GarrettDrinon/status/1950309991229149359&quot;&gt;speaking next week&lt;/a&gt; with list member Garrett Drinon from SMB Capital in their Bionic Trader meeting. Come join us!&lt;/p&gt;&lt;p&gt;Several of you responded to &lt;a href=&quot;https://www.davemabe.com/which-is-the-best-strategy/&quot;&gt;my question a couple of days ago&lt;/a&gt; about which version of my strategy you think is best.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a summary of the particularly good ones (shared with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Isaac H:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I would lean towards version 1 if slippage and fees aren&amp;#039;t eating all the profits... if they are, I would go with version 2 because I would assume it makes the most for a given position size. I&amp;#039;m not confident the drawdowns would be as small as versions 3 or 4 though.... which may mean you could more easily size up versions 3 or 4.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Fabrizio A:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I probably would like to trade the version 2 even if i&amp;#039;m not sure if there is a mathematical reason... I usually want to know avg winner and avg loser and calculate Kelly, which i use more as a metric than as a sizing tool. Anyway, just following gut feeling, I like profit factor, win rate, and trade frequency of that version 2.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matt H:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I don&amp;#039;t know which is the best version, but I like version 2 with version 3 1.5 size and version 4 with 2 or 3x size (maybe more)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Nish K:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Version 4 looks great as it has highest win% so PSYCHOLOGICALLY easy to execute. It has best profit factor. It also has least trade count so least fees and slippage but enough for statistically significant. &lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Roget B:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Is this a trick question? Haven&amp;#039;t you taught us it all starts and ends with the equity curve!&lt;/p&gt;&lt;p&gt;That said, I&amp;#039;d start with the one with the fewest rules and a solid PF - likely #2, maybe #3. #4 is way too overcooked. I&amp;#039;d want to see it eliminate a smaller percentage of trades with each iteration, not more.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;All excellent responses!  (Glad to see Roget listening closely to my preaching about the equity curve.)&lt;/p&gt;&lt;p&gt;There was another in-depth reader response that deserves its own email, so look for that tomorrow, and then I will share my thoughts next week.&lt;/p&gt;&lt;p&gt;Thanks again to all who responded and agreed to share with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I&amp;#039;ll be in NYC most of next week speaking at &lt;a href=&quot;https://x.com/GarrettDrinon/status/1950309991229149359&quot;&gt;the event with SMB Capital&lt;/a&gt;. If you&amp;#039;re interested in meeting up for coffee or a drink, hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Long and Short in Same Backtest?</title>
        <link href="https://davemabe.com/long-and-short-in-same-backtest"/>
        <id>https://davemabe.com/long-and-short-in-same-backtest</id>
        <published>2025-07-30T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;New Strategy Cruncher user Mugu M. wrote in with an excellent question (shared with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mugu M:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Does it make sense to send the Longs and Shorts separately into the Cruncher? For example, when I’m using a momentum oscillator like RSI, extremes like 70, 30 will be used for overbought/oversold to decide buy/or sell..but the Cruncher returns one suggested optimal value that does not make 100% sense for both buy/sell.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;My default is to separate longs and shorts for optimization, assuming there are enough trades in the backtest to warrant this approach.&lt;/p&gt;&lt;p&gt;If you feel there aren&amp;#039;t enough trades in the backtest to get confidence in optimizing, then it is certainly a viable approach to keep them together.&lt;/p&gt;&lt;p&gt;But combining them does cause weird situations like this one for RSI.&lt;/p&gt;&lt;p&gt;The issue is that the RSI for the long side is looking for a value of 70, but the equivalent value for the short side is 30.&lt;/p&gt;&lt;p&gt;This is a perfect example of a column that isn&amp;#039;t normalized, so you&amp;#039;re not giving it the best chance for the cruncher to detect it for importance and therefore improve your strategy using it.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a simple way to create a &lt;strong&gt;normalized version&lt;/strong&gt; of RSI across direction just for this very purpose.&lt;/p&gt;&lt;p&gt;Add a new column called &lt;code&gt;directional_rsi&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;For longs, &lt;code&gt;directional_rsi&lt;/code&gt; is the same as &lt;code&gt;rsi&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;But for shorts, &lt;code&gt;directional_rsi&lt;/code&gt; should be &lt;code&gt;100 - rsi&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;For shorts, a value of &lt;code&gt;30&lt;/code&gt; for rsi has a value of &lt;code&gt;70&lt;/code&gt; for &lt;code&gt;directional_rsi&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Now, the Cruncher can measure extremeness across both directions and weed out the weaker trades.&lt;/p&gt;&lt;p&gt;Great question, Mugu - thanks for sharing!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you interested in creating your own strategies? If you’ve got a backtest, you owe it to yourself to try &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;the Strategy Cruncher&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Here’s what one user said recently about it:&lt;/p&gt;&lt;p&gt;Matt: “By using the Strategy Cruncher, I can very easily find the very best filters for any type of strategy backtest without being concerned about over-optimization. Last week, in a mean reversion strategy, in 4 iterations of the cruncher, I found filters that reduced drawdown and increased overall profit by 10x.”&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Is The Best Strategy?</title>
        <link href="https://davemabe.com/which-is-the-best-strategy"/>
        <id>https://davemabe.com/which-is-the-best-strategy</id>
        <published>2025-07-29T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a good example of the deep versus wide approaches.&lt;/p&gt;&lt;p&gt;This is a strategy I&amp;#039;m working on, and I&amp;#039;m trying to decide which version to go live with.&lt;/p&gt;&lt;p&gt;My approach to backtesting is always the same - start with no filtering, then use the Strategy Cruncher to figure out which trades to remove (without curve-fitting).&lt;/p&gt;&lt;p&gt;All these versions correspond to the same entry signal, but in each subsequent version, I&amp;#039;ve used the cruncher to add a rule to remove the poorest trade set.&lt;/p&gt;&lt;p&gt;So, version 4 is a subset of version 3, which is a subset of version 2, etc.&lt;/p&gt;&lt;p&gt;Using only this information, which one do you think is best and why?&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Version 1&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor: 1.87&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent: 53.8%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades: 3,859&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades per day: 3.3&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Version 2&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor: 3.29&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent: 55.1%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades: 1,619&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades per day: 1.4&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Version 3&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor: 4.65&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent: 63.2%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades: 427&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades per day: 0.4&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Version 4&lt;/strong&gt;:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor: 7.59&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Percent: 72.6%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades: 106&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades per day: 0.1&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you interested in creating your own strategies? If you&amp;#039;ve got a backtest, you owe it to yourself to try &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;the Strategy Cruncher&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what one user said recently about it:&lt;/p&gt;&lt;p&gt;Matt: &amp;quot;By using the Strategy Cruncher, I can very easily find the very best filters for any type of strategy backtest without being concerned about over-optimization. Last week, in a mean reversion strategy, in 4 iterations of the cruncher, I found filters that reduced drawdown and increased overall profit by 10x.&amp;quot;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Deep vs. Wide: Two Paths to Trading Profits</title>
        <link href="https://davemabe.com/deep-versus-wide-two-paths-to-trading-profits"/>
        <id>https://davemabe.com/deep-versus-wide-two-paths-to-trading-profits</id>
        <published>2025-07-28T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss two very different mindsets for developing strategies.&lt;/p&gt;&lt;p&gt;You can take lots of trades with a smaller average profit per trade, or fewer trades with a larger average profit per trade.&lt;/p&gt;&lt;p&gt;These are both perfectly valid approaches, but the mindsets couldn&amp;#039;t be more different.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What&amp;#039;s the difference between the two approaches?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What can traders with one mindset learn from the opposite approach?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Which approach is better?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Which mindset do you have?&lt;/p&gt;&lt;p&gt;What can &lt;strong&gt;you&lt;/strong&gt; learn from the opposing camp?&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/deep-vs-wide-two-paths-to-trading-profits&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;I Don't Have Time&quot;</title>
        <link href="https://davemabe.com/i-dont-have-time"/>
        <id>https://davemabe.com/i-dont-have-time</id>
        <published>2025-07-25T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A lot of traders say they don&amp;#039;t have time to work on their trading.&lt;/p&gt;&lt;p&gt;I used to think this was a problem to try to overcome.&lt;/p&gt;&lt;p&gt;But for traders in a certain situation, this is a strong predictor of future success.&lt;/p&gt;&lt;p&gt;Why?&lt;/p&gt;&lt;p&gt;For most traders, the hard part is coming up with ideas to work on.&lt;/p&gt;&lt;p&gt;Thinking of ideas that will have a profitable edge.&lt;/p&gt;&lt;p&gt;If your biggest problem, though, is not having enough time to work on your existing ideas, that&amp;#039;s a great sign.&lt;/p&gt;&lt;p&gt;That means you have more profitable ideas than time to work on them.&lt;/p&gt;&lt;p&gt;And that is a problem you can solve.&lt;/p&gt;&lt;p&gt;And it&amp;#039;s much easier than coming up with ideas in the first place.&lt;/p&gt;&lt;p&gt;Tolstoy had &lt;em&gt;thirteen kids&lt;/em&gt; when he wrote &lt;u&gt;War and Peace&lt;/u&gt;.&lt;/p&gt;&lt;p&gt;He knew he had a good idea, so he solved his &amp;quot;I don&amp;#039;t have time&amp;quot; problem.&lt;/p&gt;&lt;p&gt;Focus on the profitable ideas, and I guarantee you&amp;#039;ll find the time.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Overriding Your Trading System</title>
        <link href="https://davemabe.com/overriding-your-trading-system"/>
        <id>https://davemabe.com/overriding-your-trading-system</id>
        <published>2025-07-24T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve put in the work:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Backtested your trading strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Optimized it so you&amp;#039;re taking the most profitable set of trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Responsibly put it into production with small size at first&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;But you still find yourself wanting to override your system.&lt;/p&gt;&lt;p&gt;&amp;quot;I think that stop should be looser.&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;quot;This trade doesn&amp;#039;t make sense because of $REASON, so I&amp;#039;m going to close it early.&amp;quot;&lt;/p&gt;&lt;p&gt;&amp;quot;If I give this one more time, surely it will work.&amp;quot;&lt;/p&gt;&lt;p&gt;All these doubts you have during the day are &lt;strong&gt;normal&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;However, acting on them can erode your entire trading process over time.&lt;/p&gt;&lt;p&gt;When you override your system, you&amp;#039;re telling yourself that the work you did to prepare wasn&amp;#039;t good enough.&lt;/p&gt;&lt;p&gt;You&amp;#039;re not respecting it.&lt;/p&gt;&lt;p&gt;All those thoughts you had listed above could be tested.&lt;/p&gt;&lt;p&gt;Next time you have those doubts, instead of overriding your system, make a detailed note instead and add it to your research TODO list.&lt;/p&gt;&lt;p&gt;And then see what would happen if:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;You used a looser stop across all your trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You added $REASON to your backtest as a column to see if it really has an effect&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You held all your trades a little longer&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Tracking down those answers outside of regular trading hours makes your trading process stronger over time rather than eroding it.&lt;/p&gt;&lt;p&gt;Amateurs use their doubts to override their work, but pros use them to get better.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Cure for Helicopter Parenting Your Trades</title>
        <link href="https://davemabe.com/a-cure-for-helicopter-parenting-your-trades"/>
        <id>https://davemabe.com/a-cure-for-helicopter-parenting-your-trades</id>
        <published>2025-07-23T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The last message about &lt;a href=&quot;https://www.davemabe.com/helicopter-parenting/&quot;&gt;helicopter parenting your trades&lt;/a&gt; struck a nerve with several readers.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a way to get rid of your over-involvement in your trades.&lt;/p&gt;&lt;p&gt;Continue trading as you normally do, but...&lt;/p&gt;&lt;p&gt;For each trade where you intervene and override your plan, create a tag called &amp;quot;Overrode&amp;quot; (or even &amp;quot;Helicopter&amp;quot; lol) and apply that tag to these trades in your trade journal (you ARE keeping a database of your trades, right? Right?!?)&lt;/p&gt;&lt;p&gt;Let some time go by and be honest and consistent in applying the tag.&lt;/p&gt;&lt;p&gt;After a while, filter your journal on this tag and compare the results to a baseline (ideally a backtest, but it doesn&amp;#039;t have to be.)&lt;/p&gt;&lt;p&gt;You&amp;#039;ll very likely see that the trades with this tag &lt;strong&gt;underperform&lt;/strong&gt; the others.&lt;/p&gt;&lt;p&gt;That is, the trades where you intervene and override your plan are worse.&lt;/p&gt;&lt;p&gt;This makes it very clear that there&amp;#039;s a &lt;strong&gt;cost&lt;/strong&gt; to your meddling with your trades.&lt;/p&gt;&lt;p&gt;When you see this in such stark terms, it becomes highly motivating to change the behavior.&lt;/p&gt;&lt;p&gt;But what if your helicopter parenting &lt;strong&gt;improves&lt;/strong&gt; those trades?&lt;/p&gt;&lt;p&gt;That&amp;#039;s a great problem to have - and one that I&amp;#039;ll address tomorrow.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Helicopter Parenting</title>
        <link href="https://davemabe.com/helicopter-parenting"/>
        <id>https://davemabe.com/helicopter-parenting</id>
        <published>2025-07-22T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you have kids, you know the kind of parent I&amp;#039;m talking about.&lt;/p&gt;&lt;p&gt;They&amp;#039;re overly involved.&lt;/p&gt;&lt;p&gt;Making sure things are perfect.&lt;/p&gt;&lt;p&gt;The kids would be better off if the helicopter parent loosened their grip and gave them more autonomy.&lt;/p&gt;&lt;p&gt;The freedom to make a mistake or two.&lt;/p&gt;&lt;p&gt;It&amp;#039;s hard to see in the moment, but that&amp;#039;s the better approach in the long run.&lt;/p&gt;&lt;p&gt;So what does this have to do with trading?&lt;/p&gt;&lt;p&gt;I see a lot of traders doing the same thing with their trades.&lt;/p&gt;&lt;p&gt;Monitoring every tick during a trade.&lt;/p&gt;&lt;p&gt;Not providing any real value - just being overly involved - which leads to mistakes.&lt;/p&gt;&lt;p&gt;Are you &lt;strong&gt;helicopter parenting&lt;/strong&gt; your trades?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Restrict Your Strategy to a Specific Symbol List?</title>
        <link href="https://davemabe.com/restrict-your-strategy-to-a-specific-symbol-list"/>
        <id>https://davemabe.com/restrict-your-strategy-to-a-specific-symbol-list</id>
        <published>2025-07-21T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we have a surprisingly heated discussion about whether to restrict your strategy&amp;#039;s universe of symbols or not.&lt;/p&gt;&lt;p&gt;This seemingly simple question has numerous implications.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Can you backtest a strategy that trades a symbol list you don&amp;#039;t control?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Is each symbol in the list weighted equally?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Is a symbol list simply a filter?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Should you include or exclude ETFs in your strategy?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Buckle your seat belts, this is the biggest disagreement Michael and I have had on the podcast so far!&lt;/p&gt;&lt;p&gt;We don&amp;#039;t come to blows, but pretty close.&lt;/p&gt;&lt;p&gt;Which side do you fall on?&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/symbol-lists-in-strategies-yes-or-no&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The First Thing To Do With Any Backtest Software</title>
        <link href="https://davemabe.com/the-first-thing-to-do-with-any-backtest-software"/>
        <id>https://davemabe.com/the-first-thing-to-do-with-any-backtest-software</id>
        <published>2025-07-18T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve just gotten access to a powerful backtesting engine like Amibroker, RealTest, or Trade-Ideas.&lt;/p&gt;&lt;p&gt;You can&amp;#039;t wait to dive in and get your strategy working.&lt;/p&gt;&lt;p&gt;But there&amp;#039;s one thing you should do before writing any code or configuring your strategy.&lt;/p&gt;&lt;p&gt;And it&amp;#039;s probably not what you think.&lt;/p&gt;&lt;p&gt;You should &lt;strong&gt;remove&lt;/strong&gt; any restrictions on buying power or account size.&lt;/p&gt;&lt;p&gt;That is, have the backtester assume you have &lt;strong&gt;unlimited buying power&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;But why?  Shouldn&amp;#039;t you configure your exact account size and buying power settings? No.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a good reason for this.&lt;/p&gt;&lt;p&gt;When you run your first backtest, you want to avoid any artificial filtering.  You want the entire set of trades that match your rules.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you&amp;#039;re testing a strategy that has up to 10 trades on some days.&lt;/p&gt;&lt;p&gt;When you restrict your buying power in the backtester, it might only return the first 5 trades on those days.&lt;/p&gt;&lt;p&gt;So it will artificially hide half of the trades on those days from your backtest.&lt;/p&gt;&lt;p&gt;This is NOT what you want.&lt;/p&gt;&lt;p&gt;You want to start with the entire picture - all trades that your system could take - even if it&amp;#039;s way more than you have buying power for.&lt;/p&gt;&lt;p&gt;That&amp;#039;s fine, because you&amp;#039;re going to filter this initial trade set down, removing lots of crappy trades using filters from your columns.&lt;/p&gt;&lt;p&gt;You&amp;#039;re going to end up with a much better-looking equity curve by the time you start trading it.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s literally not possible if your backtester is trying to be &amp;quot;smart&amp;quot; and excluding trades.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you interested in using Amibroker for backtesting? I’m putting the final touches on a course on Amibroker that shows how traders who actually trade for their income use it. Click here to sign up to be notified when it’s available:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Brute Force Optimizations</title>
        <link href="https://davemabe.com/brute-force-optimizations"/>
        <id>https://davemabe.com/brute-force-optimizations</id>
        <published>2025-07-17T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Matt H. (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matt H.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;How do you optimize things like the gap %, how long a moving average period value should be or other variables that might make sense in an automated guess and check scenario?  Running a backtest takes a couple of minutes, but running an optimization (in Amibroker or TradeStation) can take hours or days.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Optimizations in tools like Amibroker, TradeStation, or NinjaTrader are what I consider brute force optimizers.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re planning on living for several centuries, they&amp;#039;re not bad. Otherwise, these tools are a waste of time.&lt;/p&gt;&lt;p&gt;(This is no exaggeration.  Try brute force optimizing 200+ columns in a backtest.  It will take at least a century to complete, but the Strategy Cruncher will do it in seconds.)&lt;/p&gt;&lt;p&gt;Gap percent is very different than the moving average period value.&lt;/p&gt;&lt;p&gt;Add Gap percent to your column library, and the cruncher will let you know when it&amp;#039;s predictive for any strategy you run it on.&lt;/p&gt;&lt;p&gt;The moving average period value is different.  If the moving average is being used in your strategy&amp;#039;s signal, then I&amp;#039;d use the approach I mentioned yesterday: pick 3-4 combos and run backtests for all of them to pick your values.&lt;/p&gt;&lt;p&gt;If the moving average values you&amp;#039;re referring to are for columns in your backtest to potentially filter on, then I would pick ~3 different values and add them each as columns.&lt;/p&gt;&lt;p&gt;I have different values like this in my column library that I label:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Long&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Medium&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Short&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;There won&amp;#039;t be a single, magical value for the moving average period that will make or break your strategy.&lt;/p&gt;&lt;p&gt;In fact, if there is a specific value for the period that is significantly better than adjacent values, that would worry me!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you interested in using Amibroker for backtesting?  I&amp;#039;m putting the final touches on a course on Amibroker that shows how traders who actually trade for their income use it. Click here to sign up to be notified when it&amp;#039;s available:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Optimizing Time of Day Across Multiple Signals</title>
        <link href="https://davemabe.com/optimizing-time-of-day-across-multiple-signals"/>
        <id>https://davemabe.com/optimizing-time-of-day-across-multiple-signals</id>
        <published>2025-07-16T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Long-time list member Fabrizio A. sent me this question (name used with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Fabrizio A.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Trade-Ideas backtest results present some challenges because TI only keeps the first occurrence of each alert per symbol per day. That means the Strategy Cruncher can&amp;#039;t evaluate whether a better trade might have occurred later in the day. So basically, it only works properly if the alert is natively designed to trigger just once per day. In other cases, I use the optimizer for other types of filters, but I need to try different time windows by running multiple backtests&lt;/p&gt;&lt;p&gt;Is there a better way to approach this?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Fabrizio is describing &lt;a href=&quot;https://www.davemabe.com/more-trades-than-you-expected/&quot;&gt;the backtesting puzzle&lt;/a&gt; I posted about several days ago.&lt;/p&gt;&lt;p&gt;How do you optimize a strategy that&amp;#039;s based on an alert that can happen multiple times a day (like a new high)?&lt;/p&gt;&lt;p&gt;When you apply a filter, oftentimes you&amp;#039;re simply &amp;quot;postponing&amp;quot; the trade in a symbol that you believe should be filtered out since a symbol can print many new high alerts throughout the day.&lt;/p&gt;&lt;p&gt;(Contrast the new high alert with an alert like an opening range breakout, which can only happen by definition once per day.)&lt;/p&gt;&lt;p&gt;So, how do you optimize a strategy based on an alert that can happen multiple times?&lt;/p&gt;&lt;p&gt;There are two main ways to approach this problem.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;Optimize on columns whose values don&amp;#039;t change during the day&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Select a handful of combos to run backtests on&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Let&amp;#039;s take #1:&lt;/p&gt;&lt;p&gt;When you restrict your columns to ones that don&amp;#039;t change during the trading day (ATR, Gap%, etc), you simplify the problem significantly since you eliminate the &amp;quot;peek-a-boo&amp;quot; trade issue above.&lt;/p&gt;&lt;p&gt;That is, when you filter on columns that don&amp;#039;t change, even if a new high alert appears throughout the day it will still be filtered out.&lt;/p&gt;&lt;p&gt;This is one of the main reasons I prioritize columns whose values don&amp;#039;t change during the day.&lt;/p&gt;&lt;p&gt;When this isn&amp;#039;t possible (maybe none of the columns are predictive enough to use), then it&amp;#039;s perfectly fine to run multiple backtests to try to find the best starting point.&lt;/p&gt;&lt;p&gt;I wouldn&amp;#039;t obsess too much about finding the &amp;quot;perfect&amp;quot; window of time for your strategy, though.&lt;/p&gt;&lt;p&gt;There&amp;#039;s likely not a &amp;quot;holy grail&amp;quot; time window.  Just use your experience about the trading day to choose 3-4 windows of time that make sense and run backtests for each of them.&lt;/p&gt;&lt;p&gt;I&amp;#039;d be looking at the results to compare:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The number of trades (more = better)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Proximity to the open (more movement, in general)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The metrics/equity curve of each starting point backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Great question, Fabrizio - thanks for sharing with the group!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Less Precision to Avoid Curve Fitting?</title>
        <link href="https://davemabe.com/less-precision-to-avoid-curve-fitting"/>
        <id>https://davemabe.com/less-precision-to-avoid-curve-fitting</id>
        <published>2025-07-15T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Another question from Hanns K. about the Strategy Cruncher and adding filters to your strategy to make more profit with fewer trades.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Hanns K.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve read that you shouldn&amp;#039;t optimize with a too high &amp;quot;resolution&amp;quot; in order to avoid overfitting and not to create too high expectations of the strategy&amp;#039;s performance, since it probably will never reach this historically optimal performance in live trading. I have the feeling the Cruncher is doing that to some extent and that the brute force method probably is a bit more conservative by doing larger step sizes during optimization.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Good question, Hanns.&lt;/p&gt;&lt;p&gt;I see this as a variation of the &lt;a href=&quot;https://www.davemabe.com/using-nice-round-numbers-in-your-strategy/&quot;&gt;round number fallacy&lt;/a&gt;, where traders choose round numbers for the values for their rules even though it&amp;#039;s not optimal as a way of somehow avoiding curve fitting.&lt;/p&gt;&lt;p&gt;The strategy and the market don&amp;#039;t care that you&amp;#039;ve chosen a round number that appears more &amp;quot;pleasing&amp;quot; compared with the optimal number.&lt;/p&gt;&lt;p&gt;Also, let&amp;#039;s take the precision argument to its logical conclusion.&lt;/p&gt;&lt;p&gt;If you think using less precision will be better in the long run, then maybe you should use a LOT less precision - that would be even better according to this theory.&lt;/p&gt;&lt;p&gt;So let&amp;#039;s say the Cruncher suggests a value of 5.6 for gap percent for improving your strategy.  That is, if you were to apply the rule and only take trades where the gap percent is greater than 5.6, you would get the same profit with fewer trades.&lt;/p&gt;&lt;p&gt;In an effort to supposedly avoid curve fitting, you choose 6 for the value (rounding up from 5.6).&lt;/p&gt;&lt;p&gt;If that&amp;#039;s somehow an improvement, why not choose 10?  That&amp;#039;s an even more pleasing number!&lt;/p&gt;&lt;p&gt;You can see where that leads.&lt;/p&gt;&lt;p&gt;The best number to use is the one that has shown itself to be optimal over a long historical period.&lt;/p&gt;&lt;p&gt;Thanks for the question, Hanns K.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you still fooling with Excel to try to create your trading strategy? The Strategy Cruncher lets you generate more profit from fewer trades in your backtest in seconds, not days or weeks.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Check Out the Strategy Cruncher&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Hide Your P&amp;L? Yes</title>
        <link href="https://davemabe.com/hide-your-pl-yes"/>
        <id>https://davemabe.com/hide-your-pl-yes</id>
        <published>2025-07-14T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss a bad habit that&amp;#039;s easy to avoid: looking at your P&amp;amp;L.&lt;/p&gt;&lt;p&gt;There are a lot of emotions wrapped up in watching that number and it can encourage you to make bad decisions.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How so much effort is done by platforms to make the P&amp;amp;L number as attractive as possible&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why watching that number is toxic to good trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Even at the end of the trading day, your P&amp;amp;L number is ultimately irrelevant&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/looking-at-p-l-yours-or-some-elses-is-toxic&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Optimizing on Time of Day</title>
        <link href="https://davemabe.com/optimizing-on-time-of-day"/>
        <id>https://davemabe.com/optimizing-on-time-of-day</id>
        <published>2025-07-11T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question from Hanns K. (name used with permission) about optimizing based on time of day.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Hanns K.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;About brute force vs. Strategy Cruncher: the speed of optimization is impressive and definitely faster than brute force by several orders of magnitude.&lt;/p&gt;&lt;p&gt;Using my systems for intraday futures trading, I found that time filters are among the most powerful ones. So I allow trading during a certain time window each day only and also close trades at a certain time. I was wondering if you see a possibility to incorporate time filters into the approach. Of course it would be possible to filter out certain trades completely based on the opening time of the position but I think this would not give the complete picture.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You&amp;#039;re right, time of day is an important filter to consider.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re not considering time of day, I can guarantee you&amp;#039;re taking a lot of trades that you shouldn&amp;#039;t be.&lt;/p&gt;&lt;p&gt;So how do you determine what the cutoff should be for time of day?  And is using a cutoff for time of day even worth it when considering other columns that could be even MORE predictive?&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the approach I use.&lt;/p&gt;&lt;p&gt;For time of day, I don&amp;#039;t use a timestamp (which doesn&amp;#039;t help much), I use the number of seconds since the market open.&lt;/p&gt;&lt;p&gt;So, for example, if the trade enters at 9:31:00, the value for the seconds since open column is 60 since the market opens at 9:30:00.&lt;/p&gt;&lt;p&gt;Premarket numbers are negative (which is fine), so a trade that enters at 9:20:00 is -600 (&lt;code&gt;-10 minutes X 60)&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;This normalizes time of day into an integer that you can feed to the cruncher.&lt;/p&gt;&lt;p&gt;Now, the cruncher can tell you how relatively predictive time of day is compared to dozens of other columns in your backtest.&lt;/p&gt;&lt;p&gt;Once you see how important (or not) time of day is compared to other columns, you can decide to use it or not in your strategy.&lt;/p&gt;&lt;p&gt;It can also lead you to completely new strategies based on the findings.&lt;/p&gt;&lt;p&gt;For example, if time of day is predictive, you can restrict your strategy to a tighter window of time and loosen the remaining filters to find more profitable trades during the most profitable time of day.&lt;/p&gt;&lt;p&gt;Great question, Hanns K., and thanks for sharing this with the group.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trading Goals</title>
        <link href="https://davemabe.com/trading-goals"/>
        <id>https://davemabe.com/trading-goals</id>
        <published>2025-07-10T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Do you have a goal to be the best trader in the world?&lt;/p&gt;&lt;p&gt;Or to make enough money from your trading to buy a yacht?&lt;/p&gt;&lt;p&gt;It&amp;#039;s counterintuitive, but grandiose goals like these are signs of an amateur.&lt;/p&gt;&lt;p&gt;The best traders are setting goals that are far more acheivable.&lt;/p&gt;&lt;p&gt;I like to have traders set a range of goals:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Conservative&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Moderate&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Radical&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;That way, you can set an ambitious goal for your radical one, but not be devastated if you miss it since you&amp;#039;ll have some modest goals you&amp;#039;re shooting for as well.&lt;/p&gt;&lt;p&gt;Of course trading is about making money, but it&amp;#039;s better to be process oriented rather than results oriented.&lt;/p&gt;&lt;p&gt;For example, instead of a goal to make $X dollars this year, set a goal to get 3 new strategies trading live.&lt;/p&gt;&lt;p&gt;Or backtest Y new ideas.&lt;/p&gt;&lt;p&gt;The results (profits) will take care of themselves if you improve your process.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Fold or Raise Situations</title>
        <link href="https://davemabe.com/fold-or-raise-situations"/>
        <id>https://davemabe.com/fold-or-raise-situations</id>
        <published>2025-07-09T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As many of you know, I&amp;#039;m &lt;a href=&quot;https://www.davemabe.com/can-traders-learn-anything-from-poker/&quot;&gt;a poker enthusiast&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;In Texas Hold&amp;#039;em, when facing a raise and it&amp;#039;s your turn to act, you can either fold, call, or raise.&lt;/p&gt;&lt;p&gt;Most players tend to call far too often - it&amp;#039;s a passive play and it&amp;#039;s tempting for new players to call a bet simply to see another card.&lt;/p&gt;&lt;p&gt;Thinking players understand there are &amp;quot;fold or raise&amp;quot; situations.&lt;/p&gt;&lt;p&gt;These are scenarios where most players would call, but the far better play in the long run would be to either be aggressive and raise, or completely give up on the hand by folding.&lt;/p&gt;&lt;p&gt;In fold or raise situations, calling is common and most players&amp;#039; default, but it&amp;#039;s by far the worst option.&lt;/p&gt;&lt;p&gt;The same concept applies to your trading business.&lt;/p&gt;&lt;p&gt;Is there something you&amp;#039;re doing now by rote or as a default that would be better to either quit (fold) or go all-in on (raise)?&lt;/p&gt;&lt;p&gt;A good candidate is something you do that a lot of other traders do as well.&lt;/p&gt;&lt;p&gt;What would it look like if you stopped doing it or even did the opposite?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Out of Sample Performance</title>
        <link href="https://davemabe.com/out-of-sample-performance"/>
        <id>https://davemabe.com/out-of-sample-performance</id>
        <published>2025-07-08T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The last question from Chris B. (name used with permission), who’s using the &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher&lt;/a&gt; to create an intraday system that trades SPY.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Chris B:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do you have an objective way to measure a filter’s effectiveness in the out of sample period? My observation when comparing the -0.3308 (dojiness) against the baseline results, the improvements in MAR, Expectancy, AvgLoss, and ProfitFactor are basically the same for in and out of sample backtests. That would give me confidence in the filter.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You&amp;#039;re right, Chris.  It&amp;#039;s a great sign that the threshold the cruncher suggested is the same for your in sample and out of sample trade sets.&lt;/p&gt;&lt;p&gt;That should be a big confidence boost that the optimal filter it found should hold up into the future.&lt;/p&gt;&lt;p&gt;If your strategy&amp;#039;s signal is strong enough and you have enough trades, it won&amp;#039;t matter if you do in sample and out of sample testing.&lt;/p&gt;&lt;p&gt;Why?  Because the cruncher will give you the same suggestions whether you have it look at the in sample set or the entire backtest.&lt;/p&gt;&lt;p&gt;If the Strategy Cruncher had suggested wildly different values for the optimal filter for Dojiness for in sample and out of sample sets, what would that say about your confidence in the filter?&lt;/p&gt;&lt;p&gt;You should always be thinking about your &amp;quot;path to confidence&amp;quot; with a strategy.&lt;/p&gt;&lt;p&gt;Trading is easy if you&amp;#039;re trading with small size.&lt;/p&gt;&lt;p&gt;It gets more interesting and difficult when your goal with each strategy is to trade it with significant size.&lt;/p&gt;&lt;p&gt;What questions would you need to answer about your strategy to trade it with more size?&lt;/p&gt;&lt;p&gt;What&amp;#039;s stopping you from getting those answers?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. When you&amp;#039;re ready, the cruncher is here.  The Strategy Cruncher is like having a cheat code for your trading strategy. Here’s what Matt H. said about the cruncher:&lt;/p&gt;&lt;p&gt;“The cruncher suggested a few filters for my strategy. I plugged them in, ran the back test and WOW! 20% improvement in total profit, and with another, a significant reduction in drawdown. I recommend this for anyone truly serious about optimizing their strategy.”&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Try the Cruncher&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Backtest Looks Great - What Could Possibly Go Wrong?</title>
        <link href="https://davemabe.com/the-backtest-looks-great-what-could-possibly-go-wrong"/>
        <id>https://davemabe.com/the-backtest-looks-great-what-could-possibly-go-wrong</id>
        <published>2025-07-07T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss all the pitfalls that can happen when you go from a backtest that looks awesome to trading it live.&lt;/p&gt;&lt;p&gt;Topics include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Missing the big winners&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Slippage on entry&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Slippage on exit&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Buying power issues&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why you&amp;#039;re especially susceptible to disappointment&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more...&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The more you understand the causes of the backtest/live trading shortfall, the better strategy you can create.&lt;/p&gt;&lt;p&gt;And your expectations get more well-calibrated.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/your-backtest-looks-great-what-could-possibly-go-wrong&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Constrain Yourself</title>
        <link href="https://davemabe.com/constrain-yourself"/>
        <id>https://davemabe.com/constrain-yourself</id>
        <published>2025-07-04T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;blockquote&gt;&lt;p&gt;&amp;quot;The right constraints can lead to your very best work.&amp;quot; - Austin Kleon&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;That&amp;#039;s a quote I love from Austin Kleon in his book &lt;a href=&quot;https://www.amazon.com/dp/1523516321&quot;&gt;Steal Like an Artist&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Artists and traders have much in common.&lt;/p&gt;&lt;p&gt;Uniqueness and success are highly correlated in both fields.&lt;/p&gt;&lt;p&gt;Great traders and artists don&amp;#039;t emerge from the womb with an innate ability.&lt;/p&gt;&lt;p&gt;They have a dedication to their process that creates uniqueness.&lt;/p&gt;&lt;p&gt;If you find yourself bouncing from strategy to strategy because they don&amp;#039;t seem to work, you&amp;#039;re very likely spreading yourself too thin.&lt;/p&gt;&lt;p&gt;Figure out how to go &amp;quot;an inch wide, but a mile deep,&amp;quot; as John Arnold claimed was a huge part of his success.  (He&amp;#039;s generally known as the best energy trader of all time.)&lt;/p&gt;&lt;p&gt;It almost doesn&amp;#039;t matter the strategy you pick, but when you constrain yourself to a small area, you&amp;#039;ll almost guarantee you&amp;#039;ll end up with something unique the deeper you dig.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s &lt;a href=&quot;https://conversationswithtyler.com/episodes/john-arnold/&quot;&gt;the podcast with John Arnold&lt;/a&gt; where he discussed the constraints he went out of his way to apply.&lt;/p&gt;&lt;p&gt;What constraints can you apply to yourself to lead to your best trading?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Often Do You Re-Optimize?</title>
        <link href="https://davemabe.com/how-often-do-you-re-optimize"/>
        <id>https://davemabe.com/how-often-do-you-re-optimize</id>
        <published>2025-07-03T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another question from &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher&lt;/a&gt; user Chris B. (name used with permission).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Chris B.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;How often do you re-optimize a strategy?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;First, a confession.  Like any good programmer, I&amp;#039;m lazy.&lt;/p&gt;&lt;p&gt;Hopefully in the best sense of the word.&lt;/p&gt;&lt;p&gt;What I mean by that is I try to do a little more work in the present to save work for myself in the future.&lt;/p&gt;&lt;p&gt;That&amp;#039;s especially true for backtesting and optimizing trading strategies.&lt;/p&gt;&lt;p&gt;Optimizing a strategy is hard! You have to spend a lot of mental energy making decisions about the strategy.&lt;/p&gt;&lt;p&gt;The entire reason the Strategy Cruncher exists is to make optimizing strategies easier.&lt;/p&gt;&lt;p&gt;But the better you get at it, the more you separate yourself from other traders.&lt;/p&gt;&lt;p&gt;How often should you re-optimize a strategy?  As little as possible!&lt;/p&gt;&lt;p&gt;But that means you have to work harder when you optimize to make sure the strategy won&amp;#039;t require rework later.&lt;/p&gt;&lt;p&gt;With every decision you make about your strategy, you should have long-term robustness in mind. That is, when deciding between two rules to apply to your strategy, pick the one that&amp;#039;s most likely to have staying power.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easier said than done, but over time, you&amp;#039;ll get better and better at creating robust strategies in the first place, so you DON&amp;#039;T have to re-optimize.&lt;/p&gt;&lt;p&gt;Thanks for the question, Chris B.!  (Look for another question from Chris tomorrow.)&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Enjoy the holiday weekend!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Optimize on Entire Backtest?</title>
        <link href="https://davemabe.com/optimize-on-entire-backtest"/>
        <id>https://davemabe.com/optimize-on-entire-backtest</id>
        <published>2025-07-02T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next question from Chris B. (name used with permission), who&amp;#039;s using the Strategy Cruncher to create an intraday system that trades SPY (&lt;a href=&quot;https://www.davemabe.com/strategy-cruncher-questions/&quot;&gt;details here&lt;/a&gt;).&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Chris B.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do you include the entire history of a backtest or a more recent subset?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Backtesting is a confidence builder.&lt;/p&gt;&lt;p&gt;You&amp;#039;re building confidence in your idea for the trader you are now, which is really valuable, but it&amp;#039;s not the most valuable part.&lt;/p&gt;&lt;p&gt;Your backtest and the decisions you make about rules for your strategy are really for your future self, when the strategy is in a drawdown and you&amp;#039;re wondering whether to give it up or not.&lt;/p&gt;&lt;p&gt;Every trader who ever quit did so during a drawdown.&lt;/p&gt;&lt;p&gt;And they quit because they didn&amp;#039;t have confidence in their system to keep trading through the drawdown.&lt;/p&gt;&lt;p&gt;The backtesting decisions you make now will help you have confidence during that drawdown.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re in a drawdown, do you think you&amp;#039;ll say to yourself, &amp;quot;Man, I wish I would have backtested on a smaller set of trades.&amp;quot;&lt;/p&gt;&lt;p&gt;Of course not!&lt;/p&gt;&lt;p&gt;You&amp;#039;ll want to have as much perspective as you can have.&lt;/p&gt;&lt;p&gt;So I start with the entire history that I can feel confident in.&lt;/p&gt;&lt;p&gt;For a strategy like Chris&amp;#039; that trades a single instrument, you&amp;#039;re going to have to go back a long time to get the number of trades required for confidence.&lt;/p&gt;&lt;p&gt;For a strategy that trades many instruments (or the entire market), you don&amp;#039;t have to go back too far to create a backtest with a lot of trades.&lt;/p&gt;&lt;p&gt;So my default approach is to gather as much data as possible.&lt;/p&gt;&lt;p&gt;You can always trim down or exclude a period (like we discussed yesterday).&lt;/p&gt;&lt;p&gt;Great question, Chris B. - thanks for sharing.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. The Strategy Cruncher is like having a cheat code for your trading strategy.  Here&amp;#039;s what Matt H. said about the cruncher:&lt;/p&gt;&lt;p&gt;&amp;quot;The cruncher suggested a few filters for my strategy. I plugged them in, ran the back test and WOW! 20% improvement in total profit, and with another, a significant reduction in drawdown. I recommend this for anyone truly serious about optimizing their strategy.&amp;quot;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Try the Cruncher&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategy Cruncher Questions</title>
        <link href="https://davemabe.com/strategy-cruncher-questions"/>
        <id>https://davemabe.com/strategy-cruncher-questions</id>
        <published>2025-07-01T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;For the next few days, I&amp;#039;ll be answering an excellent set of questions from a &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher&lt;/a&gt; user named Chris B., who agreed to share these with the list.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the first question:&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Chris B.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I&amp;#039;ve been playing with the Strategy Cruncher with an intraday system I&amp;#039;m running that I&amp;#039;ve backtested using RealTest.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The system trades SPY intraday, long and short.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;I have data from 2001 through the present.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;In-sample is 6/2002 through 12/2014.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Out-of-sample is 1/2015 through today.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;I separated long and short trades into two CSVs.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I ran the in-sample set of the short side of the strategy through the cruncher with the aggression factor set at 33 with 1456 trades and this was the best chart.&lt;/p&gt;&lt;p&gt;I noticed all the charts had accelerating equity curves during 2008 so I asked myself how might SC suggest values &lt;em&gt;without that year of trades&lt;/em&gt;. I ran the short trades through SC again without 2008, which produced this chart:&lt;/p&gt;&lt;p&gt;Both filter values for Dojiness clearly improve the system in terms of CAR and MDD with about 40% fewer trades.&lt;/p&gt;&lt;p&gt;Does eliminating that period of trades make sense, or is that just overfitting?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave&lt;/strong&gt;:&lt;/p&gt;&lt;p&gt;This is a great question, Chris.  I would not consider this overfitting for a few reasons.&lt;/p&gt;&lt;p&gt;It would be one thing if the period you remove from the backtest is worse than the overall backtest, but this period &lt;strong&gt;improves the strategy&lt;/strong&gt;. That difference is significant - if the period made the strategy worse overall and you removed it for testing purposes, then I would say that IS more likely to be curve-fitting.&lt;/p&gt;&lt;p&gt;I also consider the period itself.  Is it a significant event that you can identify in a way that makes sense?  Yes, this is the 2008 financial crisis.&lt;/p&gt;&lt;p&gt;How likely is this type of event to recur in the future? Sure, you can imagine a scenario where it might occur again, but it&amp;#039;s not very likely!&lt;/p&gt;&lt;p&gt;This strategy should be optimized for the &amp;quot;normal&amp;quot; periods, which are the vast majority of the time covered by Chris&amp;#039; backtest.&lt;/p&gt;&lt;p&gt;The equity curve for the rule the cruncher found looks much smoother by looking at just the &amp;quot;normal&amp;quot; periods.&lt;/p&gt;&lt;p&gt;I don&amp;#039;t create strategies that wait around for these black swan-type events that very likely will never come about again. And if it does recur, there&amp;#039;s certainly no guarantee they&amp;#039;ll behave the same way.&lt;/p&gt;&lt;p&gt;I think this is a great example of what I discussed in &lt;a href=&quot;https://www.davemabe.com/?s=curve+fitting&quot;&gt;the Curve Fitting series&lt;/a&gt; a few weeks ago. Traders get stuck with this type of decision for fear of the curve-fitting boogeyman.&lt;/p&gt;&lt;p&gt;Does this mean you can exclude whatever periods you want to make your strategy look better? Of course not.&lt;/p&gt;&lt;p&gt;But I think it&amp;#039;s totally legitimate to remove this period in exactly the way Chris did.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll tackle another one of his questions tomorrow. Thanks, Chris!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Would you like to improve your strategy by finding ways to make the same or more profit with way fewer trades without curve-fitting? Lots of serious traders are using the Strategy Cruncher to create their own trading strategies. If you have a backtest, you should be crunching.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Try the Strategy Cruncher&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">When Is Your Strategy Good Enough To Trade?</title>
        <link href="https://davemabe.com/when-is-your-strategy-good-enough-to-trade"/>
        <id>https://davemabe.com/when-is-your-strategy-good-enough-to-trade</id>
        <published>2025-06-30T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you have perfectionist tendencies, it&amp;#039;s easy to get stuck in &amp;quot;backtest world&amp;quot;, thinking your strategy could just be a little bit better before trading it live.&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss when your strategy is good enough to take the next step.&lt;/p&gt;&lt;p&gt;Topics include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Backtest equity curves as drawdown detectors&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The better your process for logging trades, the quicker you can go live with a strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Going live is the beginning, not the end, of your learning&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You know what a post-mortem is, but what&amp;#039;s a &lt;strong&gt;pre-mortem&lt;/strong&gt;, and how can it help?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;and much more&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/when-is-your-strategy-good-enough&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. As recognition of our 50th episode (!!) of Line Your Own Pockets, we&amp;#039;d love to hear questions from YOU to answer on the podcast.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Do you have a trading question that would make a good topic?  Hit reply and let me know.&lt;/strong&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Another Column for your Backtest</title>
        <link href="https://davemabe.com/another-column-for-your-backtest"/>
        <id>https://davemabe.com/another-column-for-your-backtest</id>
        <published>2025-06-27T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;An astute reader caught my mistake in &lt;a href=&quot;https://www.davemabe.com/a-column-for-your-backtest/&quot;&gt;yesterday&amp;#039;s email on dojiness&lt;/a&gt;, where I said I would be sharing two column ideas, but only mentioned one.  (Good catch! See - I never use AI for these messages. Note the text in the footer below.)&lt;/p&gt;&lt;p&gt;The second column I like to use as a pair with Dojiness is &lt;strong&gt;Close Position&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you aren&amp;#039;t familiar with the dojiness concept, go back and read yesterday&amp;#039;s email.&lt;/p&gt;&lt;p&gt;When you think about it, you&amp;#039;ll notice that dojiness describes just part of the full picture of a candle.&lt;/p&gt;&lt;p&gt;A candle could be a perfect doji, but it could open and close anywhere in its range.&lt;/p&gt;&lt;p&gt;That&amp;#039;s where the Close Position comes in.&lt;/p&gt;&lt;p&gt;The formula is similar to Dojiness:&lt;/p&gt;&lt;p&gt;&lt;code&gt;Close Position = (Close - Low) / (High - Low)&lt;/code&gt;&lt;/p&gt;&lt;p&gt;The value ranges from 0 to 1, where 0 means the candle closed exactly at the low and 1 means it closed exactly at the high.&lt;/p&gt;&lt;p&gt;I use this column in all sorts of situations, especially the ones I listed yesterday for Dojiness:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Applied to yesterday’s daily candle in an intraday strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Applied to the most recent candle before your trading signal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Applied to today’s opening range candle&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Applied to recent daily action&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The other situation where I&amp;#039;ll often use this is the position of the entry price of a trade in today&amp;#039;s range.&lt;/p&gt;&lt;p&gt;Some of you might be thinking:&lt;/p&gt;&lt;p&gt;&amp;quot;Candlestick patterns? Those are complete gobbledygook.  There&amp;#039;s no edge when a candle makes a doji.&amp;quot;&lt;/p&gt;&lt;p&gt;And you&amp;#039;re right - that alone won&amp;#039;t make a strategy, but it also &lt;strong&gt;completely misses the point&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;More on that next week.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;HOLIDAY ALERT&lt;/strong&gt; - a week from today is July 4th, and the market is closed.  Plan something fun for the long weekend!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Column for your Backtest</title>
        <link href="https://davemabe.com/a-column-for-your-backtest"/>
        <id>https://davemabe.com/a-column-for-your-backtest</id>
        <published>2025-06-26T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here are two columns from my column library that most traders aren&amp;#039;t capturing in their backtests.&lt;/p&gt;&lt;p&gt;I created these many years ago, and they&amp;#039;ve been in every backtest I&amp;#039;ve run since.&lt;/p&gt;&lt;p&gt;The first is what I call &lt;strong&gt;dojiness&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;You probably know what a doji candle is.&lt;/p&gt;&lt;p&gt;If you look up the definition of a doji you&amp;#039;ll find a lot of disagreement about what is or isn&amp;#039;t a match - which is pointless.&lt;/p&gt;&lt;p&gt;Anytime you try to reduce some factor to a binary yes/no, that should be a red flag.&lt;/p&gt;&lt;p&gt;This is why I created the dojiness concept.  It describes &lt;strong&gt;the degree&lt;/strong&gt; to which a candle is a doji.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the definition:&lt;/p&gt;&lt;p&gt;&lt;code&gt;dojiness = (Close - Open) / (High - Low)&lt;/code&gt;&lt;/p&gt;&lt;p&gt;The range of values varies from -1 to 1, with zero being a &amp;quot;perfect&amp;quot; doji (where the open price equals the close price).&lt;/p&gt;&lt;p&gt;A value of 1 means the candle has no wicks and is perfectly green.&lt;/p&gt;&lt;p&gt;A value of -1 means the candle has no wicks and is perfectly red.&lt;/p&gt;&lt;p&gt;When applied thoughtfully, this column often appears as important when I run the Strategy Cruncher on my backtests.&lt;/p&gt;&lt;p&gt;In fact, in one of my strategies, the value of this tells me whether I should go long or short (pretty dang predictive!)&lt;/p&gt;&lt;p&gt;Here are situations where it might be useful in your strategy:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Applied to yesterday&amp;#039;s daily candle in an intraday strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Applied to the most recent candle before your trading signal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Applied to today&amp;#039;s opening range candle&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Applied to recent daily action&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Like any indicator, it&amp;#039;s not a silver bullet, but with some creativity, you can apply it to a strategy in a way that&amp;#039;s predictive.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;Question: Are you an Amibroker user?&lt;/strong&gt;  I&amp;#039;m looking for some volunteers to beta test something I&amp;#039;m working on. Hit reply and let me know if you&amp;#039;re interested.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">DAS Trade Exports</title>
        <link href="https://davemabe.com/das-trade-exports"/>
        <id>https://davemabe.com/das-trade-exports</id>
        <published>2025-06-25T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I know several of you trade through DAS Trader, so I wanted to make you aware of a new feature I requested that the good folks at DAS have implemented.&lt;/p&gt;&lt;p&gt;There&amp;#039;s now a setting that can be used to automatically export your executions to a CSV file regularly.&lt;/p&gt;&lt;p&gt;IB&amp;#039;s TWS has had this feature forever, &lt;a href=&quot;https://www.davemabe.com/automate-trade-exports-from-tws/&quot;&gt;which makes automated reporting much easier&lt;/a&gt;.  I turned this feature on in 2016, so I have a record of every trade I&amp;#039;ve made for almost a decade, categorized by strategy (using the important &lt;a href=&quot;https://interactivebrokers.github.io/tws-api/classIBApi_1_1Order.html#a9aa003d6c9f80b79d822a426e0fd5f5b&quot;&gt;Order Reference&lt;/a&gt; field).&lt;/p&gt;&lt;p&gt;You can now turn this on in DAS Trader as of version 5.8.1.3.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the configuration screen, which you can get to by going to Setup, Other Configuration, then scrolling down to the bottom:&lt;/p&gt;&lt;p&gt;The executions get saved to the folder you specify in a file called Trades.csv.  Currently, that file gets overwritten each day, so you&amp;#039;ll need to copy it, unfortunately.&lt;/p&gt;&lt;p&gt;They will fix that in a release soon, so it will automatically write to a new file each day.&lt;/p&gt;&lt;p&gt;Good record keeping is essential to trading well (details matter!), so I&amp;#039;m happy DAS added this functionality.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Current Bottleneck</title>
        <link href="https://davemabe.com/the-current-bottleneck"/>
        <id>https://davemabe.com/the-current-bottleneck</id>
        <published>2025-06-24T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Today, I just have a quick question for you.&lt;/p&gt;&lt;p&gt;Look back at your trading results from last year and find your total net profit for the year.&lt;/p&gt;&lt;p&gt;Assuming it&amp;#039;s positive, take that number and add a zero to it. (Multiply by 10)&lt;/p&gt;&lt;p&gt;What&amp;#039;s stopping that new number from being your total net profit this year?&lt;/p&gt;&lt;p&gt;You might be thinking &amp;quot;more buying power,&amp;quot; but in my experience, that&amp;#039;s never the current bottleneck.&lt;/p&gt;&lt;p&gt;Hit reply and let me know - thanks in advance!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Key to Backtesting: Your Library of Columns</title>
        <link href="https://davemabe.com/the-key-to-backtesting-your-library-of-columns"/>
        <id>https://davemabe.com/the-key-to-backtesting-your-library-of-columns</id>
        <published>2025-06-23T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This week on Line Your Own Pockets, we discuss how to add columns to your backtest. This is the second episode in a series on creating profitable strategies using backtesting.&lt;/p&gt;&lt;p&gt;We review:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How most traders backtest the wrong way&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to add columns to your backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What columns make the most sense&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How your &amp;quot;library of columns&amp;quot; gets more and more valuable over time&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/the-key-to-backtesting-your-library-of-columns&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Add Predictive Columns</title>
        <link href="https://davemabe.com/how-to-add-predictive-columns"/>
        <id>https://davemabe.com/how-to-add-predictive-columns</id>
        <published>2025-06-20T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A trader asked me recently how he could set up his backtest to improve his strategy.&lt;/p&gt;&lt;p&gt;He had added some columns, and while some were modestly predictive, none were as predictive as the &lt;a href=&quot;https://www.davemabe.com/the-best-columns-are/&quot;&gt;Yesterday&amp;#039;s Change from Open % example&lt;/a&gt; from one of my strategies that I posted recently.&lt;/p&gt;&lt;p&gt;Here was my suggestion to him:&lt;/p&gt;&lt;hr&gt;&lt;p&gt;The thing to focus on is adding features (stat-speak for &amp;quot;columns&amp;quot;) that are highly likely to have predictive value on your original signal in the strategy.&lt;/p&gt;&lt;p&gt;Think about your signal and make sure you&amp;#039;ve got everything about it covered in a column in the backtest.&lt;/p&gt;&lt;p&gt;For example, let&amp;#039;s say your strategy enters long on a gap down today. I&amp;#039;d make sure I had the following data points in the backtest as columns:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;the gap in terms of ATR&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;yesterday&amp;#039;s gap in terms of ATR&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;yesterday&amp;#039;s change&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;yesterday&amp;#039;s close in its range&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;yesterday&amp;#039;s volume compared to normal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;today&amp;#039;s open as a position in yesterday&amp;#039;s range&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;pre market range&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;today&amp;#039;s open as a position in today&amp;#039;s pre market range&lt;br&gt;etc…&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Note that the further away a column is from describing your signal, the less predictive it will be. In our example, the gap from two days ago might be only very slightly predictive, so the improvements you get from it would likely be minor.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Feature selection is hard!&lt;/p&gt;&lt;p&gt;It&amp;#039;s worth thinking deeply about, though, because good, predictive columns pay off quickly in improvements to your strategy.&lt;/p&gt;&lt;p&gt;But more importantly, they provide aha moments that you can use to improve every strategy you create in the future as well.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Avoid Windows Entirely?</title>
        <link href="https://davemabe.com/avoid-windows-entirely"/>
        <id>https://davemabe.com/avoid-windows-entirely</id>
        <published>2025-06-19T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Fellow trader Randall T. replied to &lt;a href=&quot;https://www.davemabe.com/how-to-deal-with-windows-updates/&quot;&gt;my original post on avoiding Windows Updates&lt;/a&gt;. Not only does he avoid the updates, but he also avoids Windows &lt;em&gt;entirely&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s Randall&amp;#039;s response with a link to his tutorial on giving Linux a spin as a desktop computer (as opposed to simply a headless server, which I&amp;#039;m already a huge fan of).  (Name and response posted with permission.)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Randall T.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I hope all is well. I&amp;#039;ve been running Linux as my sole OS since 2010 and miss Windows like the common cold. When I am not running native Linux applications (e.g., TradingView, Thinkorswim, Trader Workstation), I run my Windows applications such as Excel in Crossover which spoofs the Windows environment so that they run natively. In the rare case that I need a true Windows environment, I run Windows as just another application within VirtualBox.&lt;/p&gt;&lt;p&gt;This way, I retain control of my computer at all times. I started 15 years ago with Ubuntu (which is on the Debian evolutionary branch) and have moved to Linux Mint, which is also on the same branch.&lt;/p&gt;&lt;p&gt;I strongly recommend giving it a look!&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Here&amp;#039;s a link to Randall&amp;#039;s tutorial on &lt;a href=&quot;https://medium.com/@rthomas_40287/installing-linux-mint-21-3-with-the-mate-desktop-1f942b532c7a&quot;&gt;using Linux Mint as a desktop&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;This is a step too far for me due to the custom applications I run for my trading business, but I&amp;#039;m sure other readers will find this interesting.&lt;/p&gt;&lt;p&gt;Thanks for sending this, Randall!&lt;/p&gt;&lt;p&gt;&lt;strong&gt;QUESTION&lt;/strong&gt;: Do any other traders out there use non-Windows environments? I&amp;#039;d love to hear more about your setup. If there&amp;#039;s enough response, I&amp;#039;ll summarize it in a message to the list.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Combine Long and Short Strategies to Optimize?</title>
        <link href="https://davemabe.com/combine-long-and-short-strategies-to-optimize"/>
        <id>https://davemabe.com/combine-long-and-short-strategies-to-optimize</id>
        <published>2025-06-18T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A new Strategy Cruncher user, Dave P, asked this excellent question about whether to combine long and short versions of a strategy for optimizing or to keep them separate (posting with permission):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Dave P:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Thinking ahead to other mean reversion strategies that I am running, I wanted to get your input on how to approach Strategy Cruncher for long/short strategies.  Do you recommend running both sets of trades (long &amp;amp; short) through Strategy Cruncher at the same time?  Or, do you recommend splitting into separate trade lists (long only, short only) prior to running through the Cruncher?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;First off, I love how Dave has taken one idea and created two strategies from it.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not always the case, but when you find edge in one direction (long), you can often find edge in the opposite direction as well.&lt;/p&gt;&lt;p&gt;It is usually not a simple flip of the strategy - usually, there are some tweaks to be done in either direction.&lt;/p&gt;&lt;p&gt;For that reason, my default approach is to treat them separately - as two distinct strategies.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll run each of them through the Cruncher separately to optimize them.&lt;/p&gt;&lt;p&gt;There is a situation where I&amp;#039;ll combine them, though.&lt;/p&gt;&lt;p&gt;If there&amp;#039;s a situation where the strategy is already low on trades - that is, the sample of trades is low enough that I feel like I can&amp;#039;t get much confidence in the data.&lt;/p&gt;&lt;p&gt;I have had situations where that&amp;#039;s the case, and I&amp;#039;ll combine long and short into the same set in order to create a larger set of trades that I feel better about drawing conclusions from.&lt;/p&gt;&lt;p&gt;Combining them works best in strategies where both directions are more equivalent.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll also add columns that work in both directions.&lt;/p&gt;&lt;p&gt;For example, instead of just a column for Gap Percent, I&amp;#039;ll add a column for the &lt;strong&gt;absolute value&lt;/strong&gt; of Gap Percent.&lt;/p&gt;&lt;p&gt;Optimizing on Gap Percent across long and short strategies doesn&amp;#039;t make sense, but the absolute value of Gap Percent is absolutely valid and likely to be identified as predictive.&lt;/p&gt;&lt;p&gt;See this post from several weeks ago where I show a more detailed example:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/how-to-make-your-strategy-more-predictive/&quot;&gt;How To Make Your Strategy More Predictive&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Great question, Dave P., and thanks for sharing it with the list!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Clever Way to Avoid Windows Updates</title>
        <link href="https://davemabe.com/a-clever-way-to-avoid-windows-updates"/>
        <id>https://davemabe.com/a-clever-way-to-avoid-windows-updates</id>
        <published>2025-06-17T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A few days ago, I posted &lt;a href=&quot;https://www.davemabe.com/another-way-to-deal-with-windows-updates/&quot;&gt;a method to push off the Windows Updates&lt;/a&gt; for up to several days that a reader suggested. Another reader, Ishmeet S., responded with a method he uses to push the updates out for... 25 years (!!) (name used with permission).&lt;/p&gt;&lt;p&gt;For normal Windows users, these unscheduled Windows Updates are a minor annoyance. For traders using software to enter trades, these updates are very costly!&lt;/p&gt;&lt;p&gt;When you&amp;#039;re trading with a strong edge, it pays to avoid anything that prevents you from executing your trades.&lt;/p&gt;&lt;p&gt;Ishmeet does something clever to push the updates further than Windows deems appropriate with these steps:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Sets his system clock to a date way in the future (the year 2050 or beyond)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Pushes the Windows Updates to the furthest date possible&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Sets his system clock back to the current date&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I&amp;#039;ve verified this works - see this screenshot:&lt;/p&gt;&lt;p&gt;The only issue with this is that if you restart your machine, the setting is forgotten, and you have to do it again.&lt;/p&gt;&lt;p&gt;That didn&amp;#039;t deter Ishmeet, though!&lt;/p&gt;&lt;p&gt;He created a script that automatically performs the steps above and used Windows Scheduled Tasks to execute it upon startup.&lt;/p&gt;&lt;p&gt;He graciously offered to share the script with other readers.  It modifies the Windows registry, so I&amp;#039;m not linking to the script directly here, but if you&amp;#039;re interested, hit reply and I&amp;#039;ll send it to you.&lt;/p&gt;&lt;p&gt;Thanks for sharing this clever solution, Ishmeet!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are there any DAS users out there who use the Trade Signal feature to generate alerts? I&amp;#039;m working on something you might be interested in. If you&amp;#039;re interested in beta testing it, hit reply and let me know how you&amp;#039;re using the Trade Signal feature.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You're Probably Backtesting Wrong</title>
        <link href="https://davemabe.com/youre-probably-backtesting-wrong-2"/>
        <id>https://davemabe.com/youre-probably-backtesting-wrong-2</id>
        <published>2025-06-16T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we&amp;#039;re starting a series on creating your own profitable trading strategy using backtesting.&lt;/p&gt;&lt;p&gt;We review how most traders start backtesting in the most inefficient way possible.&lt;/p&gt;&lt;p&gt;Topics include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The mistake almost all traders make when they start backtesting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why the &amp;quot;guess and check&amp;quot; approach is like shooting in the dark&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to take your backtesting from slingshot to sniper rifle&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What your very first backtest of a strategy should accomplish (you shouldn&amp;#039;t be shooting for your final version right away!)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;If you&amp;#039;ve ever backtested or are looking to get started, this series of episodes is for you.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/youre-probably-backtesting-wrong&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;HOLIDAY REMINDER&lt;/strong&gt;: This Thursday (6/19) is the Juneteenth holiday, and the US markets are closed, only to reopen the next day for Options Expiration. It&amp;#039;s an odd week, so plan something fun for Thursday (Joan and I are having lunch with some good friends), but don&amp;#039;t assume Friday will be a snoozer since it&amp;#039;s between a summer holiday and the weekend.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Trade Through a Drawdown</title>
        <link href="https://davemabe.com/how-to-trade-through-a-drawdown"/>
        <id>https://davemabe.com/how-to-trade-through-a-drawdown</id>
        <published>2025-06-13T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Is there anything more painful in trading than a drawdown?&lt;/p&gt;&lt;p&gt;I often tell people that trading is like working on a &lt;strong&gt;200%&lt;/strong&gt; commission.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve put a lot of work into your strategy, and then not only could you not have anything to show for it, but you could be worse off than when you started!&lt;/p&gt;&lt;p&gt;There&amp;#039;s no question about it - drawdowns &lt;strong&gt;suck&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;But to succeed in the long run, you have to find a way to deal with them.&lt;/p&gt;&lt;p&gt;And that starts well before you pull the trigger on your first order to trade a strategy.&lt;/p&gt;&lt;p&gt;Every decision you make about what filters to apply to your strategy, what position sizing algorithm to use, and how frequently the trades occur - everything - affects the types of drawdowns you&amp;#039;ll see.&lt;/p&gt;&lt;p&gt;Drawdowns are when traders quit; so it should be at the forefront of your mind in every step of creating your strategy.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not &lt;strong&gt;IF&lt;/strong&gt; a drawdown will happen in your strategy, it&amp;#039;s &lt;strong&gt;WHEN&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re surprised by a drawdown when trading live, then you haven&amp;#039;t thought deeply enough when you created your strategy to begin with.&lt;/p&gt;&lt;p&gt;In my first really great trading years - the best years I&amp;#039;d had at the time - there was a streak where I lost 14 trades in a row over the course of a week.&lt;/p&gt;&lt;p&gt;14 losing trades in a row at the biggest size I&amp;#039;d traded up until that point.&lt;/p&gt;&lt;p&gt;It was terrible, but I was confident (though not 100% sure!) that the sky wasn&amp;#039;t falling and my strategy still had an edge when I zoomed out.&lt;/p&gt;&lt;p&gt;That&amp;#039;s why you have to look at the equity curve when making decisions about your strategy.&lt;/p&gt;&lt;p&gt;Boiling it down to the fanciest metric won&amp;#039;t work.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. If you&amp;#039;ve ever run a backtest, you&amp;#039;ll love the Strategy Cruncher.  It&amp;#039;s the tool I&amp;#039;ve used to gain confidence in my strategies to trade through drawdowns.  If you&amp;#039;re still fiddling with Excel to improve your strategy, do yourself a favor and check it out.&lt;/p&gt;&lt;p&gt;This is the last chance for the early-bird discount for the Strategy Cruncher! Use promo code &lt;strong&gt;EARLYCRUNCHER&lt;/strong&gt; to get 50% off the subscription forever.&lt;/p&gt;&lt;p&gt;The price doubles this coming Sunday at 11:59pm ET.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Learn About the Strategy Cruncher&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Story an Equity Curve Tells</title>
        <link href="https://davemabe.com/the-story-an-equity-curve-tells"/>
        <id>https://davemabe.com/the-story-an-equity-curve-tells</id>
        <published>2025-06-12T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The most important metric you should use to evaluate your strategies isn&amp;#039;t a metric at all.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a picture.&lt;/p&gt;&lt;p&gt;The equity curve conveys so much more information than a single number.&lt;/p&gt;&lt;p&gt;It shows you where you&amp;#039;ll be overconfident and where you&amp;#039;ll feel like quitting.&lt;/p&gt;&lt;p&gt;Every trader who ever quit trading did so during a drawdown.&lt;/p&gt;&lt;p&gt;Why? Because they didn&amp;#039;t have enough confidence in their system to trade through it.&lt;/p&gt;&lt;p&gt;The equity curve is the first thing I look at when evaluating a strategy.&lt;/p&gt;&lt;p&gt;Because it&amp;#039;s showing you all the points in time when doubt will creep in, and you&amp;#039;ll feel like reducing your position size.&lt;/p&gt;&lt;p&gt;The hardest part of trading is trading through drawdowns.&lt;/p&gt;&lt;p&gt;Evaluating a strategy using a single metric (or even a few metrics) hides all the important details.&lt;/p&gt;&lt;p&gt;The equity curve tells you a story - you should listen to it!&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Announcement&lt;/strong&gt;: This coming Monday I&amp;#039;ll be doing a free webinar with Interactive Brokers called &lt;a href=&quot;https://www.interactivebrokers.com/campus/webinars/create-a-trading-strategy-that-can-work/?src=Mabe&quot;&gt;Creating a Trading Strategy That Can Work&lt;/a&gt; which will show you how to create your own profitable trading strategies.&lt;/p&gt;&lt;p&gt;It&amp;#039;s the proven process I&amp;#039;ve used for 20 years to create my strategies.&lt;/p&gt;&lt;p&gt;The webinar is on Monday, 6/16/2025 at 2pm ET. Even if you can’t attend live, go ahead and register so you can be notified of the recording and watch it afterward at your leisure.&lt;/p&gt;&lt;p&gt;This is not a sales call masquerading as a webinar – this is practical advice to apply to your own trading.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.interactivebrokers.com/campus/webinars/create-a-trading-strategy-that-can-work/?src=Mabe&quot;&gt;Register Here&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I hope to see you there.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Simple Strategy Metrics</title>
        <link href="https://davemabe.com/simple-strategy-metrics"/>
        <id>https://davemabe.com/simple-strategy-metrics</id>
        <published>2025-06-11T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In my post yesterday on &lt;a href=&quot;https://www.davemabe.com/when-is-a-strategy-good-enough/&quot;&gt;deciding when a strategy is good enough&lt;/a&gt;, you may have noticed how imprecise the language was:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Is the win rate &amp;quot;in the range&amp;quot;?&lt;/p&gt;&lt;p&gt;Is the profit factor &amp;quot;reasonable&amp;quot;?&lt;/p&gt;&lt;p&gt;Is the number of trades per day &amp;quot;sufficient&amp;quot;?&lt;/p&gt;&lt;p&gt;Is the equity curve &amp;quot;smooth enough&amp;quot;?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;In other contexts, I might refer to these ambiguous phrases as &lt;a href=&quot;https://en.wikipedia.org/wiki/Weasel_word&quot;&gt;weasel words&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Those who know me well might find this surprising - I routinely offer bets to people who use weasel words.&lt;/p&gt;&lt;p&gt;So why would I &lt;em&gt;purposefully&lt;/em&gt; have such vague rules about evaluating trading strategies?&lt;/p&gt;&lt;p&gt;Two reasons:&lt;/p&gt;&lt;p&gt;First, if you have precise, black and white rules about trading strategies, you ignore the trade-offs that come from relying too much on a particular metric.&lt;/p&gt;&lt;p&gt;Do you want a higher profit factor?  That almost always comes with a reduction in the number of trades in a strategy.&lt;/p&gt;&lt;p&gt;Second, it&amp;#039;s very easy to overlook a great strategy because it doesn&amp;#039;t fit one of your rigid rules.&lt;/p&gt;&lt;p&gt;Yesterday, I spoke to a trader who shared that he only considered strategies with a profit factor above 3.&lt;/p&gt;&lt;p&gt;That&amp;#039;s all well and good, but doing so ignores the boatload of profitable strategies with profit factors below 3.&lt;/p&gt;&lt;p&gt;What would a strategy just outside your range need to look like for you to trade it?&lt;/p&gt;&lt;p&gt;Next time, I&amp;#039;ll go over the most important &amp;quot;metric&amp;quot; of them all: the equity curve.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">When Is a Strategy Good Enough?</title>
        <link href="https://davemabe.com/when-is-a-strategy-good-enough"/>
        <id>https://davemabe.com/when-is-a-strategy-good-enough</id>
        <published>2025-06-10T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;re creating a trading strategy.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve made &lt;a href=&quot;https://www.davemabe.com/predictive-columns/&quot;&gt;some tough decisions&lt;/a&gt; about filtering using &lt;a href=&quot;https://www.davemabe.com/your-library-of-columns/&quot;&gt;your column library&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;It looks a lot better than when you started.&lt;/p&gt;&lt;p&gt;But is it good enough?&lt;/p&gt;&lt;p&gt;Should you continue optimizing or is it time to send it?&lt;/p&gt;&lt;p&gt;Most traders try to boil this down to a single metric, but doing that comes with too many tradeoffs.&lt;/p&gt;&lt;p&gt;It&amp;#039;s more art than science, but here are the things I look at:&lt;/p&gt;&lt;p&gt;Is the win rate in the range?  (Lower win rate strategies are more difficult to trade, so I take this into account.)&lt;/p&gt;&lt;p&gt;Is the profit factor reasonable?&lt;/p&gt;&lt;p&gt;Is the number of trades per day sufficient to keep me interested?&lt;/p&gt;&lt;p&gt;Is the equity curve smooth enough?&lt;/p&gt;&lt;p&gt;Below is an example of one where I&amp;#039;d try one more optimization step to try to improve it:&lt;/p&gt;&lt;p&gt;You might notice a lot of popular portfolio metrics that &lt;strong&gt;aren&amp;#039;t&lt;/strong&gt; in the list above.&lt;/p&gt;&lt;p&gt;Sharpe, Sortino, blah blah blah the list goes on.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll share tomorrow why I keep this list so simple.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Time is running out for the early-bird discount for the Strategy Cruncher.  Discount code &lt;strong&gt;EARLYCRUNCHER&lt;/strong&gt; will get you almost 50% off the price forever.  You&amp;#039;ll never see that price again after 6/15, so act now before it expires:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Start Using The Strategy Cruncher&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;quot;I&amp;#039;ve used Strategy Cruncher to increase size on trades where there&amp;#039;s a stronger edge. In one specific short strategy, I found that the edge increases linearly with a specific parameter. So I decided to scale up the size gradually as that parameter increases. The improvement in the backtest is significant, and now I just need to verify in live trading to verify the edge holds up, but I&amp;#039;m very confident.&amp;quot;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;-Fabrizio&lt;/em&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Real Traders Use AI to Trade</title>
        <link href="https://davemabe.com/how-real-traders-use-ai-to-trade"/>
        <id>https://davemabe.com/how-real-traders-use-ai-to-trade</id>
        <published>2025-06-09T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss ChatGPT and how traders can use it in their workflow.&lt;/p&gt;&lt;p&gt;I explain how I used it recently to help build the &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;Strategy Cruncher&lt;/a&gt; (and how much time it saved me!)&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How LLMs can help you learn something new&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What they are NOT good at&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How big a deal are the hallucinations?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Using ChatGPT to improve your trading business&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-real-traders-use-ai-to-trade&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Optimizing Your Strategy</title>
        <link href="https://davemabe.com/optimizing-your-strategy"/>
        <id>https://davemabe.com/optimizing-your-strategy</id>
        <published>2025-06-06T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I went over the details of how you can use columns in your backtest &lt;a href=&quot;https://www.davemabe.com/the-best-columns-are/&quot;&gt;to improve your strategy&lt;/a&gt; and showed a specific example from a strategy I&amp;#039;ve traded for years.&lt;/p&gt;&lt;p&gt;Today, I wanted to share some thoughts about my approach to optimizing my strategies.&lt;/p&gt;&lt;p&gt;Remember, you shouldn&amp;#039;t be shooting for your final version of the strategy with your first backtest.&lt;/p&gt;&lt;p&gt;Think of the first backtest as setting the stage for designing your final version.&lt;/p&gt;&lt;p&gt;As you begin optimizing your strategy from that first backtest, you&amp;#039;ll find large sets of unprofitable trades to eliminate using rules.&lt;/p&gt;&lt;p&gt;As you get closer to a version you&amp;#039;ll consider trading live, you should be looking for smaller and smaller subsets of poor trades to remove.&lt;/p&gt;&lt;p&gt;As a general rule of thumb, as the strategy gets more mature and is working in live trading, you&amp;#039;ll want to be stingier about adding rules since there&amp;#039;s a tradeoff with removing total profit.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Here&amp;#039;s the thing.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;You could keep optimizing down to a single trade in your backtest that you&amp;#039;re really confident (but not positive) would be profitable.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s not very valuable - imagine waiting a year for a single trade to come along - you better be ready!&lt;/p&gt;&lt;p&gt;So how do you know when a strategy is &amp;quot;ready&amp;quot;?&lt;/p&gt;&lt;p&gt;That will be the focus of this series next week.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Matt H. signed up for the Strategy Cruncher and sent this feedback to share:&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;quot;I ran the Strategy Cruncher on my strategy and it suggested a few filters.  I plugged them in, ran the back test and WOW!  A 20% improvement in total profit, and with another, a significant reduction in drawdown.  I recommend this for anyone truly serious about optimizing their strategy.&amp;quot;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;The early bird discount code to get 50% off the Strategy Cruncher is &lt;strong&gt;EARLYCRUNCHER&lt;/strong&gt; and expires 6/15, so &lt;a href=&quot;https://app.davemabe.com/buy/optimizer/&quot;&gt;act quickly&lt;/a&gt; before it’s too late.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Best Columns Are...</title>
        <link href="https://davemabe.com/the-best-columns-are"/>
        <id>https://davemabe.com/the-best-columns-are</id>
        <published>2025-06-05T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A few of you responded to my last post about some of &lt;a href=&quot;https://www.davemabe.com/filter-ideas/&quot;&gt;my favorite columns for creating strategies&lt;/a&gt; with the correct answer.&lt;/p&gt;&lt;p&gt;The best columns are &lt;strong&gt;normalized&lt;/strong&gt;. This is not the first time you&amp;#039;ve heard me &lt;a href=&quot;https://www.davemabe.com/?s=normalized&quot;&gt;use this term&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Why is it so important?&lt;/p&gt;&lt;p&gt;It&amp;#039;s only important if you want to create a strategy that&amp;#039;s actually profitable.  :-)&lt;/p&gt;&lt;p&gt;Normalized columns allow you to maximize the number of profitable trades in your trading system.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a real life example from a long strategy I&amp;#039;ve traded for almost 20 years now.&lt;/p&gt;&lt;p&gt;I followed the exact process I&amp;#039;ve outlined in recent posts:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The first backtest has very little filtering&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;I add my column library to the backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;When I put the backtest through the Strategy Cruncher, here&amp;#039;s what it identies as highly predictive:&lt;/p&gt;&lt;p&gt;From all the dozens of columns in my backtest, it tells me that &lt;strong&gt;Yesterday&amp;#039;s Change from the Open %&lt;/strong&gt; needs to be small:&lt;/p&gt;&lt;p&gt;(I&amp;#039;ve obscured the exact value it tells me is optimal to use.)&lt;/p&gt;&lt;p&gt;When I apply this one simple rule to the strategy, it reduces the number of trades, but the trades that remain are 20X more profitable.&lt;/p&gt;&lt;p&gt;Compare that to another column that a lot of traders try to make a rule from: &lt;strong&gt;Price&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When I run the Strategy Cruncher and tell it to look at Price, it gives me this:&lt;/p&gt;&lt;p&gt;It&amp;#039;s identified the optimal rule for Price, but there&amp;#039;s hardly any improvement in the strategy by applying it.&lt;/p&gt;&lt;p&gt;Notice where the lines end up.  The average profit per trade are essentially the same.&lt;/p&gt;&lt;p&gt;I could apply the rule based on Price and technically I&amp;#039;d improve the strategy slightly, but I would be removing a LOT of profit from the system for very little gain.&lt;/p&gt;&lt;p&gt;This is why it&amp;#039;s important to add normalized columns to your backtest.&lt;/p&gt;&lt;p&gt;It gives you a path to quickly increase the profitability of your strategy while removing as few trades as possible.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Interested in reducing your drawdowns?  Here&amp;#039;s how Isaac used the Strategy Cruncher to do exactly that:&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;quot;I started using Strategy Cruncher and it gave me some suggestions for improving my system that I hadn&amp;#039;t considered. It reduced my trade count without sacrificing system profitability and actually reduced drawdowns. The lower trade count means less fees and less required buying power as well. I ran the optimized version in a live account, side by side with my current strategy, and the improvements are very real.&amp;quot;&lt;/em&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Filter Ideas</title>
        <link href="https://davemabe.com/filter-ideas"/>
        <id>https://davemabe.com/filter-ideas</id>
        <published>2025-06-04T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last time, I shared a &lt;a href=&quot;https://www.davemabe.com/two-types-of-filters/&quot;&gt;way to logically classify filters&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;When creating intraday trading strategies, you should prefer* filters/data points that don&amp;#039;t change during the day.&lt;/p&gt;&lt;p&gt;It simplifies the problem - a LOT.&lt;/p&gt;&lt;p&gt;Here are some columns from my library that should be useful (RealTest users see P.S. below).&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Today&amp;#039;s Gap&lt;/strong&gt; (in percent or, better yet, in terms of ATR)&lt;/p&gt;&lt;p&gt;Anything related to yesterday&amp;#039;s action:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Yesterday&amp;#039;s range&lt;/strong&gt; in terms of ATR&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Yesterday&amp;#039;s volume&lt;/strong&gt; compared to normal&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Yesterday&amp;#039;s change&lt;/strong&gt; in terms of ATR&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Yesterday&amp;#039;s close position&lt;/strong&gt; within its range&lt;/p&gt;&lt;p&gt;Aside from these data points being &amp;quot;set&amp;quot; (don&amp;#039;t change), do you notice anything else similar about these?&lt;/p&gt;&lt;p&gt;Reply and let me know.&lt;/p&gt;&lt;p&gt;* Notice I said &amp;quot;prefer&amp;quot; and not &amp;quot;exclusively use&amp;quot;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Are you a RealTest user? If so, you&amp;#039;ll want to check out &lt;a href=&quot;https://app.davemabe.com/buy/optimizer&quot;&gt;the Strategy Cruncher&lt;/a&gt;.  All Strategy Cruncher users get access to my RealTest column library to use in their strategies.  Early-bird discount available until 6/14.  Reply if you want the code.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Two Types of Filters</title>
        <link href="https://davemabe.com/two-types-of-filters"/>
        <id>https://davemabe.com/two-types-of-filters</id>
        <published>2025-06-03T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several years ago, my daughters gave me a t-shirt for Christmas that they knew I&amp;#039;d like.&lt;/p&gt;&lt;p&gt;And it always comes to mind when I think about this concept.&lt;/p&gt;&lt;p&gt;The shirt said: &amp;quot;There are 10 types of people in the world, those who understand binary and those who don&amp;#039;t.&amp;quot;&lt;/p&gt;&lt;p&gt;(I wore that shirt until it was threadbare.)&lt;/p&gt;&lt;p&gt;Think about all the filters/columns you could consider using in a trading strategy.&lt;/p&gt;&lt;p&gt;There are perhaps hundreds that you could use.&lt;/p&gt;&lt;p&gt;It can be completely overwhelming - where do you even start?&lt;/p&gt;&lt;p&gt;I&amp;#039;ve found that the most useful way to think about filters is to classify them in one of two buckets.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;Filters where the values change during the day&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Filters where the values don&amp;#039;t change during the day&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Why is that important?&lt;/p&gt;&lt;p&gt;Go back to &lt;a href=&quot;https://www.davemabe.com/more-trades-than-you-expected/&quot;&gt;the backtesting puzzle&lt;/a&gt; I shared a few days ago.&lt;/p&gt;&lt;p&gt;If you use filters that &lt;strong&gt;don&amp;#039;t change during the day&lt;/strong&gt;, you avoid the conundrum outlined in that post.&lt;/p&gt;&lt;p&gt;You simplify the problem of creating a profitable trading strategy dramatically.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not always possible to exclusively use filters that stay constant during the day, but I always start with those because it reduces complexity.&lt;/p&gt;&lt;p&gt;Tomorrow I&amp;#039;ll share some specific examples of my favorite filters.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What Metric Should You Optimize On?</title>
        <link href="https://davemabe.com/what-metric-should-you-optimize-on"/>
        <id>https://davemabe.com/what-metric-should-you-optimize-on</id>
        <published>2025-06-02T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss a common question from systems traders:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;What metric should you be optimizing on?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I go over the 4-5 metrics I use and why trying to boil it down to a single metric is a form of &amp;quot;holy grail&amp;quot; searching.&lt;/p&gt;&lt;p&gt;I explain the definition of the &lt;strong&gt;equity curve quality&lt;/strong&gt; metric I use to evaluate equity curves.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit Factor&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win Rate&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Expectancy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Sortino&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Sharpe Ratio&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I completely ignore the last two metrics, and I explain why.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/what-metric-should-you-be-optimizing-for&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Another Way to Deal with Windows Updates</title>
        <link href="https://davemabe.com/another-way-to-deal-with-windows-updates"/>
        <id>https://davemabe.com/another-way-to-deal-with-windows-updates</id>
        <published>2025-05-30T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several readers responded to my post on &lt;a href=&quot;https://www.davemabe.com/how-to-deal-with-windows-updates/&quot;&gt;dealing with Windows Updates&lt;/a&gt;. One of my clients said his Windows machine rebooted even after installing the program that supposedly disables it.&lt;/p&gt;&lt;p&gt;Fellow reader &amp;quot;Another Brian&amp;quot; wrote in with his clever workflow for dealing with Windows Updates. (Posting with permission.)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Another Brian:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I set my updates to happen on the furthest out Saturday it offers, in the advanced settings.&lt;br&gt;I always leave my computer on, too.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Interesting, Brian. Are you referring to this setting? And do you reset this every time an update comes through? (see image below)&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Another Brian:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Yes, that’s it. I set the pause date to the furthest Saturday, and whenever I remember on a weekend, I’ll run the updates. Once that’s done, I reset it back to the furthest Saturday again. That way, if I happen to forget to update, the machine still will reboot over the weekend under that plan.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;You might like this approach, too.&lt;/p&gt;&lt;p&gt;I like it because you take back control - you can reboot on your schedule, and if you forget, you can re-arm your trading bot in plenty of time before the Monday morning trading session.&lt;/p&gt;&lt;p&gt;Thanks for the suggestion, Brian!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Monday is the day!  I&amp;#039;m excited to release the &lt;strong&gt;Strategy Cruncher&lt;/strong&gt; to those of you who have signed up for the early bird release.  If you want to be on the list, click here:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/strategy-cruncher-notification/&quot;&gt;SIGN UP FOR EARLY BIRD RELEASE&lt;/a&gt;&lt;/p&gt;&lt;p&gt;The feedback from the beta release has been excellent.  Here&amp;#039;s what one trader said:&lt;/p&gt;&lt;p&gt;&amp;quot;The Strategy Cruncher has completely transformed my trading experience. It has made trading more accessible, significantly less time-consuming, and much more enjoyable—all while improving my results.&amp;quot; - Brandon C.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Better Volatility Metric?</title>
        <link href="https://davemabe.com/better-volatility-metric"/>
        <id>https://davemabe.com/better-volatility-metric</id>
        <published>2025-05-29T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Matt H. responded to the &lt;a href=&quot;https://www.davemabe.com/predictive-columns/&quot;&gt;post on predictive columns&lt;/a&gt; and asked about ATR.  (Posting with permission)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Matt H.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Is there a NEXT level of standardization of a column of ATR vs. security&amp;#039;s typical ATR? Or is that a step too far vs. computing power?&lt;/p&gt;&lt;hr&gt;&lt;p&gt;If you allow yourself, you can conjure up a fancy, complex metric to describe anything.&lt;/p&gt;&lt;p&gt;But the K.I.S.S. principle is best here.&lt;/p&gt;&lt;p&gt;Simpler is typically better.&lt;/p&gt;&lt;p&gt;The volatility of a stock is probably the most important aspect to capture in your backtest.&lt;/p&gt;&lt;p&gt;It provides the basis for several other important columns in my column library, which I add to every backtest I run.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve used two different metrics over the years for &amp;quot;how much a stock typically moves.&amp;quot;&lt;/p&gt;&lt;p&gt;I mostly use ATR now because it&amp;#039;s so easily and widely available across most trading platforms.&lt;/p&gt;&lt;p&gt;Another one worth considering is the &lt;a href=&quot;https://www.trade-ideas.com/help/filter/VWV/&quot;&gt;Trade-Ideas Volatility metric&lt;/a&gt;, which is the average height of a 15-minute bar over the last several trading days.&lt;/p&gt;&lt;p&gt;If you think about it, this is highly correlated with ATR, but not perfectly.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t matter so much which one you choose, but pick one, keep it simple, and be consistent.&lt;/p&gt;&lt;p&gt;Thanks for the question, Matt!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. If you use Amibroker for backtesting and are interested in the code I use to simulate the Trade-Ideas Volatility, hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Backtesting Puzzle Explanation</title>
        <link href="https://davemabe.com/backtesting-puzzle-explanation"/>
        <id>https://davemabe.com/backtesting-puzzle-explanation</id>
        <published>2025-05-28T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a detailed explanation of what I&amp;#039;ve referred to as the &amp;quot;peek-a-boo trade&amp;quot; problem in backtesting.  (See the &lt;a href=&quot;https://www.davemabe.com/more-trades-than-you-expected/&quot;&gt;More Trades Than You Expected&lt;/a&gt; and the &lt;a href=&quot;https://www.davemabe.com/responses-to-more-trades-than-you-expected/&quot;&gt;responses&lt;/a&gt; posts for more background.)&lt;/p&gt;&lt;p&gt;You&amp;#039;re backtesting for new highs, and there are 900 trades in your backtest.&lt;/p&gt;&lt;p&gt;When you analyze the trades list, you notice that filtering out lower values for volume today improves the resulting trade set and removes 300 trades.&lt;/p&gt;&lt;p&gt;So you add a filter in your backtest that excludes new highs with volume today &amp;lt; X.&lt;/p&gt;&lt;p&gt;When you run a new backtest, you expect to find 600 trades, but you find over 700 trades.&lt;/p&gt;&lt;p&gt;Many traders see this, throw their hands up in the air, and assume the backtest software is somehow broken.&lt;/p&gt;&lt;p&gt;But the backtest is working fine - here&amp;#039;s what&amp;#039;s actually going on.&lt;/p&gt;&lt;p&gt;Take SBET yesterday.  It was running up all morning.  Because your strategy looks for new highs, your original backtest found the first one at 10:30am.  (See chart below)&lt;/p&gt;&lt;p&gt;If you apply a minimum volume today filter at 8.2M, the first instance at 10:30am is excluded, but the next one at 10:45am matches your rule set since volume today has increased by then to 9.7M (9.7 &amp;gt; 8.2).&lt;/p&gt;&lt;p&gt;You&amp;#039;ll still have a trade in SBET in your backtest, but the &lt;strong&gt;entry time will be later in the day&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;You thought you were excluding the SBET trade, but you were simply &lt;strong&gt;postponing it&lt;/strong&gt; in your backtest.&lt;/p&gt;&lt;p&gt;Add these all up in your backtest, and you&amp;#039;ll often end up with several more trades than you expected.&lt;/p&gt;&lt;p&gt;Over the coming days, I&amp;#039;ll share specific ways you can address this issue in your own backtests.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Responses to More Trades Than You Expected</title>
        <link href="https://davemabe.com/responses-to-more-trades-than-you-expected"/>
        <id>https://davemabe.com/responses-to-more-trades-than-you-expected</id>
        <published>2025-05-27T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;There were a couple of excellent responses to &lt;a href=&quot;https://www.davemabe.com/more-trades-than-you-expected/&quot;&gt;the backtesting puzzle I posted&lt;/a&gt; the other day. (Go back and read it first.)&lt;/p&gt;&lt;p&gt;First, Ken H. responded (used with permission) with an explanation that I wasn&amp;#039;t thinking of but is still perfectly valid:&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Ken H.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;More trades appeared due to freeing up capital by eliminating existing trades that tie up capital for too long. This means the system is generating multiple signals, and it&amp;#039;s important to add ranking criteria to execute on high-quality entry setups/signals. Also, it&amp;#039;s important to evaluate exit criteria and/or holding time for trades that stop performing.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Dave&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Nice response, Ken!  That isn&amp;#039;t what I had in mind, but that scenario could absolutely cause the situation I described.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ken H.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Nice challenge, let me try again. &lt;/p&gt;&lt;p&gt;Let&amp;#039;s say the system looks for continuation patterns and buys on new highs and generates the 900 trades.&lt;/p&gt;&lt;p&gt;I&amp;#039;m studying volume and market profile now and I find that continuation patterns are more reliable with above average volume, so applying an above average volume filter narrows down the outcome to 600 trades. When re-running the backtest with an above average volume filter, it produces 750 trades. &lt;/p&gt;&lt;p&gt;The system could be generating those additional/new trades in various other bars because it considers those other bars as new highs due to filtering out bars with low volume ones. I don&amp;#039;t know if there&amp;#039;s a technical term for this phenomenon.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Matt H. responded first, saying it could be look-ahead bias.  When I gave him a hint, he nailed it as well:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Matt H.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Well, entering a few bars after the excluded trade entry bar was skipped, but before the excluded trade finished its life cycle.  For example, if you have a timestop of 15 bars, and don&amp;#039;t enter on bar 1 because of the new filter is flagging false, but do on bar 4 or 5 because the filter becomes true.  You could end up with more entries than you expected.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Congrats to Ken H. and Matt H. for getting the right answer.&lt;/p&gt;&lt;p&gt;I don&amp;#039;t have a great name for this phenomenon, but I&amp;#039;ve used the term &amp;quot;peek-a-boo problem.&amp;quot;&lt;/p&gt;&lt;p&gt;Suggestions welcome!&lt;/p&gt;&lt;p&gt;I&amp;#039;ll show a real-life example that will demonstrate the issue clearly and then ways I deal with this issue in the coming days.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Far Back Should Your Backtest Look Good?</title>
        <link href="https://davemabe.com/how-far-back-should-your-backtest-look-good"/>
        <id>https://davemabe.com/how-far-back-should-your-backtest-look-good</id>
        <published>2025-05-26T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss a question from a trader I recently started coaching.&lt;/p&gt;&lt;p&gt;He had a backtest that looked great this year, but not so good before that.&lt;/p&gt;&lt;p&gt;His question was, basically, why should I care how the strategy performed before that?&lt;/p&gt;&lt;p&gt;This is a great question because it gets to the heart of why so many traders abandon strategies too early - or quit trading altogether.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The reason most traders give up on strategies&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trading through a drawdown&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why your &amp;quot;path to confidence&amp;quot; is so important for trading with size&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-far-back-should-your-backtest-look-good&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Deal with Windows Updates</title>
        <link href="https://davemabe.com/how-to-deal-with-windows-updates"/>
        <id>https://davemabe.com/how-to-deal-with-windows-updates</id>
        <published>2025-05-23T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Being forced to reboot your computer at an inopportune time is a pain.&lt;/p&gt;&lt;p&gt;Even worse is returning to your trading desk to a login screen because Windows &amp;quot;conveniently&amp;quot; updated itself while you were away.&lt;/p&gt;&lt;p&gt;Windows Updates have always been mildly annoying for everyone, but if you&amp;#039;re auto-trading, these unplanned reboots can be &lt;em&gt;expensive&lt;/em&gt; due to missed trades.&lt;/p&gt;&lt;p&gt;Traders using &lt;a href=&quot;https://www.davemabe.com/thetradeclient/&quot;&gt;my trade automation software&lt;/a&gt; know how expensive they can be.&lt;/p&gt;&lt;p&gt;Long-time friend of the list Maoxian wrote about this and a &lt;a href=&quot;https://www.maoxian.com/thoughts/how-to-stop-windows-from-updating-permanently&quot;&gt;solution he found to disable Windows Updates&lt;/a&gt; that actually works.&lt;/p&gt;&lt;p&gt;You should update Windows, so I&amp;#039;m not advocating disabling the updates and never doing it manually.&lt;/p&gt;&lt;p&gt;But this solution would allow you to do it on your schedule, not Microsoft&amp;#039;s.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">More Trades Than You Expected</title>
        <link href="https://davemabe.com/more-trades-than-you-expected"/>
        <id>https://davemabe.com/more-trades-than-you-expected</id>
        <published>2025-05-22T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;re backtesting an intraday trading strategy that trades new highs.&lt;/p&gt;&lt;p&gt;You find a column/filter that improves the results.&lt;/p&gt;&lt;p&gt;It eliminates about 1/3 of the trades - say, 300 of the original 900 in the trade set - but the average profit goes up... a lot.&lt;/p&gt;&lt;p&gt;So you apply the filter and re-run the backtest, expecting to see a trade set with 600 trades (900 - 300, of course.)&lt;/p&gt;&lt;p&gt;But to your surprise, you find there are &lt;strong&gt;over 700 trades&lt;/strong&gt; in the results.&lt;/p&gt;&lt;p&gt;When you look closer, you see some trades you thought would be removed, but they weren&amp;#039;t.&lt;/p&gt;&lt;p&gt;What&amp;#039;s going on?  Is the backtest broken?&lt;/p&gt;&lt;p&gt;Have you experienced this common problem?&lt;/p&gt;&lt;p&gt;Any guesses about what&amp;#039;s going on here? Hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Predictive Columns</title>
        <link href="https://davemabe.com/predictive-columns"/>
        <id>https://davemabe.com/predictive-columns</id>
        <published>2025-05-21T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;re trying to improve your trading strategy.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve added columns to your backtest.&lt;/p&gt;&lt;p&gt;You ran an optimization report in the Strategy Cruncher.&lt;/p&gt;&lt;p&gt;And it finds two rules you can apply to your strategy to improve the results.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a rule it finds for Column A.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a rule it finds for Column B.&lt;/p&gt;&lt;p&gt;Either rule &lt;strong&gt;could&lt;/strong&gt; be used to improve your strategy, but it should be obvious that one is superior.&lt;/p&gt;&lt;p&gt;It&amp;#039;s no accident.  Column A is a normalized data point, while Column B is not.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to see on the charts.  Column A has a crisp and consistent correlation.&lt;/p&gt;&lt;p&gt;But Column B is... &lt;em&gt;soggy&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;The more you compare charts like this, the more ideas you get for improving your trading strategy.&lt;/p&gt;&lt;p&gt;And the better you&amp;#039;ll get at capturing those ideas in &lt;a href=&quot;https://www.davemabe.com/your-library-of-columns/&quot;&gt;your column library&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Over time, your equity curve gets smoother, which gives you a path to increase your position size.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">All Columns Aren't Equal</title>
        <link href="https://davemabe.com/all-columns-arent-equal"/>
        <id>https://davemabe.com/all-columns-arent-equal</id>
        <published>2025-05-20T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve created your &lt;a href=&quot;https://www.davemabe.com/your-library-of-columns/&quot;&gt;library of columns&lt;/a&gt; for every backtest you run, but what columns should you include?&lt;/p&gt;&lt;p&gt;The good news is that the &lt;strong&gt;Strategy Cruncher&lt;/strong&gt; (coming soon, &lt;a href=&quot;https://www.davemabe.com/strategy-cruncher-notification/&quot;&gt;get notified here&lt;/a&gt;) can examine all of them and show you which ones are most predictive for your strategy and show you the optimal way to make it more profitable.&lt;/p&gt;&lt;p&gt;Even though it can look across all your columns, you still want to focus on creating columns that have the best chance of being predictive.&lt;/p&gt;&lt;p&gt;Some columns in my library get identified by the Strategy Cruncher over and over as predictive across many strategies, while others never appear.&lt;/p&gt;&lt;p&gt;What are the qualities of the columns that repeatedly show up as predictive?&lt;/p&gt;&lt;p&gt;They&amp;#039;re normalized.  What does that mean?  Here&amp;#039;s an example to illustrate.&lt;/p&gt;&lt;p&gt;Take two stocks, META and DOCS.  META is currently trading over $600 per share.  DOCS is trading at just above $50.&lt;/p&gt;&lt;p&gt;One column you might want to add to your backtest is &lt;strong&gt;Change from the Previous Close&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Think about the value of that column across both META and DOCS.&lt;/p&gt;&lt;p&gt;For example, let&amp;#039;s say the change from the close is $10 for both.&lt;/p&gt;&lt;p&gt;A $10 move in META is barely a drop in the bucket.  But for DOCS, that same $10 move is &lt;strong&gt;significant&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Because the value for change from the close varies across different stocks, it&amp;#039;s better to come up with a value that&amp;#039;s more &amp;quot;normalized.&amp;quot;&lt;/p&gt;&lt;p&gt;That is, a value that more equally describes the significance across stocks with different prices.&lt;/p&gt;&lt;p&gt;Your thought might be to use a percent for the move, and yes, that&amp;#039;s better than dollars, but it still misses the mark since stocks&amp;#039; movements vary even in percentage terms.&lt;/p&gt;&lt;p&gt;A better data point to use is to normalize it by &lt;strong&gt;Average True Range&lt;/strong&gt; (ATR).  ATR describes the normal amount a stock moves.&lt;/p&gt;&lt;p&gt;Incorporating ATR allows you to add a column that gives you an apples-to-apples comparison across all stocks.&lt;/p&gt;&lt;p&gt;Something like this is the kind of column you want in your library:&lt;/p&gt;&lt;p&gt;&lt;code&gt;Change from the Close / ATR&lt;/code&gt;&lt;/p&gt;&lt;p&gt;(And ATR itself should be a separate column as well.)&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll show an example that demonstrates why normalizing your columns is so important (but only if you want to maximize the amount of money you make from your strategy).&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. &lt;strong&gt;Vacation Reminder&lt;/strong&gt;: This coming Monday is Memorial Day, so &lt;strong&gt;the market is closed&lt;/strong&gt;. This is your reminder to plan something fun so you don&amp;#039;t come in Monday morning and wonder what&amp;#039;s wrong with your trading platform. (I speak from experience, as you can probably tell!)&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Prioritize Among Lots of Trading Ideas?</title>
        <link href="https://davemabe.com/how-to-prioritize-among-lots-of-trading-ideas"/>
        <id>https://davemabe.com/how-to-prioritize-among-lots-of-trading-ideas</id>
        <published>2025-05-19T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You have a strategy that you know you can improve.&lt;/p&gt;&lt;p&gt;You have ideas for new strategies you think will have some edge, but you&amp;#039;re not sure.&lt;/p&gt;&lt;p&gt;You also think learning Python will help improve your trading, but only indirectly, and will take a lot of time.&lt;/p&gt;&lt;p&gt;In short, you&amp;#039;ve got more things on your TODO list than you have time to do.&lt;/p&gt;&lt;p&gt;How do you figure out how to prioritize all these tasks?&lt;/p&gt;&lt;p&gt;That&amp;#039;s the topic of this week&amp;#039;s discussion on Line Your Own Pockets.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a useful technique from the software development world that helps with this, so make sure you listen to the end.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/what-to-prioritize&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your Library of Columns</title>
        <link href="https://davemabe.com/your-library-of-columns"/>
        <id>https://davemabe.com/your-library-of-columns</id>
        <published>2025-05-16T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I discussed &lt;a href=&quot;https://www.davemabe.com/add-multiple-columns-to-your-backtest/&quot;&gt;how valuable it is to add multiple columns to your backtest&lt;/a&gt;. Now let&amp;#039;s talk about making these columns permanently valuable to every backtest you run from this point forward.&lt;/p&gt;&lt;p&gt;In software development, there&amp;#039;s a powerful concept called reusability.&lt;/p&gt;&lt;p&gt;An experienced developer once gave me some advice that stuck with me:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;If you ever find yourself cutting and pasting code, you&amp;#039;ve done something wrong.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It was the perfect time in my career to hear that, because until then, I had done boatloads of cutting and pasting code.&lt;/p&gt;&lt;p&gt;With just a small mindset change, you can write code in a more generic way and include it in a library that can be shared across multiple projects.&lt;/p&gt;&lt;p&gt;This is incredibly powerful since you make every project from this point forward easier to create and maintain.&lt;/p&gt;&lt;p&gt;Need to fix a bug in the code?  Change it in the library, and every project that references it is instantly fixed - assuming you haven&amp;#039;t cut and pasted code.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;The same, powerful concept applies to your backtests&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;As you develop more theories and ideas about what data points have a strong effect on your strategy, you can add them to the backtest you&amp;#039;re working on now.&lt;/p&gt;&lt;p&gt;But, similar to the &amp;quot;don&amp;#039;t cut and paste code&amp;quot; rule, you can add them to a shared library so that every backtest you run from now to eternity benefits from it.&lt;/p&gt;&lt;p&gt;Have a new idea? Add a new column to your library, and you instantly get the ability to test it across &lt;strong&gt;all your strategies&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t take long for your shared column library to become your secret weapon - a process to improve every strategy idea you&amp;#039;ve ever had or will ever have in the future.&lt;/p&gt;&lt;p&gt;Next time, I&amp;#039;ll go over specific column examples and what makes some far more valuable than others.&lt;/p&gt;&lt;p&gt;Stay tuned!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Add Multiple Columns to your Backtest</title>
        <link href="https://davemabe.com/add-multiple-columns-to-your-backtest"/>
        <id>https://davemabe.com/add-multiple-columns-to-your-backtest</id>
        <published>2025-05-15T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I shared how to &lt;a href=&quot;https://www.davemabe.com/whats-the-best-filter-for-the-50-day-moving-average/&quot;&gt;develop and test a theory about improving your trading system&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;We tested a theory about the distance from the 50-day moving average and found that you can significantly improve a system I trade using a simple rule based on it.&lt;/p&gt;&lt;p&gt;But what if our theory hadn&amp;#039;t panned out?&lt;/p&gt;&lt;p&gt;Even when this happens, it often plants the seed for new ideas and theories to test.&lt;/p&gt;&lt;p&gt;Or what if, during the testing process, you came up with another theory that might improve your trading system?&lt;/p&gt;&lt;p&gt;Maybe you realize the 50-day moving average isn&amp;#039;t that helpful, but something more recent might be.&lt;/p&gt;&lt;p&gt;You review some more charts and get curious about two more data points.&lt;/p&gt;&lt;p&gt;Some trades in your system have large gaps from the previous close, but others don&amp;#039;t.&lt;/p&gt;&lt;p&gt;Some trades have big moves on the day before the trade, others don&amp;#039;t.&lt;/p&gt;&lt;p&gt;So you add columns to test these new theories to your backtest.&lt;/p&gt;&lt;p&gt;And remember, you haven&amp;#039;t changed the basic logic of your backtest, you&amp;#039;ve just added columns to your existing trade set.&lt;/p&gt;&lt;p&gt;Instead of a &amp;quot;guess and check&amp;quot; approach that leads to an endless loop, your backtest becomes a powerful tool to let you hone in on optimal answers to your questions.&lt;/p&gt;&lt;p&gt;And the only limit is your imagination and creativity.&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll show you how to turn this simple process into a way to make it easier and easier to generate profitable trading strategies from your ideas over time.&lt;/p&gt;&lt;p&gt;Instead of an endless loop of &amp;quot;guess and check&amp;quot; frustration, an upward spiral for your trading.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. If you&amp;#039;re enjoying this series on backtesting, you&amp;#039;re going to love the &lt;strong&gt;Strategy Cruncher&lt;/strong&gt;. It&amp;#039;s the tool I&amp;#039;ve used for years to create the 30+ trading strategies I trade every day.&lt;/p&gt;&lt;p&gt;Click here to be notified as soon as it&amp;#039;s released:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What's the Best Filter for the 50 Day Moving Average?</title>
        <link href="https://davemabe.com/whats-the-best-filter-for-the-50-day-moving-average"/>
        <id>https://davemabe.com/whats-the-best-filter-for-the-50-day-moving-average</id>
        <published>2025-05-14T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Following up on yesterday&amp;#039;s post called &lt;a href=&quot;https://www.davemabe.com/filters-are-everything/&quot;&gt;Filters Are Everything&lt;/a&gt;, today we&amp;#039;ll look at why adding a column to your backtest is so powerful.&lt;/p&gt;&lt;p&gt;Remember, your system is trading new highs. After observing a few trades, you notice that some are way above their 50-day moving average, while others are below.&lt;/p&gt;&lt;p&gt;You know that many traders pay attention to the 50-day moving average, so surely this data point has some effect on the system.&lt;/p&gt;&lt;p&gt;How can you tell for sure?&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what most traders try (and why they continue wasting time going in circles with their backtests).&lt;/p&gt;&lt;p&gt;They add a line of code like this:&lt;/p&gt;&lt;p&gt;And they run another backtest.  It results in a subset of the original trades. But the rule they tried didn&amp;#039;t remove as many trades as they assumed.&lt;/p&gt;&lt;p&gt;And it didn&amp;#039;t improve the system at all.&lt;/p&gt;&lt;p&gt;Most of the new highs are already above the 50-day SMA, so a simple above/below rule won&amp;#039;t have much effect.&lt;/p&gt;&lt;p&gt;So they try this:&lt;/p&gt;&lt;p&gt;And the wasteful &amp;quot;guess and check&amp;quot; backtesting loop begins as they try different values for the distance from the 50-day SMA over and over in a futile attempt to &lt;strong&gt;randomly stumble upon&lt;/strong&gt; the &amp;quot;right answer.&amp;quot;&lt;/p&gt;&lt;p&gt;Backtesting, when done properly, should be &lt;strong&gt;saving you time&lt;/strong&gt;, not wasting it in this endless rabbit hole.&lt;/p&gt;&lt;p&gt;The much smarter way to answer the question about the 50-day SMA, is to add a column to your existing backtest - a data point for the distance to the 50-day SMA.&lt;/p&gt;&lt;p&gt;Then, figuring out the best filter to use for your strategy is not an endless &amp;quot;guess and check&amp;quot; loop - it&amp;#039;s a quick verification of the right value to use.&lt;/p&gt;&lt;p&gt;The value that&amp;#039;s optimal for your trading system.&lt;/p&gt;&lt;p&gt;And you can get the optimal value by running &lt;strong&gt;a single backtest&lt;/strong&gt;, not dozens.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the answer for one of the strategies I trade:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2025/05/50-day-sma-optimal-filter.png&quot;&gt;Optimal Value for Distance from 50-Day SMA&lt;/a&gt;&lt;/p&gt;&lt;p&gt;From just one backtest, I can see that the optimal value for this particular strategy is &lt;code&gt;35&lt;/code&gt;. (Note that this value will be different for your strategy.)&lt;/p&gt;&lt;p&gt;The green equity curve in the chart above represents all the trades where the value is above 35, and the red line contains those below.&lt;/p&gt;&lt;p&gt;Applying this single rule to my strategy gives me:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Higher total profit&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Fewer trades (which means lower commission and less risk)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Higher win%&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;A better equity curve&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Fewer and shallower drawdowns&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Announcement&lt;/strong&gt;: I&amp;#039;ll be releasing a new tool soon that allows you to quickly and effectively make your trading strategy significantly more profitable.  Click the button below to be notified when it&amp;#039;s released and get early bird pricing.&lt;/p&gt;&lt;p&gt;Stay tuned!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Filters Are Everything</title>
        <link href="https://davemabe.com/filters-are-everything"/>
        <id>https://davemabe.com/filters-are-everything</id>
        <published>2025-05-13T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last week, I wrote about &lt;a href=&quot;https://www.davemabe.com/a-tale-of-two-traders/&quot;&gt;two traders trading the same system with wildly different results&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re wondering if that was just a hypothetical thought experiment, it&amp;#039;s not. This is the normal state of the trading world.&lt;/p&gt;&lt;p&gt;Take a look at your recent trading results.&lt;/p&gt;&lt;p&gt;Imagine if you could remove, say, 10% of the losing trades. What would that do to your equity curve?&lt;/p&gt;&lt;p&gt;It would make it dramatically better: tilted upward and smoother with much shallower drawdowns.&lt;/p&gt;&lt;p&gt;This is exactly why some traders have far better results than others while trading essentially the same trading systems.&lt;/p&gt;&lt;p&gt;The successful traders are skipping more poor trades and not skipping more profitable ones.&lt;/p&gt;&lt;p&gt;Once you do this, it becomes much easier to increase your size in your trading system.&lt;/p&gt;&lt;p&gt;How do the best traders skip the poor trades and take the profitable ones?&lt;/p&gt;&lt;p&gt;They&amp;#039;ve learned what filters are the most predictive to their strategy.&lt;/p&gt;&lt;p&gt;How do you do that?&lt;/p&gt;&lt;p&gt;By watching your trades play out in real-time each day, and brainstorming ways to improve your system.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example.  Your system scans for new highs and looks to get long.&lt;/p&gt;&lt;p&gt;It does well, but you notice some trades that come through your system are above the 50-day moving average, but some are below. You wonder if that affects the overall profitability.&lt;/p&gt;&lt;p&gt;The wrong way to get the answer to this question is to do what most traders do: add a rule to your backtest to exclude trades that are below the 50-day moving average.  Then they compare the overall results from the original backtest to the new one.&lt;/p&gt;&lt;p&gt;The smart way to do it is to &lt;strong&gt;add a column to your existing backtest&lt;/strong&gt; - all trades remain the same, but your backtest output now has a new column that describes whether the trade is above or below the 50-day moving average.&lt;/p&gt;&lt;p&gt;Tomorrow I&amp;#039;ll discuss why this approach is so powerful compared to the way most traders backtest.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Not Automate Your Trades?</title>
        <link href="https://davemabe.com/why-not-automate-your-trades"/>
        <id>https://davemabe.com/why-not-automate-your-trades</id>
        <published>2025-05-12T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss traders&amp;#039; objections to automating their trades.&lt;/p&gt;&lt;p&gt;Topics include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How to take the first step&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Eliminate your human errors&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The turning point for many traders is automating their trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Precaution settings in Trader Workstation&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The power of the default&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/why-not-automate-your-trades&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Tale of Two Traders</title>
        <link href="https://davemabe.com/a-tale-of-two-traders"/>
        <id>https://davemabe.com/a-tale-of-two-traders</id>
        <published>2025-05-09T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Following up on my post from a few days ago on &lt;a href=&quot;https://www.davemabe.com/when-to-take-the-signal-when-to-skip/&quot;&gt;when to take the signal, and when to skip it&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Step back and think about two traders.  They&amp;#039;re both trading a strategy based on new highs.&lt;/p&gt;&lt;p&gt;Trader A is a consistent losing trader.&lt;/p&gt;&lt;p&gt;But Trader B is crushing it, making consistent profits month after month.&lt;/p&gt;&lt;p&gt;But they&amp;#039;re watching the same signals and even trading in the same direction, so how can they get such dramatically different results?&lt;/p&gt;&lt;p&gt;There&amp;#039;s &lt;strong&gt;only one reason&lt;/strong&gt; Trader B is outperforming Trader A.&lt;/p&gt;&lt;p&gt;And it&amp;#039;s not that complicated.&lt;/p&gt;&lt;p&gt;Trader B knows that all new high signals are not the same.  Some have a high probability of succeeding, while others have an extremely low probability.&lt;/p&gt;&lt;p&gt;So Trader B knows which signals to skip and which ones to trade.&lt;/p&gt;&lt;p&gt;That&amp;#039;s the only difference!&lt;/p&gt;&lt;p&gt;He&amp;#039;s trading a more profitable subset of the original new high strategy - he&amp;#039;s better at filtering than Trader A.&lt;/p&gt;&lt;p&gt;Was Trader B born with an amazing, innate skill to magically know which filters to use?&lt;/p&gt;&lt;p&gt;Of course not.&lt;/p&gt;&lt;p&gt;But he has a much better process for applying rules to narrow down the new high signals (or any type of signal) to the subset with the most profitability.&lt;/p&gt;&lt;p&gt;He&amp;#039;s only watching the most profitable subset and ignoring all the others.&lt;/p&gt;&lt;p&gt;The next few emails in the series will focus on how you can get better at this skill.&lt;/p&gt;&lt;p&gt;Stay tuned!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Backtester Is Right For You?</title>
        <link href="https://davemabe.com/which-backtester-is-right-for-you"/>
        <id>https://davemabe.com/which-backtester-is-right-for-you</id>
        <published>2025-05-08T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The other day, I shared &lt;a href=&quot;https://www.davemabe.com/which-backtesters-are-worth-considering/&quot;&gt;which backtesting software you should consider using&lt;/a&gt;. Which one is right for you?&lt;/p&gt;&lt;p&gt;It depends on:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Your skill set&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your strategy timeframe&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The amount of history you require&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Do You Have Programming Experience?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Although still important, programming experience used to be a big differentiator - the factor for determining which backtesting software to use.&lt;/p&gt;&lt;p&gt;With the advent of LLMs, it&amp;#039;s not as critical, but still an important factor, and it will always give you an advantage over traders who can&amp;#039;t program.&lt;/p&gt;&lt;p&gt;If you don&amp;#039;t enjoy programming, then Trade-Ideas is your best choice.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Strategy Timeframe&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do any of your strategies require intraday data? If so, RealTest only works on daily data (currently), so Amibroker is the best choice.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Minimum Backtesting History Required?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Trade-Ideas has 3 months of backtesting history available - plenty for some strategies, but not enough for others.  If you have to have more than 3 months of history, then cross Trade-Ideas off your list.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s go through the three choices and the pros and cons of each:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Trade-Ideas&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Pros:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Simple to use, no programming required&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The fastest backtesting software on the market (nothing even close)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trivial to get real-time alerts when your strategy is finalized&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Built-in indicators/custom columns in your backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;No data to maintain - all data included&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Cons:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;3 month backtesting window&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Nice breadth of indicators, but not infinitely customizable&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;US Equities only&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Amibroker&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Pros:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;No limit on the amount of data for your backtesting window&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Infinitely customizable using code&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Can use intraday data&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Any instrument type&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Cons:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Programming required through own custom language (AFL)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Third-party data source required&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Some local database maintenance is required&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Time-consuming to scan the entire US equities market in real-time (use in tandem with Trade-Ideas to do this efficiently)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Have to create your own custom columns for your backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;RealTest&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Pros:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Fast, simple portfolio backtesting&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Infinitely customizable using code&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Any instrument type&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Cons:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Daily data only (currently)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Third-party data source required&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Some local database maintenance is required&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Have to create your own custom columns for your backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;strong&gt;Summary&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;All these software packages are excellent - I use each for specific tasks. The best choice for you is very trader-specific.&lt;/p&gt;&lt;p&gt;Tomorrow, we&amp;#039;ll return to the nuts and bolts of creating a strategy (regardless of the software you use).&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Can Forward Testing Replace a Backtest?</title>
        <link href="https://davemabe.com/can-forward-testing-replace-a-backtest"/>
        <id>https://davemabe.com/can-forward-testing-replace-a-backtest</id>
        <published>2025-05-07T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In response to yesterday&amp;#039;s post on &lt;a href=&quot;https://www.davemabe.com/which-backtesters-are-worth-considering/&quot;&gt;which backtesting software is worth considering&lt;/a&gt;, reader Kyle Kaefer from &lt;a href=&quot;http://kpsoundcompany.com/&quot;&gt;kpsoundcompany.com&lt;/a&gt; and Concordia University asked (&lt;em&gt;sharing with permission&lt;/em&gt;):&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Kyle:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I do not run backtests because I am just getting my first couple of bots up and running on paper, but… if you have a good understanding of your niche edges, could forward-testing in a paper account be just fine?&lt;/p&gt;&lt;p&gt;It seems like backtests more often than not fool us as traders.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;That&amp;#039;s a great question. I think you can get by without it, but only if you have a really strong sense of your niche edge. And even then, even with the imperfections of backtesting, it can be really valuable to what you&amp;#039;re doing with your bot and forward testing.&lt;/p&gt;&lt;p&gt;I think a lot about a trader&amp;#039;s &amp;quot;path to confidence.&amp;quot; It&amp;#039;s easy to trade with small size, but what&amp;#039;s in the way of you trading with your full size for a given strategy? It&amp;#039;s likely that there are some unknowns about how the strategy will perform in the future.&lt;/p&gt;&lt;p&gt;Those unknowns will fade over time with just forward testing and experience, but imagine if you had a backtest to use as a guide. Your path to trading with full size could be very short since you can very quickly check each day how your trades are measuring up to the backtest.&lt;/p&gt;&lt;p&gt;From there, you can extrapolate and understand quickly what results you could have expected had you started trading the strategy months ago (even several years).&lt;/p&gt;&lt;p&gt;That can be extremely valuable because it provides a much quicker &lt;strong&gt;path to confidence&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Now, imagine a year from now, and this strategy is in a drawdown. Is this level of drawdown normal for the strategy? It&amp;#039;s hard to answer that without a backtest.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Kyle:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I totally would and will eventually backrest, just not there yet, you make very valid points! I am probably overconfident, but I do think what I have is sound and will, at a minimum, break even… been in and out of markets for 10 years, so I have some experience.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Well, there are two paths to confidence: trading experience and backtesting. The former is the most important one, but it takes time to cultivate it. Since you already have a healthy dose of it, backtesting will be that much more valuable when paired with your trading experience and intuition.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Thanks for the question, Kyle!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Which Backtesters Are Worth Considering?</title>
        <link href="https://davemabe.com/which-backtesters-are-worth-considering"/>
        <id>https://davemabe.com/which-backtesters-are-worth-considering</id>
        <published>2025-05-06T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The fundamental question you need to answer when backtesting was the topic from last time: &lt;a href=&quot;https://www.davemabe.com/when-to-take-the-signal-when-to-skip/&quot;&gt;when to take the signal and when to skip it&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Today, we&amp;#039;ll discuss which backtesting software has the critical feature required to answer that question.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A Basic Backtest is Trivial to Create&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Why are there so many backtesting software packages on the market? From a programming perspective, the basics of a backtester are pretty simple. (My daughter created a basic backtester in an afternoon.)&lt;/p&gt;&lt;p&gt;But to create one that lets you answer the fundamental question of &amp;quot;when to take the signal and when to skip it&amp;quot; is much harder.&lt;/p&gt;&lt;p&gt;It requires the ability to do two things:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Create a trades list from the backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Add custom columns to the trades list&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I&amp;#039;m always amazed how many backtesters can&amp;#039;t even do the first one!&lt;/p&gt;&lt;p&gt;It&amp;#039;s because the vast majority of these backtesting tools are created by programmers and &lt;strong&gt;not actual traders&lt;/strong&gt;, much less traders who&amp;#039;ve created a profitable trading strategy.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Backtesting Software That Works&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;So, which backtesting software has the fundamental features that can actually get you to the starting line?&lt;/p&gt;&lt;p&gt;There are three available to retail traders:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.trade-ideas.com/&quot;&gt;Trade-Ideas&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://amibroker.com/&quot;&gt;Amibroker&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://mhptrading.com/&quot;&gt;RealTest&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Those are the ones I know of that allow you to backtest across the entire market (not just a small basket of stocks), produce a trade list in a CSV file, and allow you to add custom columns.&lt;/p&gt;&lt;p&gt;(I&amp;#039;m not including Python, but technically you can build your own backtester using it.)&lt;/p&gt;&lt;p&gt;If I&amp;#039;m missing any, let me know and I&amp;#039;ll add them to the list in a future message.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Which One Should You Use?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;That depends on the kind of trading you do, your experience, and your programming skills.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll go over that tomorrow.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Follow-Up Discussion from Jared Tendler Interview</title>
        <link href="https://davemabe.com/follow-up-discussion-from-jared-tendler-interview"/>
        <id>https://davemabe.com/follow-up-discussion-from-jared-tendler-interview</id>
        <published>2025-05-05T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, we review some topics from last week&amp;#039;s interview with Jared Tendler.&lt;/p&gt;&lt;p&gt;We go deeper into:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Learning from top performers in non-trading fields&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The parallels of poker and trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How improving your strategy helps with the emotions of trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The role of optimism in trading success&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/learning-from-top-performers&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">When to Take The Signal, When to Skip</title>
        <link href="https://davemabe.com/when-to-take-the-signal-when-to-skip"/>
        <id>https://davemabe.com/when-to-take-the-signal-when-to-skip</id>
        <published>2025-05-02T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Now that you have &lt;a href=&quot;https://www.davemabe.com/your-first-backtest/&quot;&gt;your first backtest&lt;/a&gt;, you&amp;#039;re ready to tackle the most important part of creating a trading strategy.&lt;/p&gt;&lt;p&gt;Remember, this is a comprehensive list of the occurrences of your original signal, so the equity curve might look terrible at this point.  But that&amp;#039;s ok.&lt;/p&gt;&lt;p&gt;You&amp;#039;re never going to trade EVERY occurrence of the signal, so why did we include each one in the backtest?&lt;/p&gt;&lt;p&gt;Because you need a methodical way to determine which signals are profitable enough to trade, and which aren&amp;#039;t.&lt;/p&gt;&lt;p&gt;By including &lt;strong&gt;all the signals&lt;/strong&gt; in the first backtest, you&amp;#039;re guaranteeing that the final version of the strategy at the end of this process will have the &lt;strong&gt;maximum possible number of profitable trades&lt;/strong&gt; in the strategy.&lt;/p&gt;&lt;p&gt;Even though the equity curve might look bad, you should be incredibly excited when you step back and think about it.&lt;/p&gt;&lt;p&gt;There is a high likelihood that some combination of the trades already in your backtest will produce a profitable strategy.&lt;/p&gt;&lt;p&gt;You just need to determine which trades are good enough and which aren&amp;#039;t.&lt;/p&gt;&lt;p&gt;To do that, you need to apply rules to your strategy to filter out the poorest trades from your original trade set.&lt;/p&gt;&lt;p&gt;The only reliable way to figure out what rules to apply to filter out the bad trades is to add data points to your backtest that &lt;strong&gt;could be used to create a rule&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Most traders, at this point, create the rules in their code to filter out trades from their backtest, but that&amp;#039;s the wrong approach.&lt;/p&gt;&lt;p&gt;You still want all the trades in the backtest, but you need to add columns to your backtest for &lt;strong&gt;each rule you might apply&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;This is the essence of building a robust strategy, and yet most traders aren&amp;#039;t even aware they can do this.&lt;/p&gt;&lt;p&gt;In fact, most backtesting software packages out there DON&amp;#039;T HAVE THIS CAPABILITY.  (I&amp;#039;m talking to you TradeStation!)&lt;/p&gt;&lt;p&gt;Next, I&amp;#039;ll go over what backtesters have this fundamental feature.&lt;/p&gt;&lt;p&gt;Until next time,&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your First Backtest</title>
        <link href="https://davemabe.com/your-first-backtest"/>
        <id>https://davemabe.com/your-first-backtest</id>
        <published>2025-05-01T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I described how the &amp;quot;guess and check&amp;quot; approach that most traders try when backtesting &lt;a href=&quot;https://www.davemabe.com/the-first-backtesting-mistake-to-avoid/&quot;&gt;seldom works&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;What should you do for your first backtest?&lt;/p&gt;&lt;p&gt;Instead of trying to find &amp;quot;the final answer&amp;quot; with your first attempt, create a backtest that captures the entire range of possible trades for your system.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example.  I trade a gap system with a well-defined entry signal that may or may not occur for any given gapping stock on a particular day.&lt;/p&gt;&lt;p&gt;The entry signal is simple - no fancy rules to complicate it.&lt;/p&gt;&lt;p&gt;I know there&amp;#039;s some threshold for a minimum gap that I&amp;#039;ll end up using in the final version, but I don&amp;#039;t know what that is yet.&lt;/p&gt;&lt;p&gt;I also know that I&amp;#039;ll end up applying some additional rules, but I&amp;#039;m not sure what they&amp;#039;ll be.&lt;/p&gt;&lt;p&gt;The first backtest I run will look for the entry signal with essentially no filtering (or as little filtering as possible).&lt;/p&gt;&lt;p&gt;But won&amp;#039;t you end up with more trades in your backtest than your account can handle?&lt;/p&gt;&lt;p&gt;Of course! Way more. Sometimes &lt;strong&gt;ten times more&lt;/strong&gt; than what I end up trading.&lt;/p&gt;&lt;p&gt;My first backtest answers the question: how many times does this simple pattern occur?&lt;/p&gt;&lt;p&gt;I know I&amp;#039;m not going to end up trading every occurrence of the signal, but I start with a comprehensive list.&lt;/p&gt;&lt;p&gt;Once I have that list, I&amp;#039;m ready to answer the next question: under what circumstances is the signal profitable to trade?&lt;/p&gt;&lt;p&gt;In other words, what subset of the entire list of occurrences are worth trading, and which ones should my system ignore?&lt;/p&gt;&lt;p&gt;That&amp;#039;s the crux of creating a trading strategy - and will be the topic over the next several days.&lt;/p&gt;&lt;p&gt;But if your first backtest uses a &amp;quot;guess and check&amp;quot; approach, you&amp;#039;re not even close to being able to answer the most important question when creating a strategy.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The First Backtesting Mistake to Avoid</title>
        <link href="https://davemabe.com/the-first-backtesting-mistake-to-avoid"/>
        <id>https://davemabe.com/the-first-backtesting-mistake-to-avoid</id>
        <published>2025-04-30T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve got an idea for a trading strategy you want to backtest.&lt;/p&gt;&lt;p&gt;You have some ballpark idea about what the thresholds should be, but you&amp;#039;re not sure what the optimal settings should be.&lt;/p&gt;&lt;p&gt;That&amp;#039;s ok, you&amp;#039;ve got powerful backtesting software that can give you the answer for what the settings should be.  (That&amp;#039;s the whole point of backtesting, right?)&lt;/p&gt;&lt;p&gt;It might take some time, but it&amp;#039;s doable, you tell yourself.  Just use your intuition for the settings that should work for your strategy, run a backtest, see the results, make adjustments, and repeat.&lt;/p&gt;&lt;p&gt;This iterative process should hone in on &amp;quot;the answer.&amp;quot;  (Or that&amp;#039;s what you believe.)&lt;/p&gt;&lt;p&gt;Your first backtest runs, and you end up with a lot more trades than you thought you would.&lt;/p&gt;&lt;p&gt;And the equity curve sucks.&lt;/p&gt;&lt;p&gt;That&amp;#039;s ok, it&amp;#039;s part of the process, you tell yourself.&lt;/p&gt;&lt;p&gt;Maybe I should add a relative volume filter to reduce the number of trades, you think.&lt;/p&gt;&lt;p&gt;You add the relative volume filter and run the backtest.&lt;/p&gt;&lt;p&gt;Wow, now you ended up with hardly ANY trades at all!&lt;/p&gt;&lt;p&gt;So you pick another threshold and run yet another backtest.&lt;/p&gt;&lt;p&gt;Pretty soon, you&amp;#039;ve run dozens of backtests, and you&amp;#039;re getting frustrated.&lt;/p&gt;&lt;p&gt;You&amp;#039;re nowhere close to finding the right thresholds for your strategy.&lt;/p&gt;&lt;p&gt;In fact, you&amp;#039;re probably further away than when you started because you&amp;#039;ve tried a bunch of settings and haven&amp;#039;t kept track of even what you&amp;#039;ve attempted.&lt;/p&gt;&lt;p&gt;This &amp;quot;guess and check&amp;quot; approach to backtesting is what most traders do, but it&amp;#039;s never going to work.&lt;/p&gt;&lt;p&gt;It&amp;#039;s like trying to hit a bullseye on a target that&amp;#039;s 400m away - with a pistol. You&amp;#039;ll fire a lot of shots and make adjustments each time, but a pistol is never going to be accurate at that distance.&lt;/p&gt;&lt;p&gt;If you hit the target, it&amp;#039;s going to be purely by accident.&lt;/p&gt;&lt;p&gt;Taking a different approach to your first backtest will save you a lot of frustration.&lt;/p&gt;&lt;p&gt;The first backtest for a strategy should be more like calibrating your scope on your sniper rifle.&lt;/p&gt;&lt;p&gt;More tomorrow.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Backtest Series</title>
        <link href="https://davemabe.com/how-to-backtest-series"/>
        <id>https://davemabe.com/how-to-backtest-series</id>
        <published>2025-04-29T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you&amp;#039;ve known me for any length of time, you know how I feel about backtesting - it&amp;#039;s your trading superpower.&lt;/p&gt;&lt;p&gt;Even traders who fully understand this get stuck in the backtesting mud. I&amp;#039;m pretty sure this is the default state when traders start backtesting.&lt;/p&gt;&lt;p&gt;Imagine trying to pierce a bullseye on a target from 400 meters away.&lt;/p&gt;&lt;p&gt;You could try using a slingshot or throwing a dart - those are good tools for similar tasks, but they won&amp;#039;t be much help here.&lt;/p&gt;&lt;p&gt;Some will recognize that a sniper rifle with a powerful, well-calibrated sight is the right tool to accomplish the goal.&lt;/p&gt;&lt;p&gt;Now imagine the people who have a sniper rifle - the right tool - but they&amp;#039;re using it blindfolded and they don&amp;#039;t realize it.&lt;/p&gt;&lt;p&gt;You may as well be using a slingshot.&lt;/p&gt;&lt;p&gt;And yet, almost all traders I come across who backtest are like the people using a sniper rifle blindfolded.&lt;/p&gt;&lt;p&gt;This series of emails will show you how to backtest so that you end up with a strategy that actually works and doesn&amp;#039;t just trade market noise.&lt;/p&gt;&lt;p&gt;This is a wide-ranging topic, so here&amp;#039;s how I&amp;#039;m planning to organize it.&lt;/p&gt;&lt;p&gt;First, we&amp;#039;ll go over strategy creation in general, then we&amp;#039;ll move on to specific backtesting software.&lt;/p&gt;&lt;p&gt;After you have a working strategy (according to a backtest), we&amp;#039;ll go over the next steps and how to implement it.&lt;/p&gt;&lt;p&gt;Tomorrow I&amp;#039;ll go over the first step, before doing a backtest or writing any code.&lt;/p&gt;&lt;p&gt;This is the step where traders put the blindfold on without even realizing it.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Interview with Jared Tendler</title>
        <link href="https://davemabe.com/interview-with-jared-tendler"/>
        <id>https://davemabe.com/interview-with-jared-tendler</id>
        <published>2025-04-28T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week’s episode of Line Your Own Pockets, we interviewed Jared Tendler, a leading expert in how your mental game affects performance.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve known about Jared since I got heavily into poker a few years ago.  He&amp;#039;s since branched into trading, coaching traders in their mental game.&lt;/p&gt;&lt;p&gt;He&amp;#039;s written an excellent book called &lt;a href=&quot;https://www.amazon.com/Mental-Game-Trading-Confidence-Discipline/dp/1734030917/&quot;&gt;The Mental Game of Trading: A System for Solving Problems with Greed, Fear, Anger, Confidence, and Discipline&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Trading and poker? I knew I had to get Jared on the podcast to talk about two of my favorite topics!&lt;/p&gt;&lt;p&gt;This was a wide-ranging interview where we discussed:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The mental side of systematic trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How poker and trading are similar and different&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What traders can learn from top performers in other fields&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Find more info about Jared on his website: &lt;a href=&quot;https://jaredtendler.com/&quot;&gt;https://jaredtendler.com/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/interview-with-jared-tendler&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Thanks for coming on Line Your Own Pockets, Jared!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Beware Magic Numbers</title>
        <link href="https://davemabe.com/beware-magic-numbers"/>
        <id>https://davemabe.com/beware-magic-numbers</id>
        <published>2025-04-25T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I described how &lt;a href=&quot;https://www.davemabe.com/using-nice-round-numbers-in-your-strategy/&quot;&gt;using nice, round numbers accomplishes nothing&lt;/a&gt;. Today, I&amp;#039;ll discuss a related concept called &lt;strong&gt;magic numbers&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;One of the products I offer is a Trading Strategy Assessment, in which I analyze a trader&amp;#039;s strategy and suggest ways to improve it.&lt;/p&gt;&lt;p&gt;After doing several of these, I started noticing a pattern.  It&amp;#039;s so common that now it&amp;#039;s one of the first things I look for when I do a strategy assessment, because the instant I see it, I know there&amp;#039;s very likely a simple way to improve the strategy significantly.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example from this past week to illustrate.&lt;/p&gt;&lt;p&gt;A trader came to me with a day trading strategy that was working ok, but he thought it could be better. (He was right.)&lt;/p&gt;&lt;p&gt;When I looked at his rules, the first thing I noticed was that he was using arbitrary thresholds for the minimum price and maximum price (say, between X and Y) for the strategy.&lt;/p&gt;&lt;p&gt;X and Y, in this case, are &amp;quot;magic numbers&amp;quot; - they came out of thin air with no real data behind why these values were chosen.&lt;/p&gt;&lt;p&gt;When you choose values like this for your rules based on your gut or some arbitrary process, there are trades you&amp;#039;re missing.&lt;/p&gt;&lt;p&gt;And when you use magic numbers for filters based on price specifically, you&amp;#039;re likely filtering out a LOT of profitable trades from your strategy.&lt;/p&gt;&lt;p&gt;And that was definitely the case here.&lt;/p&gt;&lt;p&gt;When we looked at a wider threshold for X and Y and normalized the values he was using in some of the other rules, we increased the number of trades in his strategy by 5x, without sacrificing average profit per trade.&lt;/p&gt;&lt;p&gt;Look at the rules in your strategy.  Are there magic numbers there that are hiding profitable trades from you?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Could your strategy be better? (The answer is almost certainly yes.)  If you&amp;#039;re interested in doing the same with your strategy as this trader did, hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using Nice Round Numbers in your Strategy</title>
        <link href="https://davemabe.com/using-nice-round-numbers-in-your-strategy"/>
        <id>https://davemabe.com/using-nice-round-numbers-in-your-strategy</id>
        <published>2025-04-24T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One approach I&amp;#039;ve seen traders take when developing a trading strategy is to use nice round numbers for their rules.&lt;/p&gt;&lt;p&gt;I understand the thought process, and I used to do this, but I&amp;#039;ve realized over the years that it accomplishes nothing.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example.  Let&amp;#039;s say you&amp;#039;re trading a gap strategy.  You run a backtest and find that the strategy is profitable above, say, a 5.8% gap.&lt;/p&gt;&lt;p&gt;A lot of traders will take that 5.8 number and round it to 6% - because they believe that using 5.8 &amp;quot;would be curve-fitting.&amp;quot;&lt;/p&gt;&lt;p&gt;They apply the round number, thinking they&amp;#039;ve cleverly avoided curve-fitting by doing so.&lt;/p&gt;&lt;p&gt;It might make you feel a little better, but the market doesn&amp;#039;t care that you&amp;#039;ve used that round number versus the more exact number you&amp;#039;ve proven is optimal.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not a serious mistake, but you can skip the song and dance of using a round number because it&amp;#039;s not accomplishing anything.&lt;/p&gt;&lt;p&gt;Now think about a year from now when you&amp;#039;re going back and looking at your strategy rules.&lt;/p&gt;&lt;p&gt;You see 5.8.  That conveys a level of precision that serves as a reminder that you thoughtfully chose it rather than pulled it out of thin air.  If you see 6, then unless you&amp;#039;ve documented your process &lt;em&gt;really&lt;/em&gt; well, you&amp;#039;re not going to remember exactly why you chose it.&lt;/p&gt;&lt;p&gt;Speaking of round numbers, tomorrow I&amp;#039;ll share something I often see in traders&amp;#039; strategies that is a &lt;strong&gt;sure sign&lt;/strong&gt; it can be improved.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Curve-Fitting Gets Traders Stuck</title>
        <link href="https://davemabe.com/why-curve-fitting-gets-traders-stuck"/>
        <id>https://davemabe.com/why-curve-fitting-gets-traders-stuck</id>
        <published>2025-04-23T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A few years ago, I noticed a phenomenon on Twitter.&lt;/p&gt;&lt;p&gt;A well-known trader was posting his results and described a recent change he had made to his rules that improved his strategy.&lt;/p&gt;&lt;p&gt;Shortly after that, in the replies, another trader chimed in, &amp;quot;Wait, that sounds like curve-fitting to me!&amp;quot;&lt;/p&gt;&lt;p&gt;Don&amp;#039;t worry guys - everyone was safe - the &amp;quot;curve-fitting police&amp;quot; had arrived on the scene.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing about curve-fitting: you always sound smart and prudent when you point it out.&lt;/p&gt;&lt;p&gt;Remember back to when you first learned about curve-fitting.&lt;/p&gt;&lt;p&gt;In that moment, you probably thought the person who pointed it out was one of the smartest guys in the world.&lt;/p&gt;&lt;p&gt;He had enough experience to know about the monsters lurking around the corner that you didn&amp;#039;t realize existed.&lt;/p&gt;&lt;p&gt;Because it sounds so prudent and smart, you give it a little more weight than you probably should.&lt;/p&gt;&lt;p&gt;When you have a strategy that&amp;#039;s working, the &amp;quot;curve-fitting sounds smart&amp;quot; bias, along with the &amp;quot;if it ain&amp;#039;t broke, don&amp;#039;t fix it&amp;quot; bias, is what starts to calcify traders in their status quo.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a big reason why so many traders get stuck with one working strategy and not more.&lt;/p&gt;&lt;p&gt;Remember - you are the only one responsible for your trading results.&lt;/p&gt;&lt;p&gt;When you make a boatload of profits from your strategy and wire money out of your brokerage account, there&amp;#039;s no checkbox requiring you to certify that there wasn&amp;#039;t any curve-fitting involved in the making of that money.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a question I like to ask traders who get themselves stuck in the curve-fitting morass.&lt;/p&gt;&lt;p&gt;Do you want to be statistically perfect, or do you want to make money?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Segment Your Out of Sample Trades</title>
        <link href="https://davemabe.com/how-to-segment-your-out-of-sample-trades"/>
        <id>https://davemabe.com/how-to-segment-your-out-of-sample-trades</id>
        <published>2025-04-22T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last week, we &lt;a href=&quot;https://www.davemabe.com/a-way-to-predict-the-future/&quot;&gt;reviewed a powerful technique&lt;/a&gt; for building confidence in your strategy called in-sample/out-of-sample testing.&lt;/p&gt;&lt;p&gt;There are two main ways to create your sets from your backtest: random sampling or by time.&lt;/p&gt;&lt;p&gt;If you come to trading from a different domain, like chemistry or data science, you&amp;#039;re probably accustomed to creating your out-of-sample set using random sampling.&lt;/p&gt;&lt;p&gt;In trading, that&amp;#039;s wrong - you should always segment your trades by time.&lt;/p&gt;&lt;p&gt;That is, choose a date that puts 80% of the trades in the backtest before that date, and the remaining 20% after that date. (or 70%/30% - people get hung up on the percent, but it doesn&amp;#039;t matter that much).&lt;/p&gt;&lt;p&gt;I have a function in my code that I can call that automatically determines this date and segments the trade set appropriately.&lt;/p&gt;&lt;p&gt;So why is random sampling so inferior for our purposes when it&amp;#039;s perfectly legitimate in other domains?&lt;/p&gt;&lt;p&gt;Every trading day is another sample that traders around the world look at, learn from, and adjust their own strategies based on.&lt;/p&gt;&lt;p&gt;When you choose to segment by random sampling, you&amp;#039;ll have trades in your in-sample set that are &lt;em&gt;more recent&lt;/em&gt; than your out-of-sample set.&lt;/p&gt;&lt;p&gt;Because of this, your model will appear to be more optimistic than reality because you&amp;#039;ll be training it on &amp;quot;future data&amp;quot; and testing on previous data.&lt;/p&gt;&lt;p&gt;I was convinced this was an issue several years ago when I had a large backtest and tried it both ways and compared.&lt;/p&gt;&lt;p&gt;Although it was subtle, random sampling yielded a model that looked more optimistic than segmenting by time.&lt;/p&gt;&lt;p&gt;When your process is more optimistic than reality, it&amp;#039;s like you&amp;#039;re wearing rose colored glasses - you&amp;#039;re setting yourself up for disappointment later.&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll go over one of the main underlying reasons traders get stuck when they consider curve-fitting.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Should You Turn Off Your Strategies on Crazy Days?</title>
        <link href="https://davemabe.com/should-you-turn-off-your-strategies-on-crazy-days"/>
        <id>https://davemabe.com/should-you-turn-off-your-strategies-on-crazy-days</id>
        <published>2025-04-21T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, we discuss whether to disable trading strategies on days when the overall market is raging.&lt;/p&gt;&lt;p&gt;We&amp;#039;re not talking about run-of-the-mill market movement - we mean the outlier days that, by definition, happen rarely.&lt;/p&gt;&lt;p&gt;Whether you should turn off your strategies depends on how you designed them to begin with.&lt;/p&gt;&lt;p&gt;A perfectly acceptable answer might be to simply turn off your strategies on these days, but you risk potentially missing out on the most profitable days your strategy could experience.&lt;/p&gt;&lt;p&gt;What&amp;#039;s the right way to think about it?&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/should-you-turn-off-strategies-on-crazy-days&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Do you use RealTest for backtesting?  I&amp;#039;m testing something that&amp;#039;s particularly valuable for RealTest users.  If you&amp;#039;re interested in helping beta test it, hit reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Way To Predict The Future</title>
        <link href="https://davemabe.com/a-way-to-predict-the-future"/>
        <id>https://davemabe.com/a-way-to-predict-the-future</id>
        <published>2025-04-18T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Of course, you can&amp;#039;t &lt;em&gt;really&lt;/em&gt; predict the future, and it&amp;#039;s easy to &lt;a href=&quot;https://www.davemabe.com/looking-into-the-future/&quot;&gt;accidentally set up a backtest&lt;/a&gt; that assumes you can (be careful!).&lt;/p&gt;&lt;p&gt;But there&amp;#039;s a simple technique for simulating how your strategy would have played out &amp;quot;into the future.&amp;quot;&lt;/p&gt;&lt;p&gt;It&amp;#039;s called in-sample/out-of-sample testing (sometimes IS/OOS).&lt;/p&gt;&lt;p&gt;It sounds more complex than it really is (data scientists like to over-complicate things sometimes), but here&amp;#039;s how I like to think about it.&lt;/p&gt;&lt;p&gt;When you create and optimize a trading strategy, you can never be sure it will continue to work. But wouldn&amp;#039;t it be nice to look into the future and see if it does?&lt;/p&gt;&lt;p&gt;IS/OOS testing lets you do that by segmenting the trades in your backtest into two sets: a &amp;quot;training&amp;quot; set and a &amp;quot;test&amp;quot; set.&lt;/p&gt;&lt;p&gt;So instead of optimizing across your entire set of backtested trades, you only optimize on the training set.&lt;/p&gt;&lt;p&gt;Then, when you feel you&amp;#039;re at a stopping point and you&amp;#039;re happy with your strategy, you can see how it performs on the test set - the trades that you held out and therefore are &amp;quot;out of sample.&amp;quot;&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve overfitted your strategy, the performance on the test set is not going to match up with the performance on the training set, so it should be easy to spot.&lt;/p&gt;&lt;p&gt;This lets you pretend you went back in time and developed your strategy at a previous date with all the information you could have known at that moment, and then try to &amp;quot;predict the future&amp;quot; from that point.&lt;/p&gt;&lt;p&gt;This is exactly the situation you&amp;#039;re in now - asking yourself how likely your strategy will continue to perform in the future.&lt;/p&gt;&lt;p&gt;I love this because it&amp;#039;s a simple thing you can do outside of market hours that allows you to build confidence in your strategy &lt;strong&gt;before&lt;/strong&gt; putting real money on the line.&lt;/p&gt;&lt;p&gt;Next time, I&amp;#039;ll address how to create your training set and test set. There are two common ways of doing it, and, in trading, one of them is &lt;strong&gt;very wrong&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Easiest Way to Avoid Curve Fitting</title>
        <link href="https://davemabe.com/the-easiest-way-to-avoid-curve-fitting"/>
        <id>https://davemabe.com/the-easiest-way-to-avoid-curve-fitting</id>
        <published>2025-04-17T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday&amp;#039;s message was &lt;a href=&quot;https://www.davemabe.com/how-to-curve-fit/&quot;&gt;a thought exercise on the best ways to curve fit&lt;/a&gt;, hypothetically assuming that was your goal.&lt;/p&gt;&lt;p&gt;Now we return to the real world, where you&amp;#039;re trying to &lt;em&gt;minimize&lt;/em&gt; it.&lt;/p&gt;&lt;p&gt;The best way to steer clear of curve fitting is usually quite easy: add lots of trades to your backtest.&lt;/p&gt;&lt;p&gt;The more trades you have, the less chance you&amp;#039;ll curve fit.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not impossible, but with many trades and a healthy dose of common sense, you can worry a lot less.&lt;/p&gt;&lt;p&gt;How do you add more trades to your backtest?&lt;/p&gt;&lt;p&gt;If your backtest has a small number of symbols, add more.  (This is one of the main reasons I prefer equities to futures and day trading to swing trading - there are simply way more profitable trades to be had!)&lt;/p&gt;&lt;p&gt;If your backtest covers a certain window of time, explore increasing that window to a longer period that covers more market types.&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve filtered your signal so it doesn&amp;#039;t occur frequently, loosen the filters so it happens more often.&lt;/p&gt;&lt;p&gt;Remember, you can&amp;#039;t &lt;a href=&quot;https://www.davemabe.com/is-your-strategy-curve-fitted/&quot;&gt;eliminate the risk of curve-fitting&lt;/a&gt;, but you have a lot of control over how you set up your backtest to minimize the chance of it.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll focus soon on the exact steps you can use to set up a backtest to give you the best chance of finding a profitable edge from it.&lt;/p&gt;&lt;p&gt;(If you&amp;#039;re like most traders, you&amp;#039;re probably backtesting wrong!)&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Speaking of backtesting, there are still a few days left to beta test a new product I&amp;#039;m working on that helps you optimize your backtests (&lt;em&gt;without&lt;/em&gt; curve fitting). If you&amp;#039;re interested, hit reply and let me know which backtesting software you use.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what one trader said about it:&lt;/p&gt;&lt;p&gt;&amp;quot;As someone relatively new to trading without a strong quant background, I initially struggled to build and refine a profitable strategy. That changed when I started using Dave’s optimizer. It has completely transformed my trading experience. It has made trading more accessible, significantly less time-consuming, and much more enjoyable—all while improving my results.&amp;quot; - Brandon C.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Curve Fit</title>
        <link href="https://davemabe.com/how-to-curve-fit"/>
        <id>https://davemabe.com/how-to-curve-fit</id>
        <published>2025-04-16T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One way to think about how NOT to curve fit when creating a trading strategy is to imagine your goal is the opposite.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say your goal was to create the &lt;strong&gt;most&lt;/strong&gt; curve-fitted strategy possible.&lt;/p&gt;&lt;p&gt;An insane goal, I realize, but how would you do it?&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I would do:&lt;/p&gt;&lt;p&gt;Start with a backtest that has a small number of trades.&lt;/p&gt;&lt;p&gt;I would create that by making assumptions about what I thought the thresholds should be.&lt;/p&gt;&lt;p&gt;Apply the backtest to a tiny number of symbols.  Preferably just one!&lt;/p&gt;&lt;p&gt;This allows you to restrict the number of trades in your backtest to a really small starting point.  Ideal for curve fitting!&lt;/p&gt;&lt;p&gt;Next, sort the trades list by profit and look at the least profitable trades.&lt;/p&gt;&lt;p&gt;Tell yourself there&amp;#039;s no way you&amp;#039;d make THAT trade in real-time, so just remove it from your backtest.&lt;/p&gt;&lt;p&gt;Next, look at the data and blindly follow what it suggests.  Don&amp;#039;t think about it too much - this is data, and data doesn&amp;#039;t lie!&lt;/p&gt;&lt;p&gt;If it&amp;#039;s an intraday strategy with short hold times and the data suggests a fundamental data point like earnings per share would improve it, just go with it!&lt;/p&gt;&lt;p&gt;If it&amp;#039;s a swing trading strategy that holds for several days, find data points for the smallest possible timeframe that &amp;quot;improve&amp;quot; the system, and add a rule for them.&lt;/p&gt;&lt;p&gt;Any improvement by adding a rule, no matter how tiny, is great for curve fitting.  The more rules, the better!&lt;/p&gt;&lt;p&gt;Stay away from data points that are normalized.  For example, if you have a choice between, say, &lt;strong&gt;relative volume&lt;/strong&gt; and just plain &lt;strong&gt;volume today&lt;/strong&gt;, choose &lt;strong&gt;volume today&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Lastly, look at the equity curve for your backtest.  Find the days when it performed the worst.  Tell yourself you&amp;#039;re smarter than that, and you wouldn&amp;#039;t have traded that day, so just remove it from your backtest.&lt;/p&gt;&lt;p&gt;Your equity curve should look absolutely pristine at this point.&lt;/p&gt;&lt;p&gt;Oh, one more thing: get your hopes up - there&amp;#039;s no way you can lose with this one.  Tell your friends how well you&amp;#039;re going to do - better yet, post it on Twitter/X.&lt;/p&gt;&lt;p&gt;OK, this is tongue in cheek obviously, but it should give you some good ideas about what to do to avoid curve fitting.&lt;/p&gt;&lt;p&gt;Did you notice anything you might be doing &lt;em&gt;now&lt;/em&gt; when you backtest a strategy?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Fixing Curve Fitted Strategies</title>
        <link href="https://davemabe.com/fixing-curve-fitted-strategies"/>
        <id>https://davemabe.com/fixing-curve-fitted-strategies</id>
        <published>2025-04-15T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last time, Mateo &lt;a href=&quot;https://www.davemabe.com/recognizing-curve-fitting/&quot;&gt;shared how he determined that his strategy was curve-fitting&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Most traders give up on their idea at this point, but there are several ways to improve a strategy once you&amp;#039;ve developed it enough to recognize curve-fitting.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what to do if you find yourself in this situation, similar to Mateo&amp;#039;s.&lt;/p&gt;&lt;p&gt;There probably wasn&amp;#039;t a single rule you included in your strategy that caused &lt;strong&gt;all&lt;/strong&gt; the curve-fitting.&lt;/p&gt;&lt;p&gt;More likely, it was a combination of rules that painted you into a corner, each contributing a different amount.&lt;/p&gt;&lt;p&gt;A good exercise here is to go back and start from scratch, that is, remove all your rules so you&amp;#039;re starting from a large set of unoptimized trades from your backtest.&lt;/p&gt;&lt;p&gt;Then, test each rule in order, watching what happens to the equity curve after you apply the rule.&lt;/p&gt;&lt;p&gt;Consider how robust each rule is likely to be going into the future.  In other words, how predictive is the rule &lt;em&gt;on your original trade signal&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;At every point, be skeptical of the rule - insist that it &amp;quot;tell a coherent story&amp;quot; with your system&amp;#039;s trade signal.&lt;/p&gt;&lt;p&gt;If it doesn&amp;#039;t seem robust, skip it and go to the next rule.&lt;/p&gt;&lt;p&gt;Your mindset should be less about getting your strategy trading live at all costs, and more like &amp;quot;the data fooled me once already, I&amp;#039;m not going to let that happen again!&amp;quot;&lt;/p&gt;&lt;p&gt;Tomorrow I&amp;#039;ll explain the best ways to curve-fit, so you can do the opposite.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Turning a Trading Weakness into an Advantage</title>
        <link href="https://davemabe.com/turning-a-trading-weakness-into-an-advantage"/>
        <id>https://davemabe.com/turning-a-trading-weakness-into-an-advantage</id>
        <published>2025-04-14T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss how one trader went from consistently losing money to trading full-time.&lt;/p&gt;&lt;p&gt;The turning point of this transition was converting one of his weaknesses into a source of new trading ideas.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The trading mistake he was making (it&amp;#039;s very common!)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The frustration of continuing to make the same mistake even though he knew it was losing him money&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How he turned this mistake into a productive source of new trading ideas&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;His transition to trading full-time&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much more&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/turning-a-trading-weakness-into-an-advantage&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Recognizing Curve Fitting</title>
        <link href="https://davemabe.com/recognizing-curve-fitting"/>
        <id>https://davemabe.com/recognizing-curve-fitting</id>
        <published>2025-04-11T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In response to my initial question when I &lt;a href=&quot;https://www.davemabe.com/curve-fitting-series/&quot;&gt;introduced the topic of curve-fitting&lt;/a&gt;, fellow list member and trader Mateo shared his experience when he recognized he had curve-fitted and what he did to verify and fix it (&lt;em&gt;sharing with permission&lt;/em&gt;)&lt;/p&gt;&lt;hr&gt;&lt;p&gt;&lt;strong&gt;Mateo:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I lost money a few years ago on SPY, which I attribute to curve fitting, but I wouldn&amp;#039;t have called it that back then.  I had a great looking and producing backtest on SPY.  I placed a long call that lost, and so I had an idea:  test it on similar tickers!  It was amazing on SPY but completely failed on VOO and SPX.  I realized that I should get substantially similar results on something so correlated.  I found I had filtered out all the bad trades too exactly.&lt;/p&gt;&lt;p&gt;I&amp;#039;m super interested to read your curve fitting insights because you often make me think and eventually change my perspective on market topics.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Dave:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;This is exactly the kind of thing I was looking for.  So, how long did it take you to figure out that you had curve fitted?  And how big was the loss relative to what you were doing at the time?&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Mateo:&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;I figured it out very quickly once I had the idea to try it on other symbols. I only recently learned the word &amp;quot;robustness testing,&amp;quot; but I&amp;#039;d say within a couple of hours. In this case, it was a small loss, thankfully.&lt;/p&gt;&lt;hr&gt;&lt;p&gt;Thanks so much to Mateo for sharing his experience!&lt;/p&gt;&lt;p&gt;He highlights a great way to quickly recognize curve-fitting in his strategy, and he recognized quickly (a couple hours!) what was going on well before significant losses mounted.&lt;/p&gt;&lt;p&gt;If your strategy is well-designed and predictive, it &lt;em&gt;should&lt;/em&gt; generalize to other tickers and markets.&lt;/p&gt;&lt;p&gt;If it doesn&amp;#039;t (as Mateo discovered), it should give you pause. It doesn&amp;#039;t necessarily mean you should abandon your idea, though.&lt;/p&gt;&lt;p&gt;Next time, I&amp;#039;ll discuss ways to try to improve his strategy without completely giving up on it.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Your Strategy Curve-Fitted?</title>
        <link href="https://davemabe.com/is-your-strategy-curve-fitted"/>
        <id>https://davemabe.com/is-your-strategy-curve-fitted</id>
        <published>2025-04-10T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In my last message, I talked about the &lt;a href=&quot;https://www.davemabe.com/curve-fitting-whats-the-worst-that-can-happen/&quot;&gt;worst thing that can happen with curve-fitting&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Now I ask the question: Is your strategy curve-fitted?&lt;/p&gt;&lt;p&gt;Yes - to some degree.&lt;/p&gt;&lt;p&gt;Because there&amp;#039;s a little bit of curve-fitting in &lt;em&gt;every&lt;/em&gt; strategy.&lt;/p&gt;&lt;p&gt;Curve-fitting is not a binary metric - you can&amp;#039;t use a curve-fitting ruler and measure to see if your strategy meets some standardized definition.&lt;/p&gt;&lt;p&gt;Think of curve-fitting as having a whole range of degrees rather than some black or white, true/false measurement.&lt;/p&gt;&lt;p&gt;Consider all the rules that make up your strategy.  For example, relative volume needs to be greater than X for a signal to meet a strategy&amp;#039;s criteria.&lt;/p&gt;&lt;p&gt;Even the most obvious, predictive rule that&amp;#039;s highly correlated with profit has a little bit of curve-fitting.&lt;/p&gt;&lt;p&gt;That&amp;#039;s because strategies, by definition, are inherently trying to predict the future - which, as it turns out, is hard. Things are always changing, and there&amp;#039;s no guarantee a pattern you see will continue forever.&lt;/p&gt;&lt;p&gt;If you accept there&amp;#039;s a little curve-fitting in every trading rule you apply, it shouldn&amp;#039;t cripple you with fear. The fact there&amp;#039;s a non-zero chance of injury or death when you cross the street doesn&amp;#039;t keep you locked up in your house forever so you can avoid the miniscule risk.&lt;/p&gt;&lt;p&gt;Tomorrow, I&amp;#039;ll discuss things you can do when designing your strategy to minimize curve-fitting so you end up with a robust strategy with staying power.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. If you&amp;#039;re just getting started trading and you&amp;#039;re not getting the traction you know you could be, take a look at the &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot;&gt;Get Systematic Roadmap&lt;/a&gt;. Most beginning traders make the same few mistakes over and over without ever realizing it. This custom blueprint gives you a solid foundation so you can create and improve your own trading strategies with real edge.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Curve Fitting - What's the Worst That Can Happen?</title>
        <link href="https://davemabe.com/curve-fitting-whats-the-worst-that-can-happen"/>
        <id>https://davemabe.com/curve-fitting-whats-the-worst-that-can-happen</id>
        <published>2025-04-09T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Yesterday, I introduced this &lt;a href=&quot;https://www.davemabe.com/curve-fitting-series/&quot;&gt;series on Curve Fitting&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Ever since reading articles years ago about the dangers of curve fitting and how &amp;quot;many a trading career has been shattered&amp;quot; from it, I&amp;#039;ve been skeptical of these claims.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not that I think it&amp;#039;s impossible to lose money from curve fitting your strategy.  You absolutely can.&lt;/p&gt;&lt;p&gt;But to lose a ton of money from it, you would have to be incredibly naive, have a reckless appetite for risk, and have a sloppy process for making changes to your strategy.&lt;/p&gt;&lt;p&gt;I haven&amp;#039;t met a trader yet that I would describe that way.&lt;/p&gt;&lt;p&gt;You should have a default stance of skepticism - about the industry in general, anything you see traders say (especially on Twitter), and your trading strategies.&lt;/p&gt;&lt;p&gt;And if you&amp;#039;re reading this, you probably already have it.&lt;/p&gt;&lt;p&gt;When you have a healthy dose of paranoia, a decent process for making changes, and don&amp;#039;t aggressively size up, your downside should already be limited.&lt;/p&gt;&lt;p&gt;Even if you naively apply a rule that&amp;#039;s egregiously curve-fitted and go live with it (YOLO!), a good process will be able to spot it quickly.&lt;/p&gt;&lt;p&gt;When you have a solid process and are reasonably careful, the worst case scenario from curve-fitting a halfway decent strategy is a flat equity curve that you thought would be up and to the right, not the &amp;quot;end of a trading career.&amp;quot;&lt;/p&gt;&lt;p&gt;So work on your process, and the curve-fitting boogeyman should become a lot less scary.&lt;/p&gt;&lt;p&gt;Tomorrow, we have to talk about what curve-fitting is and isn&amp;#039;t.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Curve-fitting is on my mind based on the feedback of several traders who are beta testing a new product I&amp;#039;m working on - a tool that helps you create a trading strategy with edge. The window for beta testing is ending soon, so reply quickly if you&amp;#039;re interested in a sneak peek.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Curve Fitting Series</title>
        <link href="https://davemabe.com/curve-fitting-series"/>
        <id>https://davemabe.com/curve-fitting-series</id>
        <published>2025-04-08T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;m going to do something a little different this week. Instead of a single email on Wednesday, I will send an email each day about a single topic: curve fitting.&lt;/p&gt;&lt;p&gt;In all my interactions with traders, I think there&amp;#039;s no more misunderstood topic than &lt;strong&gt;curve fitting&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve seen traders freeze up and not take action due to a fear of curve fitting.&lt;/p&gt;&lt;p&gt;Some traders bypass ways to improve their trading strategy that would clearly make them more money because they &amp;quot;fear it might be curve fitting.&amp;quot;&lt;/p&gt;&lt;p&gt;And yet other traders do quite well by seemingly ignoring the topic altogether.&lt;/p&gt;&lt;p&gt;What&amp;#039;s the right way for traders to think about curve fitting?  That&amp;#039;s what I want to explore in this series.&lt;/p&gt;&lt;p&gt;First - a question.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Have you ever lost money in your own trading due to a decision you eventually concluded was curve fitting?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Hit reply and let me know - I&amp;#039;m genuinely curious.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. When I started this newsletter, I wondered if I would have enough topics to write about. I quickly realized that was the least of my concerns.  I keep a list of topics in Notion so I don&amp;#039;t forget them. There are over 300 ideas on the list and counting!&lt;/p&gt;&lt;p&gt;I realize now I&amp;#039;ll never get to all of them if I don&amp;#039;t write more frequently, hence this experiment.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Trade When The Entire Market Is Moving</title>
        <link href="https://davemabe.com/how-to-trade-when-the-entire-market-is-moving-2"/>
        <id>https://davemabe.com/how-to-trade-when-the-entire-market-is-moving-2</id>
        <published>2025-04-07T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss how to prepare for trading days when the entire market moves.&lt;/p&gt;&lt;p&gt;When your strategy is looking for unusual moves, but then on the rare trading days where everything is &amp;quot;unusual,&amp;quot; what do you do?&lt;/p&gt;&lt;p&gt;I revisit the first time this happened to me when trading gaps.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How to react in real time when you trade systematically&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What you can do afterwards to prepare for the next day&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to zoom out and look at the bigger picture on days like these&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/how-to-trade-when-everything-is-moving?utm_source=davemabe.com&amp;amp;utm_campaign=everything_moving&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. Interesting that we recorded this episode over two weeks ago, back when things were relatively normal.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Four Years of Practice</title>
        <link href="https://davemabe.com/four-years-of-practice"/>
        <id>https://davemabe.com/four-years-of-practice</id>
        <published>2025-04-02T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;My wife and I went to a concert over the weekend.  She&amp;#039;s always on the lookout for live music to go to, mostly at a storied local venue called &lt;a href=&quot;https://catscradle.com/&quot;&gt;the Cat&amp;#039;s Cradle&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;The band we saw was &lt;a href=&quot;https://www.palmyratheband.com/&quot;&gt;Palmyra&lt;/a&gt;, and they were great - fantastic energy, a cohesive set, and all-around fun to watch. They were very polished.&lt;/p&gt;&lt;p&gt;Partway through, the lead singer shared a little about their background.&lt;/p&gt;&lt;p&gt;And it became very clear how they had become so good.&lt;/p&gt;&lt;p&gt;They have been touring for FOUR STRAIGHT YEARS.&lt;/p&gt;&lt;p&gt;When they started, they played on the road in any place that would let them to play.&lt;/p&gt;&lt;p&gt;Imagine their process - all the mistakes, all the crowd reactions, all the tweaks to their performance and songs over time.&lt;/p&gt;&lt;p&gt;They put themselves in a position where they were forced to get better - with that much practice, how could you NOT get great?&lt;/p&gt;&lt;p&gt;Now imagine two traders.&lt;/p&gt;&lt;p&gt;One is talented but reviews their performance every once in a while when it&amp;#039;s convenient.&lt;/p&gt;&lt;p&gt;The other isn&amp;#039;t as talented, but meticulously reviews his trades every day, constantly brainstorming ways to get better and improve his strategies.&lt;/p&gt;&lt;p&gt;Which trader do you think will be better?&lt;/p&gt;&lt;p&gt;What about after &lt;strong&gt;four years&lt;/strong&gt;?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Do You Chase Trading Perfection?</title>
        <link href="https://davemabe.com/do-you-chase-trading-perfection"/>
        <id>https://davemabe.com/do-you-chase-trading-perfection</id>
        <published>2025-03-31T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s episode of Line Your Own Pockets, we discuss some traders&amp;#039; quest for the perfect strategy and how this can stand in the way of trading success.&lt;/p&gt;&lt;p&gt;You don&amp;#039;t need a perfect strategy to do well.  Needing to be perfect is an impediment.&lt;/p&gt;&lt;p&gt;We discuss ways to untangle traders from this counterproductive mindset.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/do-you-chase-trading-perfection?utm_source=davemabe.com&amp;amp;utm_campaign=perfection&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Simple Ways to be a Losing Trader</title>
        <link href="https://davemabe.com/simple-ways-to-be-a-losing-trader"/>
        <id>https://davemabe.com/simple-ways-to-be-a-losing-trader</id>
        <published>2025-03-26T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here are some simple ways to be a losing trader.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Don&amp;#039;t keep a journal - just eyeball your daily P&amp;amp;L number&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Enter trades without a plan to exit&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Place trades manually in the GUI (or even better, on your phone)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Use ballpark position sizing - size your positions based on feel&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Watch other traders post their trades on X/Twitter&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Whatever you do, don&amp;#039;t backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Any other good ones that I missed?&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Make Things Real When Trading Is Going Well</title>
        <link href="https://davemabe.com/make-things-real-when-trading-is-going-well"/>
        <id>https://davemabe.com/make-things-real-when-trading-is-going-well</id>
        <published>2025-03-24T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, I describe something I do with all the traders I work with.&lt;/p&gt;&lt;p&gt;When your trading is going well, sometimes it can become removed from real life - just a number in your account that you&amp;#039;re trying to increase.&lt;/p&gt;&lt;p&gt;To get to the next level, it&amp;#039;s important to make trading real - especially if you&amp;#039;re trading on the side - to make it more than a number in your bank account.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/make-trading-real-when-things-are-going-well?utm_source=davemabe.com&amp;amp;utm_campaign=keepsake&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Best Way to Create an Awesome Trading Strategy Is...</title>
        <link href="https://davemabe.com/the-best-way-to-create-an-awesome-trading-strategy-is"/>
        <id>https://davemabe.com/the-best-way-to-create-an-awesome-trading-strategy-is</id>
        <published>2025-03-19T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;...to start with an OK trading strategy and improve it.&lt;/p&gt;&lt;p&gt;By far my favorite trading topic is how to improve a trading strategy.&lt;/p&gt;&lt;p&gt;I see so many traders get stuck in a drawdown because &amp;quot;my strategy stopped working.&amp;quot;&lt;/p&gt;&lt;p&gt;But there are &lt;strong&gt;lots of different ways&lt;/strong&gt; to make a trading strategy better.&lt;/p&gt;&lt;p&gt;The more you work on your process for adapting and improving, the more robust your strategies will be.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a slide from the webinar I&amp;#039;m doing tomorrow for Interactive Brokers called &lt;a href=&quot;https://www.interactivebrokers.com/campus/webinars/how-to-improve-a-trading-strategy/?source=Mabe&quot;&gt;How To Improve Any Trading Strategy&lt;/a&gt; that describes several ways to make your strategy better.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Ways To Improve a Strategy&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Exclude the worst trades using a rule&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Adding more trades to an existing system&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Take your best trades with bigger size&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Use what you’ve learned to create a new strategy&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I&amp;#039;ll discuss the specific situations to look for in your strategies that make each of these improvement paths viable.&lt;/p&gt;&lt;p&gt;The webinar is tomorrow, 3/20/2025 at 2pm ET.  Even if you can&amp;#039;t attend live, go ahead and register so you can be notified of the recording and watch it afterward at your leisure.&lt;/p&gt;&lt;p&gt;This is not a sales call masquerading as a webinar - this is practical advice to apply to your own trading.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.interactivebrokers.com/campus/webinars/how-to-improve-a-trading-strategy/?source=Mabe&quot;&gt;Register Here&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I hope to see you there.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Take Your Best Trades with Bigger Size</title>
        <link href="https://davemabe.com/take-your-best-trades-with-bigger-size-2"/>
        <id>https://davemabe.com/take-your-best-trades-with-bigger-size-2</id>
        <published>2025-03-17T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, I describe a free call I had with a fellow list member.&lt;/p&gt;&lt;p&gt;He has made money every year for over a decade but was thinking about quitting trading.&lt;/p&gt;&lt;p&gt;Why? He felt like he had reached a plateau that no matter how hard he tried, he couldn&amp;#039;t push through.&lt;/p&gt;&lt;p&gt;After learning more about how he traded, I suggested two main ways to improve.&lt;/p&gt;&lt;p&gt;Automate his trades so he can add more trades to his system.&lt;/p&gt;&lt;p&gt;But the biggest potential for improvement was identifying his highest confidence trades and taking them with bigger size.&lt;/p&gt;&lt;p&gt;Although this is easier in some strategies than others, this is one of the best ways to improve a trading strategy.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/take-your-best-trades-with-bigger-size?utm_source=davemabe.com&amp;amp;utm_campaign=bigger_size&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Announcement&lt;/strong&gt;: I&amp;#039;ll be discussing this topic in a free webinar with Interactive Brokers this coming Thursday at 2pm ET called &lt;strong&gt;How To Improve Any Trading Strategy&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.interactivebrokers.com/campus/webinars/how-to-improve-a-trading-strategy/?source=Mabe&quot;&gt;REGISTER FOR FREE HERE&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Exclude Chinese Stocks Automatically</title>
        <link href="https://davemabe.com/how-to-exclude-chinese-stocks-automatically"/>
        <id>https://davemabe.com/how-to-exclude-chinese-stocks-automatically</id>
        <published>2025-03-12T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Many traders recognize the unpredictable behavior of Chinese stocks and look to exclude them from their strategies.&lt;/p&gt;&lt;p&gt;Or specifically include them in a strategy.&lt;/p&gt;&lt;p&gt;Before &lt;a href=&quot;https://lineyourownpockets.com/episodes/why-dave-left-trade-ideas?utm_source=davemabe.com&amp;amp;utm_campaign=chinese_stocks&quot;&gt;I left Trade-Ideas&lt;/a&gt;, I implemented a feature I knew would be valuable: dynamic lists based on country.&lt;/p&gt;&lt;p&gt;In Trade-Ideas, you can use a symbol list to define the universe to your strategy.&lt;/p&gt;&lt;p&gt;You can create your own and manually add symbols to it and then include them in your strategy by pointing to it in the Symbol Lists tab in the configuration.&lt;/p&gt;&lt;p&gt;You can choose to restrict the strategy to the symbol list or you can exclude the symbols in the chosen lists.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a steady stream of Chinese IPOs, so if you try to manually maintain a list of symbols, it becomes outdated quickly.&lt;/p&gt;&lt;p&gt;This is where the new feature comes in.&lt;/p&gt;&lt;p&gt;If you go to the symbol lists tab in the Configuration window, you&amp;#039;ll see a Countries item that you can expand.&lt;/p&gt;&lt;p&gt;These lists are dynamically generated and maintained on a daily basis, so they&amp;#039;re always up to date.&lt;/p&gt;&lt;p&gt;You can add lists from any country and exclude/include multiple symbol lists in your strategy, even mixing dynamically generated lists and your own custom lists.&lt;/p&gt;&lt;p&gt;If you find this useful, hit reply and let me know - I suspect there are a lot of users unaware of this feature.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Profitable Traders Keep A Journal</title>
        <link href="https://davemabe.com/profitable-traders-keep-a-journal"/>
        <id>https://davemabe.com/profitable-traders-keep-a-journal</id>
        <published>2025-03-10T19:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Winners keep score.  Period.&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;What a trading journal is and isn&amp;#039;t&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Mistakes most traders make when keeping a journal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What data points you need to keep track of and what you can ignore&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Why keeping a journal helps you make money&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to be as efficient as possible&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/profitable-traders-keep-a-journal?utm_source=davemabe.com&amp;amp;utm_campaign=profitable_journal&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;&lt;p&gt;P.S. I&amp;#039;m carving out time again for some free calls.  If you&amp;#039;re a trader and you aren&amp;#039;t making money each month, I guarantee I can help.  Click here to &lt;a href=&quot;https://calendly.com/davemabe/freechat&quot;&gt;schedule a free call&lt;/a&gt; - no strings attached.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Automate Trade Exports from TWS</title>
        <link href="https://davemabe.com/automate-trade-exports-from-tws"/>
        <id>https://davemabe.com/automate-trade-exports-from-tws</id>
        <published>2025-03-05T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s another lesser-known feature in Trader Workstation that I encourage traders to explore.&lt;/p&gt;&lt;p&gt;Getting a list of your trade executions in any trading platform can be a pain - especially when you should be adding your trades to your journal daily.&lt;/p&gt;&lt;p&gt;Because you should be doing it routinely, it&amp;#039;s worth thinking about how to make this process as smooth as possible by removing as much friction as you can.&lt;/p&gt;&lt;p&gt;Most IB traders - if they track their performance with a journal at all - wait until the following morning for the daily execution report to become available in their IB account.&lt;/p&gt;&lt;p&gt;If you wait until then, you&amp;#039;ll likely forget important details about your trades that you need to capture when they&amp;#039;re fresh in your mind.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s where the Export Reports feature in TWS comes in handy.&lt;/p&gt;&lt;p&gt;The image above shows how to enable it. Once activated, every few minutes (I have mine set to 5), TWS writes a CSV file with all your executions for the day to a folder you specify.&lt;/p&gt;&lt;p&gt;You can control which fields are written, including the important &lt;a href=&quot;https://interactivebrokers.github.io/tws-api/classIBApi_1_1Order.html#a9aa003d6c9f80b79d822a426e0fd5f5b&quot;&gt;Order Reference field&lt;/a&gt; which can be used in your custom program to specify which strategy the trade came from.&lt;/p&gt;&lt;p&gt;This lets you keep an automatic archive of all your executions so you don&amp;#039;t have to remember how to generate the list in your IB account.  (I always forget how to do it and have to relearn it every time!)&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a screenshot of the CSV files in my export directory - the oldest one is from 2016:&lt;/p&gt;&lt;p&gt;Not only does this provide a convenient archive, but you can use the files to easily enter trades into your journal.&lt;/p&gt;&lt;p&gt;I have a script that I run via an AutoHotKey shortcut that looks for today&amp;#039;s file, formats it exactly the way TraderVue expects, and copies the content to my clipboard.&lt;/p&gt;&lt;p&gt;Then I just paste it in the TraderVue trade import field - no data entry required.&lt;/p&gt;&lt;p&gt;This will soon be coming to DAS Trader - I put in a request to them recently for this feature and they&amp;#039;ve confirmed they&amp;#039;re working on it now.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What NOT To Automate In Your Trading Business</title>
        <link href="https://davemabe.com/what-not-to-automate-in-your-trading-business"/>
        <id>https://davemabe.com/what-not-to-automate-in-your-trading-business</id>
        <published>2025-03-03T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss a topic that might sound strange coming from me - what parts of your trading business SHOULDN&amp;#039;T you automate?&lt;/p&gt;&lt;p&gt;Shouldn&amp;#039;t you automate everything?&lt;/p&gt;&lt;p&gt;This is something I&amp;#039;ve changed my thinking in over the years.&lt;/p&gt;&lt;p&gt;There are some things in your trading that you shouldn&amp;#039;t automate even if it&amp;#039;s technically possible to do so.&lt;/p&gt;&lt;p&gt;We discuss the realization I had recently about this and how you should think about this in your trading.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/what-not-to-automate-in-your-trading-business?utm_source=davemabe.com&amp;amp;utm_campaign=no_automate&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Overriding Your Plan - The Right Way</title>
        <link href="https://davemabe.com/overriding-your-plan-the-right-way"/>
        <id>https://davemabe.com/overriding-your-plan-the-right-way</id>
        <published>2025-02-26T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;ve created a solid strategy by backtesting and you&amp;#039;re trading it live.&lt;/p&gt;&lt;p&gt;You assumed you thought of everything.&lt;/p&gt;&lt;p&gt;But now you&amp;#039;re in a trade and you realize it&amp;#039;s a situation you didn&amp;#039;t consider, so you decide to use your intuition and override your system.&lt;/p&gt;&lt;p&gt;You can guess what happens next - your decision to override your system ruined a perfectly good trade.&lt;/p&gt;&lt;p&gt;I worked with one trader who could not stop manually overriding his strategy.&lt;/p&gt;&lt;p&gt;And his results were inevitably worse than if he simply let his trades play out according to the system he designed.&lt;/p&gt;&lt;p&gt;&amp;quot;I just need to be more disciplined&amp;quot; he would tell me.&lt;/p&gt;&lt;p&gt;And I assumed that was correct - but the overriding continued.&lt;/p&gt;&lt;p&gt;Instead of cracking the whip on this discipline problem, I had him walk through an example of his thought process as he overrode his plan in a particular trade.&lt;/p&gt;&lt;p&gt;I realized this wasn&amp;#039;t a matter of poor self-control - he wasn&amp;#039;t overriding out of pure emotion.&lt;/p&gt;&lt;p&gt;There was sound reasoning for each of these override instances. The ideas here were the seeds that could turn into viable improvements in this strategy and even new unique strategies themselves.&lt;/p&gt;&lt;p&gt;So, instead of trying harder and harder to muster up enough discipline to follow the rules, we took a completely different approach.&lt;/p&gt;&lt;p&gt;We turned this lack of self-control into a process to generate new ideas.&lt;/p&gt;&lt;p&gt;Whenever he felt the need to override the plan, he would use that energy to document the situation - take a screenshot of the chart, make notes about his theory, etc.&lt;/p&gt;&lt;p&gt;Then after market hours, he would treat it as a new idea to backtest and track down an answer to.&lt;/p&gt;&lt;p&gt;Over time this turns into a steady stream of new ideas - potentially profitable ideas to test.&lt;/p&gt;&lt;p&gt;He turned his lack of self-discipline into an advantage.&lt;/p&gt;&lt;p&gt;Fast forward several weeks and this same trader mustered the courage to ditch his day job and trade for a living.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Edge Erosion</title>
        <link href="https://davemabe.com/edge-erosion"/>
        <id>https://davemabe.com/edge-erosion</id>
        <published>2025-02-24T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Also known as &amp;quot;the sky is falling.&amp;quot;&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss a topic that&amp;#039;s been around as long as strategies have existed: &lt;strong&gt;Edge Erosion&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;We go over:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The definition of Edge Erosion&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The inevitability of strategies decaying&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your ability to adapt is the most important thing&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Whether or not your edge is eroding, your path to long-term success is the same&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/edge-erosion?utm_source=davemabe.com&amp;amp;utm_campaign=edge_erosion&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Prevent TWS Nightly Shutdowns</title>
        <link href="https://davemabe.com/how-to-prevent-tws-nightly-shutdowns"/>
        <id>https://davemabe.com/how-to-prevent-tws-nightly-shutdowns</id>
        <published>2025-02-19T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you&amp;#039;re an IB user, you&amp;#039;re probably familiar with Trader Workstation&amp;#039;s (TWS) annoying nightly shutdowns.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve been an IB customer forever, so until recently, I thought this was something you just had to live with.&lt;/p&gt;&lt;p&gt;If you wanted to trade the early pre-market starting at 4 am, you had to wake up and log into TWS first.&lt;/p&gt;&lt;p&gt;As some of you know, I&amp;#039;m an early riser, but not THAT early.&lt;/p&gt;&lt;p&gt;Somewhere along the way (not sure when), IB has added an option to control this behavior so that you only have to actually login once a week instead of daily.&lt;/p&gt;&lt;p&gt;In TWS, go to &lt;strong&gt;Global Configuration&lt;/strong&gt;, then go to &lt;strong&gt;Lock and Exit&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll see the configuration screen below.  The default is &lt;strong&gt;Auto logoff&lt;/strong&gt;, but if you enable the &lt;strong&gt;Auto restart&lt;/strong&gt; option, TWS will survive the night and you&amp;#039;ll still be logged in the following morning.&lt;/p&gt;&lt;p&gt;Very useful (essential!) if you want to trade the pre-market.&lt;/p&gt;&lt;p&gt;I have a few users using software I&amp;#039;ve developed to trade automatically through DAS (including the short locates) and/or TWS.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re interested in hearing more about the software, hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Position Sizing is Sexy</title>
        <link href="https://davemabe.com/position-sizing-is-sexy"/>
        <id>https://davemabe.com/position-sizing-is-sexy</id>
        <published>2025-02-17T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;OK, maybe position sizing isn&amp;#039;t &lt;em&gt;sexy&lt;/em&gt;, but it&amp;#039;s certainly an underrated topic that a lot of traders get wrong.  (For a real-life example, see &lt;a href=&quot;https://www.davemabe.com/think-position-sizing-is-boring-check-this-out/&quot;&gt;this message&lt;/a&gt; I sent to the list a few months ago.)&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, we discuss all the position sizing techniques I&amp;#039;ve used in my strategies. Michael was shocked to hear I use constant sizing in a couple of my models, but despite his skepticism, I can assure you there&amp;#039;s a good reason for it.&lt;/p&gt;&lt;p&gt;We discuss different sizing approaches:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Constant shares&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Constant dollars&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Percentage of account&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Sizing by volatility (ATR, for example)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;R-Multiple approach (sizing on distance to stop)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Kelly criterion&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Martingale&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/position-sizing-is-sexy?utm_source=davemabe.com&amp;amp;utm_campaign=position_sizing_pod&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Don't Trade Futures</title>
        <link href="https://davemabe.com/why-i-dont-trade-futures"/>
        <id>https://davemabe.com/why-i-dont-trade-futures</id>
        <published>2025-02-12T20:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A lot of traders I talk to seem surprised when I tell them I don&amp;#039;t trade futures contracts.&lt;/p&gt;&lt;p&gt;When I explain why, I can tell there are some a-ha moments in their responses, so I thought I&amp;#039;d share the reasons and see what you think.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not that I don&amp;#039;t think I can find an edge in futures contracts (I spent time researching a few years ago and found an edge or two).&lt;/p&gt;&lt;p&gt;And I get that there&amp;#039;s a lot of liquidity and leverage in the major contracts - all things being equal is a good thing.&lt;/p&gt;&lt;p&gt;But, when you trade seriously you need to have a path to the kind of confidence that allows you to trade with significant size.&lt;/p&gt;&lt;p&gt;I could see that path in futures, but I could also see lots more paths to confidence in lots more edges trading stocks.  Here&amp;#039;s why.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;With Futures, Every Trader Is Looking at the Same Chart&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Maybe they&amp;#039;re looking at different timeframes, but everyone is basically looking at the same chart.  Which is very easy to do.  Anyone with an internet connection can look at the same chart (for free!) that every other trader is looking at.&lt;/p&gt;&lt;p&gt;With equities, there are at least 2,000 tradeable stocks each day. Scanning all those charts in real-time is a far more technically challenging problem to solve.&lt;/p&gt;&lt;p&gt;So by trading equities, you instantly reduce your trading competition to a much lower number.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;It&amp;#039;s Trivial to Backtest A Single Chart&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Think of the number of tools out there that can &amp;quot;backtest&amp;quot; a single instrument. It&amp;#039;s hard to find a tool that doesn&amp;#039;t backtest because it&amp;#039;s a relatively simple problem to solve.&lt;/p&gt;&lt;p&gt;My daughter created a backtester in a couple of days! That&amp;#039;s not the hard part, though. The hard part is applying it to the entire market.&lt;/p&gt;&lt;p&gt;So, again, your ability to backtest across the entire market will reduce your trading competition still more.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;More Opportunities - A LOT More&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;When you apply a trading strategy to futures contracts, what&amp;#039;s the most number of signals you can generate in a day? Take a simple strategy like an opening range breakout.&lt;/p&gt;&lt;p&gt;With a futures contract, there is by definition at most one occurrence of an opening range breakout per day. Some days there will be zero. Of course, not all of them are going to have an edge.&lt;/p&gt;&lt;p&gt;So you&amp;#039;re going to have to go back a long time to gather enough signals to construct a real trading edge.&lt;/p&gt;&lt;p&gt;Now think about how many opening range breakouts there are in the stock market every single day. It&amp;#039;s a ton.&lt;/p&gt;&lt;p&gt;There&amp;#039;s plenty of edge there if you know how to find it. (For reference, one trader I&amp;#039;m coaching on his backtesting process created a strategy with 3+ trades a day with serious trading edge.)&lt;/p&gt;&lt;p&gt;You might find 3 trades a month with that type of strategy in futures.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not that there&amp;#039;s no edge to find in futures, there&amp;#039;s just more edge in equities and it&amp;#039;s easier to find &lt;strong&gt;with the right process&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;So with equities, there is:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Less trading competition&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;More opportunities&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;More trading edge that&amp;#039;s easier to find&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Oh, and less curve fitting to worry about.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You Finally Have an Edge - Now What?</title>
        <link href="https://davemabe.com/you-finally-have-an-edge-now-what"/>
        <id>https://davemabe.com/you-finally-have-an-edge-now-what</id>
        <published>2025-02-10T15:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode of Line Your Own Pockets, we discuss how you should think about sizing up a strategy that you know has a trading edge.&lt;/p&gt;&lt;p&gt;We go over:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Why most traders size up too quickly&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The math behind changing position size&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The situation to avoid when you&amp;#039;re sizing up&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/sizing-up-a-trading-strategy?utm_source=davemabe.com&amp;amp;utm_campaign=sizing_up_pod&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Scaling Up a Trading Strategy</title>
        <link href="https://davemabe.com/scaling-up-a-trading-strategy"/>
        <id>https://davemabe.com/scaling-up-a-trading-strategy</id>
        <published>2025-02-05T19:50:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Once you&amp;#039;ve got a trading strategy that&amp;#039;s working - even a little bit - there are lots of ways to improve it.&lt;/p&gt;&lt;p&gt;Most traders simply increase size in their existing trades, but that&amp;#039;s only one of many possible dimensions for increasing profits.&lt;/p&gt;&lt;p&gt;Raising your size leaves the underlying strategy unchanged (it&amp;#039;s working - don&amp;#039;t touch it!)&lt;/p&gt;&lt;p&gt;But you have so many options for improving the strategy itself:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Add a rule to remove poor trades (without curve fitting)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Find the subset of trades with the most edge and trade them bigger&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Add more trades to your system that you&amp;#039;re currently ignoring&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;One of the most overlooked approaches is the last one - adding more trades.&lt;/p&gt;&lt;p&gt;Think of it as scaling horizontally (adding more trades) versus scaling vertically (simply adding size).&lt;/p&gt;&lt;p&gt;In the next webinar on Monday, I&amp;#039;ll be sharing how I did this and took a modest strategy that was trading 2-4 times per day and added a LOT more trades - all while significantly &lt;strong&gt;increasing the average profit per trade&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Bring your questions - there were several good ones in last month&amp;#039;s webinar and the feedback was great.&lt;/p&gt;&lt;p&gt;I&amp;#039;m confident this one will be even better.&lt;/p&gt;&lt;p&gt;Don&amp;#039;t worry - it&amp;#039;s free - and it&amp;#039;s not some thinly veiled sales call masquerading as a webinar.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll be sharing exactly what I learned during that process so you can get better, too.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://attendee.gotowebinar.com/register/5774382626489326940?source=DM&quot;&gt;Register for the Webinar&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I hope to see you there - if you can&amp;#039;t make it, register anyway to get a link for the recording.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Should You EVER Take Partial Profits?</title>
        <link href="https://davemabe.com/should-you-ever-take-partial-profits"/>
        <id>https://davemabe.com/should-you-ever-take-partial-profits</id>
        <published>2025-02-03T19:40:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode of Line Your Own Pockets, we discuss one of the most common suggestions from so- called trading gurus and why it&amp;#039;s so bad.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Why taking partial profits is not all it&amp;#039;s cracked up to be&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The math behind taking partials in a strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;One narrow situation where I DO recommend taking partials&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://lineyourownpockets.com/episodes/should-you-ever-take-partial-profits?utm_source=davemabe.com&amp;amp;utm_campaign=partial_profits&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Shorter Drawdowns</title>
        <link href="https://davemabe.com/shorter-drawdowns"/>
        <id>https://davemabe.com/shorter-drawdowns</id>
        <published>2025-01-29T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Think about your most recent drawdown.&lt;/p&gt;&lt;p&gt;How deep was it?  How long was it before your next equity high?&lt;/p&gt;&lt;p&gt;Now imagine how it would have felt if it was half as long and half as deep.&lt;/p&gt;&lt;p&gt;Traders who have more manageable drawdowns didn&amp;#039;t get there by accident.&lt;/p&gt;&lt;p&gt;Traders who are successful for decades didn&amp;#039;t have a magical thought one day that created their success.&lt;/p&gt;&lt;p&gt;It was hundreds of small decisions over months and years.&lt;/p&gt;&lt;p&gt;They&amp;#039;re trading strategies that are better than yours now, but...&lt;/p&gt;&lt;p&gt;They started with a strategy just like yours (or even worse) and improved it over time.&lt;/p&gt;&lt;p&gt;Sure, good trading is hard, but it ain&amp;#039;t magic.&lt;/p&gt;&lt;p&gt;What can you do &lt;strong&gt;today&lt;/strong&gt; to be the kind of trader in 6 months that has significantly shallower drawdowns?&lt;/p&gt;&lt;p&gt;Doing things today gives you a path to confidence which will eventually lead to trading with bigger size.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Left Trade-Ideas</title>
        <link href="https://davemabe.com/why-i-left-trade-ideas"/>
        <id>https://davemabe.com/why-i-left-trade-ideas</id>
        <published>2025-01-27T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode of Line Your Own Pockets, I share the details about why I left Trade-Ideas several months ago.&lt;/p&gt;&lt;p&gt;I discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Why I decided I had to leave Trade-Ideas&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What happened to my trading immediately after&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The power of focusing on one thing rather than spreading yourself too thin&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/why-dave-left-trade-ideas?utm_source=davemabe.com&amp;amp;utm_campaign=leaving_tradeideas&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Smarter Custom Formulas</title>
        <link href="https://davemabe.com/smarter-custom-formulas"/>
        <id>https://davemabe.com/smarter-custom-formulas</id>
        <published>2025-01-22T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Tom G., a client (name used with permission), came to me with an observation.&lt;/p&gt;&lt;p&gt;&amp;quot;I&amp;#039;m seeing a pattern with my strategy.  When filter A, B, and C values increase, those trades tend to perform better.  Is there a way to scan for that?&amp;quot;&lt;/p&gt;&lt;p&gt;The smart way to do this is to create a custom formula for A &amp;lt; B &amp;lt; C.&lt;/p&gt;&lt;p&gt;When the values increase, the custom formula is 1, and 0 otherwise.&lt;/p&gt;&lt;p&gt;And that&amp;#039;s how most traders handle it - but there&amp;#039;s a far more powerful way to do this.&lt;/p&gt;&lt;p&gt;When you reduce a situation to a yes/no boolean, you essentially remove valuable details in the process.&lt;/p&gt;&lt;p&gt;Consider two very different examples:&lt;/p&gt;&lt;p&gt;A = 1, B = 2, C = 3&lt;/p&gt;&lt;p&gt;A = 1, B = 2, C = 1000&lt;/p&gt;&lt;p&gt;In both cases, the value for the &amp;quot;increasing&amp;quot; custom formula would be 1 since A &amp;lt; B &amp;lt; C.&lt;/p&gt;&lt;p&gt;But, of course, these are VERY different situations - it doesn&amp;#039;t make sense to reduce this to a simple boolean.&lt;/p&gt;&lt;p&gt;To simplify the example, let&amp;#039;s consider a more common scenario familiar to traders.&lt;/p&gt;&lt;p&gt;How does your strategy perform when the price is above the 50-day moving average versus below?&lt;/p&gt;&lt;p&gt;You could create a custom formula for Price &amp;gt; 50DayMA that results in values of 1 or 0.&lt;/p&gt;&lt;p&gt;A better way is to use a continuous variable such as the distance from the 50-day moving average:&lt;/p&gt;&lt;p&gt;Distance from 50DayMA = (Price - 50DayMA) / 50DayMA&lt;/p&gt;&lt;p&gt;This allows you to use a single variable without removing important details unnecessarily.&lt;/p&gt;&lt;p&gt;Continuous variables are far easier to optimize than booleans.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Handling a Trading Mistake</title>
        <link href="https://davemabe.com/handling-a-trading-mistake"/>
        <id>https://davemabe.com/handling-a-trading-mistake</id>
        <published>2025-01-20T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this episode of Line Your Own Pockets, I shared the details of a trading mistake one of the traders I coach made and how he responded to it.&lt;/p&gt;&lt;p&gt;This situation is a very common scenario among traders - how would you have handled it?&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;How to respond to a trading mistake like a pro&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The worst outcome is when you MAKE money from a mistake&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Details about his trading setup which is a novel use of Trade-Ideas and Amibroker&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to tighten up your process so you don&amp;#039;t make the same mistake again&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/handling-a-trading-mistake?utm_source=davemabe.com&amp;amp;utm_campaign=handle_mistake&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Get Feedback From The World's Best Traders - For Free</title>
        <link href="https://davemabe.com/how-to-get-feedback-from-the-worlds-best-traders-for-free"/>
        <id>https://davemabe.com/how-to-get-feedback-from-the-worlds-best-traders-for-free</id>
        <published>2025-01-15T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;re backtesting a strategy.&lt;/p&gt;&lt;p&gt;You think it might work, but you&amp;#039;re not sure.&lt;/p&gt;&lt;p&gt;If you just did a little more backtesting THEN it will be ready.&lt;/p&gt;&lt;p&gt;Wouldn&amp;#039;t it be great if the best traders in the world would give you a direct and unbiased analysis of the trading strategy you&amp;#039;re backtesting?&lt;/p&gt;&lt;p&gt;What if I said you can and the feedback is essentially free?&lt;/p&gt;&lt;p&gt;This is exactly what happens when you start trading a strategy live with minuscule size.&lt;/p&gt;&lt;p&gt;Most traders think their job is done when the backtest completes.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s where the real learning begins.&lt;/p&gt;&lt;p&gt;I wouldn&amp;#039;t go live at any size with a crappy strategy, but I see a lot of traders get stuck in &amp;quot;backtest world&amp;quot;.&lt;/p&gt;&lt;p&gt;Your strategy will never be perfect.&lt;/p&gt;&lt;p&gt;But the best way to create a great strategy is to start with an OK one and improve it.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Creating A Trusted Trader Group</title>
        <link href="https://davemabe.com/creating-a-trusted-trader-group"/>
        <id>https://davemabe.com/creating-a-trusted-trader-group</id>
        <published>2025-01-13T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In the latest episode of Line Your Own Pockets, Michael and I reflect on last week&amp;#039;s interview with Brett Steenbarger.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Successful traders cultivate relationships with other traders&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to create a trusted trader group&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Givers are more successful than takers&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How to structure a trading business&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/creating-a-trusted-trader-group?utm_source=davemabe.com&amp;amp;utm_campaign=trader_group&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Long/Short for 2025</title>
        <link href="https://davemabe.com/long-short-for-2025"/>
        <id>https://davemabe.com/long-short-for-2025</id>
        <published>2025-01-08T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Long on systematic trading, short on traders who are exclusively discretionary.&lt;/p&gt;&lt;p&gt;Long on LLMs for improving your trading, short on LLMs for trading on your behalf.&lt;/p&gt;&lt;p&gt;Long on traders that take curve fitting head on, short on traders that use curve fitting as an excuse to be stagnant.&lt;/p&gt;&lt;p&gt;Long on traders that run out of buying power, short on traders that lack a path to confidence in what they’re doing.&lt;/p&gt;&lt;p&gt;Long on traders who love trading for its own sake, short on traders with hard P&amp;amp;L goals and deadlines.&lt;/p&gt;&lt;p&gt;Long on traders who use automation, short on traders who are still “click trading.”&lt;/p&gt;&lt;p&gt;Long on traders who trade multiple strategies, short on traders who make trades by following a trading room.&lt;/p&gt;&lt;p&gt;Long on traders who aren’t against paper trading, short on traders who spend too much time in “backtest world.”&lt;/p&gt;&lt;p&gt;Long on traders who trade strategies across many instruments, short on traders who trade a single instrument.&lt;/p&gt;&lt;p&gt;Long on humbly curious traders, short on traders who think they’ve found the answer.&lt;/p&gt;&lt;p&gt;Long on traders who share, short on traders who operate in silos.&lt;/p&gt;&lt;p&gt;Long on traders who have empty inboxes, short on traders who say they’re too busy.&lt;/p&gt;&lt;p&gt;Long on trading groups, short on trading rooms.&lt;/p&gt;&lt;p&gt;Long on genuine endorsements, short on affiliate programs.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Interview with Brett Steenbarger</title>
        <link href="https://davemabe.com/interview-with-brett-steenbarger"/>
        <id>https://davemabe.com/interview-with-brett-steenbarger</id>
        <published>2025-01-06T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In our third interview for Line Your Own Pockets, Michael and I spoke with my friend Brett Steenbarger, a well-known trading psychologist and author of several excellent trading books.&lt;/p&gt;&lt;p&gt;It was a great conversation where we covered:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Brett&amp;#039;s background, his worst drawdown, and how he responded&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What academia and trading have in common&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The psychology of systematic versus discretionary trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;His hybrid quantitative/discretionary approach to trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What individual traders can learn from the team structure of hedge funds&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Details about his upcoming trading book &lt;strong&gt;Positive Trading Psychology&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And much more.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/interview-with-brett-steenbarger&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trading Reviews</title>
        <link href="https://davemabe.com/trading-reviews"/>
        <id>https://davemabe.com/trading-reviews</id>
        <published>2025-01-01T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;It&amp;#039;s a new year and a natural time to review your trading results.&lt;/p&gt;&lt;p&gt;Some of the most productive ways to improve come from periodic analysis of your aggregate trading results.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a list of ways to improve your trading by doing a review.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Figure out how to make more trades from an already profitable system&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Take fewer but more profitable trades from a system&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Automate your reporting so you don&amp;#039;t have to collect and parse a lot of data to get it in a format to make smart decisions&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Review your best trades to figure out how to take them with bigger size&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Review your worst trades to figure out how to weed them out or minimize their impact&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Take more size in the strategies that are working well&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Look at trades outside your strategy&amp;#039;s trading rules - are there ways to trade them profitably?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Look at the time it took to create your most recent profitable strategy - how could you reduce that time by 75%?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What are the bottlenecks in your trading business?  How can you eliminate them?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Did you make emotional decisions in your trading in the past year?  Did they end up helping or hurting your results?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Is there tail risk in your strategy that you might not be considering?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How often did you run out of buying power in the last year? If the answer is not very often, then consider moving some money to allocate elsewhere&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What would your results look like if you added a strategy that traded more often and had better results?  Create it.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;If you could go back and get a redo of the last year, what would you have done differently?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;What else did I miss?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">24 Hour Trading Is Coming</title>
        <link href="https://davemabe.com/24-hour-trading-is-coming"/>
        <id>https://davemabe.com/24-hour-trading-is-coming</id>
        <published>2024-12-30T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The ability to trade 24 hours a day is coming to the US equities markets.  In this week&amp;#039;s episode of the Line Your Own Pockets podcast, we discuss this structural change and what it means for systematic traders.&lt;/p&gt;&lt;p&gt;How should you approach this change when, like pre-market trading, can take years for participants to adjust in meaningful ways?&lt;/p&gt;&lt;p&gt;What does it mean for the amount of data points your backtesting software will need to process?&lt;/p&gt;&lt;p&gt;Will it make things more or less volatile?&lt;/p&gt;&lt;p&gt;We discuss all these issues and more.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/24-hour-trading-is-coming&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trading Rules from a Nun</title>
        <link href="https://davemabe.com/trading-rules-from-a-nun"/>
        <id>https://davemabe.com/trading-rules-from-a-nun</id>
        <published>2024-12-25T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;My wife, Joan, sent me this video that she knew I&amp;#039;d love:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=IRPyql3cezo&quot;&gt;Art + Life Rules from a Nun&lt;/a&gt; (Youtube, 14:21 - worth it!)&lt;/p&gt;&lt;p&gt;I&amp;#039;ve always been fascinated by the parallels between art and trading.&lt;/p&gt;&lt;p&gt;In both, success comes from thinking creatively and coming up with ideas nobody has ever thought of.  (That&amp;#039;s hard!)&lt;/p&gt;&lt;p&gt;It takes years of diligent, daily work to get great.&lt;/p&gt;&lt;p&gt;The video is about Corita Kent, a nun, artist, and teacher.  It lists her 10 Rules for Artists and Teachers.&lt;/p&gt;&lt;p&gt;All of the rules are great but pay particular attention to #7 and #8, which would make great topics for the podcast.&lt;/p&gt;&lt;p&gt;Maybe the best concept is her idea of &amp;quot;plork&amp;quot; which will surely resonate with successful traders.&lt;/p&gt;&lt;p&gt;Which rule do you like the best?  Reply and let me know.&lt;/p&gt;&lt;p&gt;Happy Holidays!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Evolving Over Time As A Trader</title>
        <link href="https://davemabe.com/evolving-over-time-as-a-trader"/>
        <id>https://davemabe.com/evolving-over-time-as-a-trader</id>
        <published>2024-12-23T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the key takeaways from last week&amp;#039;s interview with Marsten Parker on Line Your Own Pockets was his ability to evolve over time.&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode, Michael and I discuss reinventing yourself as a trader and why it&amp;#039;s so important to anticipate having to adapt before the market forces you to.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/evolving-over-time-as-a-trader&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What's Your Most Frustrating Backtesting Problem?</title>
        <link href="https://davemabe.com/whats-your-most-frustrating-backtesting-problem"/>
        <id>https://davemabe.com/whats-your-most-frustrating-backtesting-problem</id>
        <published>2024-12-18T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you could wave a magic wand and solve your most frustrating problem with backtesting, what would it be?&lt;/p&gt;&lt;p&gt;Is there an issue you&amp;#039;re running into that could unlock your trading potential if you solve it?&lt;/p&gt;&lt;p&gt;I&amp;#039;d like to hear it - hit reply and let me know.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Interview with Marsten Parker</title>
        <link href="https://davemabe.com/interview-with-marsten-parker"/>
        <id>https://davemabe.com/interview-with-marsten-parker</id>
        <published>2024-12-16T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;On this week&amp;#039;s episode of Line Your Own Pockets, we spoke with &lt;a href=&quot;https://www.amazon.com/Market-Wizards-traders-youve-never/dp/0857198696&quot;&gt;market wizard&lt;/a&gt; and long-time systematic trader Marsten Parker.&lt;/p&gt;&lt;p&gt;He&amp;#039;s the creator of the &lt;a href=&quot;https://mhptrading.com/&quot;&gt;RealTest backtesting software&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;We discuss:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Trend following versus mean reversion&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Over-optimization of trading strategies and how to avoid it&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The role of discretion in automated trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Reinventing yourself as a trader&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Much, much more&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://lineyourownpockets.com/episodes/interview-with-marsten-parker&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Notification Nirvana</title>
        <link href="https://davemabe.com/notification-nirvana"/>
        <id>https://davemabe.com/notification-nirvana</id>
        <published>2024-12-11T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When you write code to execute trades, it&amp;#039;s important to have a good framework for sending notifications.&lt;/p&gt;&lt;p&gt;If you send notifications for every little thing, you will become desensitized to them and risk missing the critical ones.&lt;/p&gt;&lt;p&gt;If you don&amp;#039;t send any notifications, you risk tethering yourself to your trading desk waiting for an important event that might occur at any moment.&lt;/p&gt;&lt;p&gt;A well-designed system for notifications is an investment in your freedom.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve tried several ways to send notifications over the years but nothing was perfect.&lt;/p&gt;&lt;p&gt;Slack seems like a nice choice, but it lacks flexibility in prioritizing notifications.&lt;/p&gt;&lt;p&gt;A trader friend suggested &lt;a href=&quot;https://pushover.net/&quot;&gt;Pushover&lt;/a&gt;, so I gave it a try.&lt;/p&gt;&lt;p&gt;The API is &lt;a href=&quot;https://pushover.net/api&quot;&gt;super simple&lt;/a&gt; with &lt;a href=&quot;https://support.pushover.net/i44-example-code-and-pushover-libraries&quot;&gt;code examples for any language&lt;/a&gt; (or even the &lt;a href=&quot;https://support.pushover.net/i44-example-code-and-pushover-libraries#windows&quot;&gt;Windows command line&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;What I love about it is the ability to prioritize notifications and control how your phone responds.&lt;/p&gt;&lt;p&gt;Low-priority notifications can be silent, while high-priority notifications (like a rejected order) can be configured with a custom sound and escalating nagging if you don&amp;#039;t acknowledge it.&lt;/p&gt;&lt;p&gt;So you can write your code once to send notifications with various priorities and then after the fact configure your phone to respond in the way you want (even overriding your Do Not Disturb settings when appropriate).&lt;/p&gt;&lt;p&gt;Give it a shot and let me know what you think.&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Charting Software Roundup</title>
        <link href="https://davemabe.com/charting-software-roundup"/>
        <id>https://davemabe.com/charting-software-roundup</id>
        <published>2024-12-09T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;What charting software should you use?  How many monitors do you need?&lt;/p&gt;&lt;p&gt;When should you add an indicator to your charts?&lt;/p&gt;&lt;p&gt;Michael and I discuss these questions and other chart-related topics on this week&amp;#039;s Line Your Own Pockets episode.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/charting-software-roundup&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Wrong Way to Backtest</title>
        <link href="https://davemabe.com/the-wrong-way-to-backtest"/>
        <id>https://davemabe.com/the-wrong-way-to-backtest</id>
        <published>2024-12-04T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you spend a lot of time waiting for a backtest to complete, you&amp;#039;re doing it wrong.&lt;/p&gt;&lt;p&gt;Imagine you&amp;#039;re hunting deer.&lt;/p&gt;&lt;p&gt;You go into the woods.&lt;/p&gt;&lt;p&gt;But instead of a rifle, you bring a machine gun and fire it randomly in every direction hoping to hit a deer.&lt;/p&gt;&lt;p&gt;How effective do you think that strategy would be?&lt;/p&gt;&lt;p&gt;And yet that&amp;#039;s what I see most traders doing when they backtest.&lt;/p&gt;&lt;p&gt;A random, haphazard process that will never yield results.&lt;/p&gt;&lt;p&gt;Backtesting with an organized plan is far more effective.&lt;/p&gt;&lt;p&gt;If your backtests aren&amp;#039;t turning into real trading edge, I guarantee I can help.&lt;/p&gt;&lt;p&gt;Hit reply and let&amp;#039;s talk.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Choosing Backtesting Software</title>
        <link href="https://davemabe.com/choosing-backtesting-software"/>
        <id>https://davemabe.com/choosing-backtesting-software</id>
        <published>2024-12-02T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;There are many choices in the market for backtesting software. In this episode of Line Your Own Pockets, we discuss the landscape of options for backtesting.&lt;/p&gt;&lt;p&gt;I rule out several of the most popular backtesters right away because they don&amp;#039;t meet my strict requirements.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re interested in backtesting and don&amp;#039;t know where to start, this is the episode for you.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/choosing-backtesting-software&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Risk of Ruin</title>
        <link href="https://davemabe.com/risk-of-ruin"/>
        <id>https://davemabe.com/risk-of-ruin</id>
        <published>2024-11-27T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If drinking coffee in the morning doesn&amp;#039;t wake you up, try shorting PGHL yesterday.&lt;/p&gt;&lt;p&gt;Halted most of the day and traded up 1000% after the close.&lt;/p&gt;&lt;p&gt;I didn&amp;#039;t trade it &lt;a href=&quot;https://x.com/Short_Sellers/status/1861519653740126474&quot;&gt;but several did&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;This is a good situation to study closely.&lt;/p&gt;&lt;p&gt;Yes, the S.E.C. should be &lt;a href=&quot;https://www.reddit.com/r/VampireStocks/comments/1fe5lwb/pghl_is_a_relatedparties_pigslaughtering_self/&quot;&gt;doing more to prevent this&lt;/a&gt;, but that&amp;#039;s out of your control.&lt;/p&gt;&lt;p&gt;Are there tail risks in your trading you&amp;#039;re not considering?&lt;/p&gt;&lt;p&gt;What can you do to avoid disaster?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using Regime Filters in a Strategy</title>
        <link href="https://davemabe.com/using-regime-filters-in-a-strategy"/>
        <id>https://davemabe.com/using-regime-filters-in-a-strategy</id>
        <published>2024-11-25T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;What is a &amp;quot;Regime Filter&amp;quot; and is it a good idea to use in a strategy?&lt;/p&gt;&lt;p&gt;Michael and I discussed this topic on the Line Your Own Pockets podcast after &lt;a href=&quot;https://x.com/daytradingzoo/status/1846905613005066322&quot;&gt;DayTradingZoo suggested it on X&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;We take &lt;strong&gt;completely&lt;/strong&gt; different approaches on this one.&lt;/p&gt;&lt;p&gt;Who&amp;#039;s right?  Reply and let me know what you think.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/using-regime-filters-in-a-strategy&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">&quot;Expert&quot; Opinions</title>
        <link href="https://davemabe.com/expert-opinions"/>
        <id>https://davemabe.com/expert-opinions</id>
        <published>2024-11-20T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I was at the Laguardia airport during the recent construction project.&lt;/p&gt;&lt;p&gt;Walking towards my gate, I looked up and right in front of me was a man wearing a hard hat with this message on the back.&lt;/p&gt;&lt;p&gt;I had to stop and snap a photo.&lt;/p&gt;&lt;p&gt;&amp;quot;One test is worth 1000 expert opinions&amp;quot;&lt;/p&gt;&lt;p&gt;Just 1000?&lt;/p&gt;&lt;p&gt;What&amp;#039;s true for this engineer&amp;#039;s construction project is even more true for your trading.&lt;/p&gt;&lt;p&gt;Real power is the ability to do your own testing rather than relying on someone else&amp;#039;s opinion.&lt;/p&gt;&lt;p&gt;Which at first generates more questions.&lt;/p&gt;&lt;p&gt;But eventually creates answers.&lt;/p&gt;&lt;p&gt;Which turn into actions.&lt;/p&gt;&lt;p&gt;Which becomes P&amp;amp;L.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Removing The Worst Trades from a System</title>
        <link href="https://davemabe.com/removing-the-worst-trades-from-a-system"/>
        <id>https://davemabe.com/removing-the-worst-trades-from-a-system</id>
        <published>2024-11-18T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the most common and quickest ways to improve a trading system is to remove the worst pocket of trades.&lt;/p&gt;&lt;p&gt;In this week&amp;#039;s episode of Line Your Own Pockets, Michael and I discussed a listener question about how to accomplish this with a system he&amp;#039;s trading.&lt;/p&gt;&lt;p&gt;Several foundational steps must be in place before you can make these improvements to your strategy.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/removing-bad-trades-from-a-strategy?utm_source=email&amp;amp;utm_campaign=worst_trades&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Sizing Up</title>
        <link href="https://davemabe.com/sizing-up"/>
        <id>https://davemabe.com/sizing-up</id>
        <published>2024-11-13T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Garrett Drinon of SMB Capital (used with permission):&lt;/p&gt;&lt;p&gt;&amp;quot;How do you determine when to increase the risk per trade on your model?&amp;quot;&lt;/p&gt;&lt;p&gt;A great question that deserves an entire book to address properly, but here is the short version.&lt;/p&gt;&lt;p&gt;Most traders increase their size too quickly.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no rule that says you have to scale up all at once - do it over weeks or even months.&lt;/p&gt;&lt;p&gt;Make sure you&amp;#039;re set up to view your performance in a way that&amp;#039;s normalized across your sizing.&lt;/p&gt;&lt;p&gt;That is, if you&amp;#039;re only looking at raw P&amp;amp;L, then it&amp;#039;s going to be heavily skewed toward the trades after you increase your size.&lt;/p&gt;&lt;p&gt;The important thing to avoid is sizing up enough such that normal losing trades push your equity curve into negative territory.&lt;/p&gt;&lt;p&gt;That can be demoralizing and unnecessarily puts you in a position to make mistakes.&lt;/p&gt;&lt;p&gt;Thanks for the question, Garrett!&lt;/p&gt;&lt;p&gt;We&amp;#039;ll have a podcast episode on this topic in the future, no doubt.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trading Well with Limited Time</title>
        <link href="https://davemabe.com/trading-well-with-limited-time"/>
        <id>https://davemabe.com/trading-well-with-limited-time</id>
        <published>2024-11-11T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;&amp;quot;How can I trade well when I only have a limited amount of time to dedicate to it?&amp;quot;&lt;/p&gt;&lt;p&gt;This is one of the top questions I get from traders.&lt;/p&gt;&lt;p&gt;In this week’s Line Your Own Pockets episode, Michael and I address this issue and discuss the early part of my trading career when I had a very restrictive schedule.&lt;/p&gt;&lt;p&gt;Can this situation be a good thing?  No doubt it can!&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/is-limited-time-for-trading-a-good-thing?utm_source=email&amp;amp;utm_campaign=limited_time&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Fooled By Data</title>
        <link href="https://davemabe.com/fooled-by-data"/>
        <id>https://davemabe.com/fooled-by-data</id>
        <published>2024-11-06T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of my favorite quotes:&lt;/p&gt;&lt;p&gt;&amp;quot;If you torture the data long enough, it will confess to anything.&amp;quot; - Ronald H. Coase&lt;/p&gt;&lt;p&gt;Coase didn&amp;#039;t realize it when he said it, but it perfectly applies to systematic trading.&lt;/p&gt;&lt;p&gt;And it should keep you awake at night a little.&lt;/p&gt;&lt;p&gt;It&amp;#039;s hard to tell if you&amp;#039;ve tortured your backtest too much or just right.&lt;/p&gt;&lt;p&gt;But here&amp;#039;s one thing that is easy to do and I found out by accident helps a lot.&lt;/p&gt;&lt;p&gt;Among all the data points (a.k.a. columns, indicators, or features) in a backtest, add a column with &lt;strong&gt;random&lt;/strong&gt; values.&lt;/p&gt;&lt;p&gt;Then continue with your analysis as you normally would.&lt;/p&gt;&lt;p&gt;If you find your random column appearing in your analysis as &amp;quot;important&amp;quot;&lt;/p&gt;&lt;p&gt;Then you know you&amp;#039;re trying too hard and it&amp;#039;s time to stop the torture.&lt;/p&gt;&lt;p&gt;This is something I include in every strategy assessment I do.&lt;/p&gt;&lt;p&gt;Here are the results of a recent strategy assessment (see image below).&lt;/p&gt;&lt;p&gt;This trader removed the trades in the red line and is left with the trades in the green line.&lt;/p&gt;&lt;p&gt;The average profit per trade is up over 50% while steering clear of the torture threshold.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re interested in learning more about making your strategy better, hit reply - happy to chat.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using News in a Trading Strategy</title>
        <link href="https://davemabe.com/using-news-in-a-trading-strategy"/>
        <id>https://davemabe.com/using-news-in-a-trading-strategy</id>
        <published>2024-11-04T21:00:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s Line Your Own Pockets episode, I go over several ways of incorporating news into a trading strategy.&lt;/p&gt;&lt;p&gt;Using the news doesn&amp;#039;t necessarily mean manual trading.&lt;/p&gt;&lt;p&gt;Michael and I discuss several ways to use it in an automated strategy.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/using-news-in-your-trading-strategy&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Stop Caring So Much</title>
        <link href="https://davemabe.com/stop-caring-so-much"/>
        <id>https://davemabe.com/stop-caring-so-much</id>
        <published>2024-10-30T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you find yourself hoping and praying that particular trades become profitable...&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve ever thought &amp;quot;If only this trade works, then I&amp;#039;ll be able to sleep better tonight.&amp;quot;&lt;/p&gt;&lt;p&gt;If, like a cheerleader, you root for your trades to score a basket.&lt;/p&gt;&lt;p&gt;...then you&amp;#039;re too invested in the wrong thing.&lt;/p&gt;&lt;p&gt;It&amp;#039;s great that you care about success.&lt;/p&gt;&lt;p&gt;But ironically, the more you prepare for long-term trading success, the less you should care about the success of any particular trade or day.&lt;/p&gt;&lt;p&gt;Zoom out and care more about your strategy rather than any trade within it.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Social Media</title>
        <link href="https://davemabe.com/social-media"/>
        <id>https://davemabe.com/social-media</id>
        <published>2024-10-28T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s Line Your Own Pockets episode, we discuss social media and the implications for traders of the research we highlighted in the previous week.&lt;/p&gt;&lt;p&gt;If social media is so predictably wrong, how can traders use it?&lt;/p&gt;&lt;p&gt;Should they use it at all?  How?&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/how-to-use-social-media-as-a-trader&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Get More Systematic</title>
        <link href="https://davemabe.com/get-more-systematic"/>
        <id>https://davemabe.com/get-more-systematic</id>
        <published>2024-10-23T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Many traders know they need to become more systematic, but don&amp;#039;t know where to begin.&lt;/p&gt;&lt;p&gt;Depending on where you&amp;#039;re starting, getting to full automation can be daunting and scary.&lt;/p&gt;&lt;p&gt;Try this simple thought exercise.&lt;/p&gt;&lt;p&gt;Think about your trading day.&lt;/p&gt;&lt;p&gt;Think about all the actions you take from the opening bell to the close.&lt;/p&gt;&lt;p&gt;Now consider every action you take as a &lt;strong&gt;failure of your trading process&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When you look at it in this light, everything you do becomes an opportunity to improve.&lt;/p&gt;&lt;p&gt;Are you scanning through dozens of charts to find your setup to trade?  How can you cut that in half?&lt;/p&gt;&lt;p&gt;Are you making discretionary decisions during the trading day?  How can you plan ahead to make those decisions ahead of time?&lt;/p&gt;&lt;p&gt;Are you doing math in your head to determine your position size?  How can you eliminate that step entirely?&lt;/p&gt;&lt;p&gt;Treating everything as a &amp;quot;failure&amp;quot; can help you focus on your trading process.&lt;/p&gt;&lt;p&gt;And improving your process pays off forever.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Beware Financial Influencers</title>
        <link href="https://davemabe.com/beware-financial-influencers"/>
        <id>https://davemabe.com/beware-financial-influencers</id>
        <published>2024-10-21T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In our first interview on the Line Your Own Pockets podcast, we spoke with Dr. Seyed Mohammed Kazempour about his academic research paper called Finfluencers.&lt;/p&gt;&lt;p&gt;If you follow any traders on social media, you are going to want to listen to this one!&lt;/p&gt;&lt;p&gt;Seyed&amp;#039;s research shows that the more followers someone has on social media, the more edge you have doing literally the OPPOSITE of what they say.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/sayed-interivew&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Looking Into The Future</title>
        <link href="https://davemabe.com/looking-into-the-future"/>
        <id>https://davemabe.com/looking-into-the-future</id>
        <published>2024-10-16T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A trader recently approached me with a backtest that he thought had the potential to be more profitable than it was.&lt;/p&gt;&lt;p&gt;(He was right.)&lt;/p&gt;&lt;p&gt;But when I analyzed it I quickly realized he was overlooking a serious problem with his strategy.&lt;/p&gt;&lt;p&gt;And it wasn&amp;#039;t a problem that would be nice to fix &lt;em&gt;someday&lt;/em&gt;, but one that needed to be solved immediately before doing anything else.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I noticed.  Can you see what the issue is?&lt;/p&gt;&lt;p&gt;It&amp;#039;s subtle, but the problem is the optimal filter that my tools found was too good to be true.&lt;/p&gt;&lt;p&gt;Once glance at this chart and I realized that some of the data in his backtest was &amp;quot;looking into the future.&amp;quot;  That is, he was including data in his backtest that couldn&amp;#039;t be known at the time of the trade.&lt;/p&gt;&lt;p&gt;For example, the value of an indicator just one bar AFTER the entry.&lt;/p&gt;&lt;p&gt;The dangerous part of peering into the future in your backtest is it&amp;#039;s so subtle that it&amp;#039;s very hard to notice.&lt;/p&gt;&lt;p&gt;I once traded a strategy every day for a couple of weeks before I noticed what was going on.&lt;/p&gt;&lt;p&gt;That was a big wake-up call.&lt;/p&gt;&lt;p&gt;From then on, part of my trading process is a simple check to make sure no part of the strategy looks into the future.&lt;/p&gt;&lt;p&gt;Every trader who gets the &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot;&gt;roadmap&lt;/a&gt; understands this pitfall and has a process to prevent it from ever happening.&lt;/p&gt;&lt;p&gt;Has this ever happened to you?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Strategy Drift</title>
        <link href="https://davemabe.com/strategy-drift"/>
        <id>https://davemabe.com/strategy-drift</id>
        <published>2024-10-14T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;What is Strategy Drift?&lt;/p&gt;&lt;p&gt;I learned it the hard way when I realized my strategy wasn&amp;#039;t quite as systematic as I thought.&lt;/p&gt;&lt;p&gt;In this week’s Line Your Own Pockets episode, I go over what strategy drift is and why I completely changed how I approached the markets after I experienced it.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/lyop-8&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Bad Backtest</title>
        <link href="https://davemabe.com/a-bad-backtest"/>
        <id>https://davemabe.com/a-bad-backtest</id>
        <published>2024-10-09T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Thomas Edison failed 10,000 times before he invented a light bulb that would work.&lt;/p&gt;&lt;p&gt;How many times have you had an idea for a trading strategy only to find out after testing that it didn&amp;#039;t meet your high hopes?&lt;/p&gt;&lt;p&gt;Great traders understand this isn&amp;#039;t a failure.&lt;/p&gt;&lt;p&gt;But a building block.&lt;/p&gt;&lt;p&gt;To a better idea.&lt;/p&gt;&lt;p&gt;Does your process turn &amp;quot;failed&amp;quot; ideas into building blocks?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Prioritizing Your Trading Work</title>
        <link href="https://davemabe.com/prioritizing-your-trading-work"/>
        <id>https://davemabe.com/prioritizing-your-trading-work</id>
        <published>2024-10-07T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Successful trading requires a lot of work, including improving existing strategies, reviewing performance, adding new strategies, etc.&lt;/p&gt;&lt;p&gt;Given your limited time and resources, how do you decide what to work on next?&lt;/p&gt;&lt;p&gt;What&amp;#039;s likely to give you the biggest payoff?&lt;/p&gt;&lt;p&gt;In this week’s Line Your Own Pockets episode, we discuss a framework for deciding what to work on that will give you the highest ROI.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/strategy-priority&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Handling Blank Values</title>
        <link href="https://davemabe.com/handling-blank-values"/>
        <id>https://davemabe.com/handling-blank-values</id>
        <published>2024-10-02T11:14:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Fellow reader and longtime trader Justin Flynn wrote me recently (shared with permission):&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Is there an option of including stocks that have no data showing up on your Top List scans? For example, let&amp;#039;s say I want to filter out on my gap scan all tickers over 500m in market cap. Well if I do that and a stock is not reporting a market cap then that stock will not show up on my Top List. Because of that I often times leave out key filters because I dont want to miss those stocks.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This is a common predicament; luckily, a convenient and powerful way to handle this in Trade-Ideas is to use a &lt;strong&gt;Custom Formula&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s how to set it up.  In your account, go to Tools, then Formula Editor.  That will bring up the Custom Formula editor.&lt;/p&gt;&lt;p&gt;Add a new Custom Formula with the following code:&lt;/p&gt;&lt;p&gt;&lt;code&gt;[MCap] ?? -1&lt;/code&gt;&lt;/p&gt;&lt;p&gt;The &lt;code&gt;??&lt;/code&gt; operator will use the normal value for Market Cap if it exists, but if it&amp;#039;s null it will use the value on the right side of the operator, in this case &lt;code&gt;-1&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a screenshot showing the custom formula:&lt;/p&gt;&lt;p&gt;This ensures that your custom filter for Market Cap will always have a value and you can use it in your filters as you would any other filter.&lt;/p&gt;&lt;p&gt;Notice I used the label &lt;em&gt;Market Cap with default -1&lt;/em&gt; for the Description field. This ends up in the header anywhere I use this filter and serves as a descriptive reminder of the exact behavior.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a screenshot of a Top List I just created to demonstrate this concept. Notice MSTY has a blank for the Market Cap field but shows -1 for the custom formula I created.&lt;/p&gt;&lt;p&gt;Of course, this has uses beyond just Market Cap. There are plenty of instances where this comes in quite handy.&lt;/p&gt;&lt;p&gt;Are there other cases where you use this?&lt;/p&gt;&lt;p&gt;FYI, for the developer types on the list, the &lt;code&gt;??&lt;/code&gt; operator is also known as the &lt;em&gt;null-coalescing operator&lt;/em&gt; and is supported in any modern programming language. &lt;a href=&quot;https://en.wikipedia.org/wiki/Null_coalescing_operator&quot;&gt;More info here&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Keeping Track of Your Trading Ideas</title>
        <link href="https://davemabe.com/keeping-track-of-your-trading-ideas"/>
        <id>https://davemabe.com/keeping-track-of-your-trading-ideas</id>
        <published>2024-09-30T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s Line Your Own Pockets episode, we discuss keeping track of trading ideas.&lt;/p&gt;&lt;p&gt;Traders must have a regular flow of new ideas for strategies and ways to improve existing ones.&lt;/p&gt;&lt;p&gt;Michael and I discussed our systems for tracking trading ideas and organizing them.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/lyop-8&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Win Rate</title>
        <link href="https://davemabe.com/win-rate"/>
        <id>https://davemabe.com/win-rate</id>
        <published>2024-09-25T10:11:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Think of the strategy you&amp;#039;re trading now.&lt;/p&gt;&lt;p&gt;Is it in a drawdown?&lt;/p&gt;&lt;p&gt;Is it crushing it?&lt;/p&gt;&lt;p&gt;Either way, if you&amp;#039;re like almost every trader I&amp;#039;ve talked to, there&amp;#039;s almost certainly a way to improve it.&lt;/p&gt;&lt;p&gt;Probably multiple ways.&lt;/p&gt;&lt;p&gt;Of all those ways to make it better...&lt;/p&gt;&lt;p&gt;...none of the gains will be from focusing on the win rate.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Process for Generating Ideas</title>
        <link href="https://davemabe.com/a-process-for-generating-ideas"/>
        <id>https://davemabe.com/a-process-for-generating-ideas</id>
        <published>2024-09-23T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s Line Your Own Pockets episode, the topic is generating ideas for trading strategies.&lt;/p&gt;&lt;p&gt;Great traders aren&amp;#039;t born with the ability to develop trading strategies - they create a process for coming up with ideas that they&amp;#039;re constantly improving.&lt;/p&gt;&lt;p&gt;Michael and I discussed what that process should look like for you to ensure that your trading business gets better and better over time.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/lyop7&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your Trading Business</title>
        <link href="https://davemabe.com/your-trading-business"/>
        <id>https://davemabe.com/your-trading-business</id>
        <published>2024-09-18T09:12:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;re probably aware of the well-known statistic that the majority of small businesses fail within 10 years.&lt;/p&gt;&lt;p&gt;But did you know there&amp;#039;s one category with a &lt;strong&gt;much higher success rate&lt;/strong&gt; than your typical business?&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Franchises&lt;/strong&gt; fail at a far lower rate than average.&lt;/p&gt;&lt;p&gt;Why is that?&lt;/p&gt;&lt;p&gt;A franchise, by definition, has systematized the business.&lt;/p&gt;&lt;p&gt;There are dozens of ways to make a hamburger, but there&amp;#039;s only one way at McDonald&amp;#039;s.&lt;/p&gt;&lt;p&gt;Everyone knows traders fail at a very high rate.&lt;/p&gt;&lt;p&gt;Can you guess the type of traders that fail at a much lower rate than average?&lt;/p&gt;&lt;p&gt;How can you &amp;quot;franchise&amp;quot; &lt;strong&gt;your&lt;/strong&gt; trading business?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">To Paper Trade or Not to Paper Trade...</title>
        <link href="https://davemabe.com/to-paper-trade-or-not-to-paper-trade"/>
        <id>https://davemabe.com/to-paper-trade-or-not-to-paper-trade</id>
        <published>2024-09-16T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week’s Line Your Own Pockets episode, we discuss paper trading - a topic where there&amp;#039;s surprising disagreement among traders.&lt;/p&gt;&lt;p&gt;Should you paper trade when you first create a system or trade it with really small size?&lt;/p&gt;&lt;p&gt;Even small losses can add up over time, but many traders need to have a little money on the line to stay focused.&lt;/p&gt;&lt;p&gt;We discuss the issues around paper trading and how my thinking has evolved.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/f167bd3f-62ea-44af-9ed1-7e90032b4a5d&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Unpack Your Trading Day</title>
        <link href="https://davemabe.com/unpack-your-trading-day"/>
        <id>https://davemabe.com/unpack-your-trading-day</id>
        <published>2024-09-11T10:31:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Think of the last time you took a vacation.&lt;/p&gt;&lt;p&gt;Maybe you drove to the beach or the mountains. You had a great time.&lt;/p&gt;&lt;p&gt;Now think about the end of that trip. You arrive home and park in your driveway.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re like me, the last thing you feel like doing is unpacking the car.&lt;/p&gt;&lt;p&gt;But do you know what makes me feel even worse?&lt;/p&gt;&lt;p&gt;Driving around in a half-unpacked car a couple of days later.&lt;/p&gt;&lt;p&gt;A reminder of something I should have done but didn&amp;#039;t.&lt;/p&gt;&lt;p&gt;Over the last decade, I&amp;#039;ve developed a habit that I love.&lt;/p&gt;&lt;p&gt;When I turn off the car in the driveway - before doing anything else - I unpack the car completely.&lt;/p&gt;&lt;p&gt;Everything in its place, dirty laundry in the washer, chargers in their original location, etc. - no exceptions.&lt;/p&gt;&lt;p&gt;A total reset and it feels great - no baggage left to unpack (literally).&lt;/p&gt;&lt;p&gt;Your trading is the same way.&lt;/p&gt;&lt;p&gt;You may have had a great trading day or your worst day in months.&lt;/p&gt;&lt;p&gt;Either way, the last thing you&amp;#039;re going to feel like doing is a daily review.&lt;/p&gt;&lt;p&gt;But daily reviews are what turn ok traders... into truly great traders.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Advanced Order Types That Matter</title>
        <link href="https://davemabe.com/advanced-order-types-that-matter"/>
        <id>https://davemabe.com/advanced-order-types-that-matter</id>
        <published>2024-09-09T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s Line Your Own Pockets episode, we build on last week&amp;#039;s topic of &lt;strong&gt;order types&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;There are so many order types available on trading platforms that it can be overwhelming for traders, so they often just use the simple ones that are &amp;quot;good enough.&amp;quot;&lt;/p&gt;&lt;p&gt;I give examples of specific situations where non-standard order types are useful and how they can make your trading day less stressful and more systematic.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/4d084212-3d2f-43a7-a890-b30623e4fef2&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Rule to Avoid Follow Up</title>
        <link href="https://davemabe.com/a-rule-to-avoid-follow-up"/>
        <id>https://davemabe.com/a-rule-to-avoid-follow-up</id>
        <published>2024-09-04T10:54:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last week &lt;a href=&quot;https://www.davemabe.com/a-rule-to-avoid/&quot;&gt;I showed a chart with two equity curves&lt;/a&gt; A and B.&lt;/p&gt;&lt;p&gt;(Click on the link to view the full message.)&lt;/p&gt;&lt;p&gt;The two equity curves come from a strategy I&amp;#039;m working with a trader on.&lt;/p&gt;&lt;p&gt;The goal is to get more P&amp;amp;L from this already profitable strategy.&lt;/p&gt;&lt;p&gt;One way to do that is to remove poor trades using a rule.&lt;/p&gt;&lt;p&gt;Curve A represents trades in the system where the value for a certain indicator is above X while curve B represents trades where the value is below X.&lt;/p&gt;&lt;p&gt;Curve A looks so attractive at first glance compared to curve B, so it&amp;#039;s tempting to apply this rule to the system.&lt;/p&gt;&lt;p&gt;But I do not recommend this and I asked readers why.&lt;/p&gt;&lt;p&gt;Here are some responses I got.&lt;/p&gt;&lt;p&gt;Garrett Drinon of SMB Capital said, &amp;quot;Because they’re both good and we want more trades and hence more PNL.&amp;quot;&lt;/p&gt;&lt;p&gt;Romoi said, &amp;quot;Is it because there are only a few big wins separating the curves? Meaning it could be curve fitting and bringing anomalies?&amp;quot;&lt;/p&gt;&lt;p&gt;Yaping said, &amp;quot;Is it because it is not a steady trend that has a big swing at the beginning and the end of the curve? The middle curves are almost the same between both. For those big swing up, it likely to associate with big swing down some time down the road.&amp;quot;&lt;/p&gt;&lt;p&gt;Berker T. said, &amp;quot;I speculate that curve A seems to have some rules specific to trades that occurred on dates corresponding to jumps of the graph. The first 3 jumps are roughly 4 bars in height, and the graphs are roughly 3 bars apart, so probably without considering the first 3 jumps, curve a would be lower than curve b. We have only 3 instances of jumps, so they may be just luck as well. In the future, those jumps may not happen, or worse the jumps may be to the downside.&amp;quot;&lt;/p&gt;&lt;p&gt;All of these are great answers.&lt;/p&gt;&lt;p&gt;When I consider a rule to improve a trading strategy, the rule needs to identify a highly predictive split between good trades and bad trades.&lt;/p&gt;&lt;p&gt;When you look at the chart, notice that aside from a handful of days in curve A, both curves are basically the same. (See chart below)&lt;/p&gt;&lt;p&gt;If you took those 4 days out of curve A, curve B &lt;strong&gt;would end up even higher&lt;/strong&gt; than curve A.&lt;/p&gt;&lt;p&gt;If you applied this rule to the strategy, you would be giving up a lot of P&amp;amp;L for no good reason!&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing...&lt;/p&gt;&lt;p&gt;If you only look at the overall stats (total profit, win rate, profit factor, etc), curve A appears to be better in every way.&lt;/p&gt;&lt;p&gt;This is why it&amp;#039;s so important to look at equity curves to understand the full picture, otherwise these profitable details will slip right under your nose.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Rule To Avoid</title>
        <link href="https://davemabe.com/a-rule-to-avoid"/>
        <id>https://davemabe.com/a-rule-to-avoid</id>
        <published>2024-08-28T20:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;First, look at the &lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2024/08/equity_curve_comparison.png&quot;&gt;equity curves in this chart&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Would you prefer to trade A or B?&lt;/p&gt;&lt;p&gt;The answer seems obvious, right?&lt;/p&gt;&lt;p&gt;This came from a strategy assessment I&amp;#039;m doing for a trader.&lt;/p&gt;&lt;p&gt;We&amp;#039;re looking at making this already profitable strategy even better and considering this rule.&lt;/p&gt;&lt;p&gt;All trades where $FEATURE is above the value $X are in curve A, and everything below $X is in curve B.&lt;/p&gt;&lt;p&gt;It&amp;#039;s tempting to look at these curves and say, heck yeah, let&amp;#039;s apply this rule and improve the strategy.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;But this is NOT a rule I recommend applying&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Can you tell me why?&lt;/p&gt;&lt;p&gt;Reply and let me know if you can spot it.&lt;/p&gt;&lt;p&gt;--Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Become Your Own Neutral Observer</title>
        <link href="https://davemabe.com/become-your-own-neutral-observer"/>
        <id>https://davemabe.com/become-your-own-neutral-observer</id>
        <published>2024-08-26T14:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s Line Your Own Pockets episode, we discussed a simple exercise you can do to identify dozens of ways to improve your trading.&lt;/p&gt;&lt;p&gt;The key is to take a video of your screen during your trading session.  Then go back after hours and honestly review what you did.&lt;/p&gt;&lt;p&gt;Pretend you&amp;#039;re a neutral observer.  I guarantee you&amp;#039;ll identify concrete ways to improve.&lt;/p&gt;&lt;p&gt;&lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.lineyourownpockets.com/episodes/become-your-own-neutral-observer&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;--Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Lessons Learned</title>
        <link href="https://davemabe.com/lessons-learned"/>
        <id>https://davemabe.com/lessons-learned</id>
        <published>2024-08-21T09:33:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Think back to when you first started trading.&lt;/p&gt;&lt;p&gt;You probably had assumptions about trading that you realize now were silly.&lt;/p&gt;&lt;p&gt;In fact, I bet some of those naive thoughts turned out to be 180 degrees wrong.&lt;/p&gt;&lt;p&gt;(This was definitely true for me.)&lt;/p&gt;&lt;p&gt;Now think a year or two into the future.&lt;/p&gt;&lt;p&gt;Which of your &lt;strong&gt;current assumptions&lt;/strong&gt; are going to be completely wrong when you have more perspective?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Motivation for Becoming More Systematic</title>
        <link href="https://davemabe.com/motivation-for-becoming-more-systematic"/>
        <id>https://davemabe.com/motivation-for-becoming-more-systematic</id>
        <published>2024-08-19T18:54:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In this week&amp;#039;s Line Your Own Pockets episode, Michael and I discussed why getting more systematic with trading is so important.&lt;/p&gt;&lt;p&gt;I shared a story about missing big winning trades and why, frankly, it pissed me off.&lt;/p&gt;&lt;p&gt;As frustrating as it can be, missing out on good trades can be incredibly motivating to get better.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.lineyourownpockets.com/episodes/f930ec1b-6da3-49a8-be33-abfde909a8e8&quot;&gt;LISTEN NOW »&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Did you enjoy this episode?  Consider sharing it with a few friends who might find it useful.  Thanks!&lt;/p&gt;&lt;p&gt;-Dave&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trades Not Matching Backtest</title>
        <link href="https://davemabe.com/trades-not-matching-backtest"/>
        <id>https://davemabe.com/trades-not-matching-backtest</id>
        <published>2024-08-16T09:46:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A quant trader came to me recently with an issue.&lt;/p&gt;&lt;p&gt;He was backtesting and optimizing his strategy using Python, but then writing code in TradingView to execute the trades.&lt;/p&gt;&lt;p&gt;His trades in TradingView weren&amp;#039;t matching his backtest and he couldn&amp;#039;t figure out why.&lt;/p&gt;&lt;p&gt;You often run into thorny situations like this when backtesting, especially when optimizing in one platform and executing trades in another.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the advice I gave which I think applies to trading data issues more generally:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Compare The Most Recent Trades&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Find a recent trade where the backtest doesn&amp;#039;t match.  Starting from recent trades is easier since you save yourself scrolling back in your chart to find the applicable data points.  Note the symbol and entry date.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Add Debugging Statements to your Code&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;In the platform that&amp;#039;s easier to work with (in this case it was Python), add plenty of debugging code to log the important bits - OHLC data, volume, any indicator values that apply to your strategy, etc.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Run Backtest on Just The One Symbol with Debugging Enabled&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Try to write your debugging statements to a separate file rather than the console.  It&amp;#039;s easier to examine the data when it&amp;#039;s in a text file since there are so many tools you can use to search and parse them.  (I mostly use Vim for this purpose, but use grep, findstr, sed, or Python too.)&lt;/p&gt;&lt;p&gt;By running the backtest on just one symbol, you end up with less data to have to sift through.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Dig Into the Nitty Gritty&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;The devil is in the details in situations like this, so you can&amp;#039;t avoid getting your hands dirty.  Dive in and figure it out.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll often learn something unrelated that will come in handy in unexpected ways in the future.&lt;/p&gt;&lt;p&gt;Traders HAVE to be detail-oriented and while this process usually isn&amp;#039;t fun, it&amp;#039;s a necessary part of being successful.&lt;/p&gt;&lt;p&gt;The quicker you become comfortable with it the better.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Buying Power</title>
        <link href="https://davemabe.com/buying-power"/>
        <id>https://davemabe.com/buying-power</id>
        <published>2024-08-15T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;What would need to be true for you to trade big enough to use ALL your buying power?&lt;/p&gt;&lt;p&gt;Every single trading day.&lt;/p&gt;&lt;p&gt;You&amp;#039;d need more confidence in your trading system.&lt;/p&gt;&lt;p&gt;True confidence - more than you have now.&lt;/p&gt;&lt;p&gt;Think about what would give you more confidence.&lt;/p&gt;&lt;p&gt;Make a list of things that would inch your confidence forward.&lt;/p&gt;&lt;p&gt;Start knocking things off that list and you&amp;#039;ll create the confidence you need.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Line Your Own Pockets Podcast</title>
        <link href="https://davemabe.com/line-your-own-pockets-podcast"/>
        <id>https://davemabe.com/line-your-own-pockets-podcast</id>
        <published>2024-08-14T10:56:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;m excited to announce that I&amp;#039;ve started a podcast!&lt;/p&gt;&lt;p&gt;It&amp;#039;s called &lt;a href=&quot;https://www.lineyourownpockets.com/&quot;&gt;Line Your Own Pockets&lt;/a&gt; and it&amp;#039;s for traders who are sick and tired of all the trading gurus in this industry who are great at marketing and even better at &lt;em&gt;pretending&lt;/em&gt; to be traders.&lt;/p&gt;&lt;p&gt;If you realize that the only way to be successful is to take responsibility for your own trading, then this podcast is for you.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re still looking for the trading holy grail or want to be spoonfed someone else&amp;#039;s stock picks, then you&amp;#039;re going to hate this podcast.&lt;/p&gt;&lt;p&gt;This is the podcast I wish had existed 15 years ago when I started backtesting and creating my own trading strategies.&lt;/p&gt;&lt;p&gt;For just a few minutes of your time each week, you&amp;#039;ll learn the dos and don&amp;#039;ts of creating and trading strategies that have edge.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve partnered with Michael Nauss of &lt;a href=&quot;https://www.statsedgetrading.com/&quot;&gt;Stats Edge Trading&lt;/a&gt; to be my co-host.&lt;/p&gt;&lt;p&gt;Check it out! There are links to subscribe on Spotify, Apple Podcasts, and wherever you listen.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.lineyourownpockets.com/&quot;&gt;Line Your Own Pockets&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Use The Best Tools For Your Trading</title>
        <link href="https://davemabe.com/use-the-best-tools-for-your-trading"/>
        <id>https://davemabe.com/use-the-best-tools-for-your-trading</id>
        <published>2024-08-08T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;My wife and I love going to Boone, NC for long weekends of running, riding, and relaxing which we&amp;#039;ve done for years.&lt;/p&gt;&lt;p&gt;It&amp;#039;s at least 10 degrees cooler after you make the ascent from Wilkesboro on 421.&lt;/p&gt;&lt;p&gt;Time and time again we&amp;#039;ve made the trek up that climb.&lt;/p&gt;&lt;p&gt;Last year it dawned on me - if I find a decent route, Joan could drop me off in Wilkesboro and I could ride my bike the rest of the way - up the mountain - and meet her in Boone.&lt;/p&gt;&lt;p&gt;I asked my cycling friends if they knew of such a route and Fred responded with one that he heard was good, but had never actually ridden.&lt;/p&gt;&lt;p&gt;I studied the route closely - there were sections of gravel - but it looked like it would work.&lt;/p&gt;&lt;p&gt;Although I had never been on those back roads before - and didn&amp;#039;t know anyone who had - I decided to take a shot.&lt;/p&gt;&lt;p&gt;I double-checked the route, then I loaded it onto my cycling computer.&lt;/p&gt;&lt;p&gt;Joan dropped me off at Kerr Scott Lake in Wilkesboro and I started my point-to-point ride.&lt;/p&gt;&lt;p&gt;It starts on a country road dotted with churches that had signs out front with slogans that you can&amp;#039;t decide if they hit the mark exactly or miss it entirely.  (e.g. one read: &amp;quot;If you think it&amp;#039;s hot now, hell is a lot hotter!&amp;quot;)&lt;/p&gt;&lt;p&gt;The directions were low-stress - I could simply glance down at my computer and see how far until the next turn.&lt;/p&gt;&lt;p&gt;The ride was brutal (in a good way!) ending with a monster climb in the last 5 miles.&lt;/p&gt;&lt;p&gt;I met Joan in Boone and our vacation weekend began.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing - the first time I did this ride there was significant risk.&lt;/p&gt;&lt;p&gt;It was point-to-point and I had never done the route and knew nobody who had - if the directions were wrong or some part of it was unpassable or if I got lost, I would have been screwed.&lt;/p&gt;&lt;p&gt;Because I had a computer that could do turn-by-turn directions and planned the route thoroughly ahead of time, I could enjoy reading all those church signs along the way.&lt;/p&gt;&lt;p&gt;Your trading is no different.&lt;/p&gt;&lt;p&gt;Are there tools YOU can use to make your trading smoother and less stressful?&lt;/p&gt;&lt;p&gt;It might make sense to pinch pennies in other areas of your life, but not trading.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Eye-Opening Way to Eliminate Trading Mistakes</title>
        <link href="https://davemabe.com/the-eye-opening-way-to-eliminate-trading-mistakes"/>
        <id>https://davemabe.com/the-eye-opening-way-to-eliminate-trading-mistakes</id>
        <published>2024-08-01T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;For the second trading day in a row, I had missed winning trades I should have taken.&lt;/p&gt;&lt;p&gt;Somehow I was just a bit too late to notice the setup in time... again.&lt;/p&gt;&lt;p&gt;With any trading system, the big winning trades make the system profitable.&lt;/p&gt;&lt;p&gt;The first day this happened I thought, &amp;quot;No big deal. This system has plenty of profitable trades - I&amp;#039;ll get most of them.&amp;quot;&lt;/p&gt;&lt;p&gt;After reviewing my trades after the second day it happened, it became clear this leak was not acceptable.  I had to plug it!&lt;/p&gt;&lt;p&gt;So for the next few days, I recorded my screen while I traded.&lt;/p&gt;&lt;p&gt;After each market close, I watched the video of my session from that day.&lt;/p&gt;&lt;p&gt;What did I learn?&lt;/p&gt;&lt;p&gt;My trading routine wasn&amp;#039;t nearly as systematic as I thought it was.&lt;/p&gt;&lt;p&gt;My chart layout could be improved.&lt;/p&gt;&lt;p&gt;The way I calculated position size for each trade took far too much time.&lt;/p&gt;&lt;p&gt;I was missing trades because there was all sorts of sloppiness in my routine I wasn&amp;#039;t even aware of.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;So here&amp;#039;s a challenge for you.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;For the next day or two, record your trading session.  Then go back as a neutral observer and review it after the close.&lt;/p&gt;&lt;p&gt;I guarantee you will find &lt;strong&gt;multiple ways to get better&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Concrete changes you can make immediately.​&lt;/p&gt;&lt;p&gt;Try this and let me know what you uncover.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Trade Half Days With Ease</title>
        <link href="https://davemabe.com/how-to-trade-half-days-with-ease"/>
        <id>https://davemabe.com/how-to-trade-half-days-with-ease</id>
        <published>2024-07-25T10:54:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Years ago when I created a program to enter my orders, it made trading so much easier.&lt;/p&gt;&lt;p&gt;How hard can it be to enter an order manually? It turns out there are so many options to include on an order.&lt;/p&gt;&lt;p&gt;It takes way more time than you think, not to mention the mistakes that you inevitably make.&lt;/p&gt;&lt;p&gt;One of the biggest benefits was automatically including a time stop with my exit orders.&lt;/p&gt;&lt;p&gt;Several of my systems hold for the entire trading day, so I include an order that exits the position automatically just before the market closes at, say, 3:55pm ET.&lt;/p&gt;&lt;p&gt;My initial logic was to store a DateTime object and use the time part of it to determine the time of day.&lt;/p&gt;&lt;p&gt;It worked well - until the first half day, like last week before July 4th.&lt;/p&gt;&lt;p&gt;Since the market closes at 1:00pm ET on half days, I would be stuck in my positions well after the close.&lt;/p&gt;&lt;p&gt;This is not just annoying - it could end up being disastrous!&lt;/p&gt;&lt;p&gt;I quickly realized there&amp;#039;s a far better way to implement this so you don&amp;#039;t get caught off guard on half days.&lt;/p&gt;&lt;p&gt;Instead of storing the variable as a DateTime or a time of day, use &lt;strong&gt;an integer for the number of minutes before the market close&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Once a year check the list of half days for the upcoming year.&lt;/p&gt;&lt;p&gt;Store that list in a file or database that your code can check when computing the exit time to use in your orders.&lt;/p&gt;&lt;p&gt;If it&amp;#039;s a half day, the market close is 1pm, otherwise 4pm.&lt;/p&gt;&lt;p&gt;In your code, subtract your number of minutes from the market close of the current day.&lt;/p&gt;&lt;p&gt;This way your code will work gracefully on &lt;strong&gt;regular trading days&lt;/strong&gt; and &lt;strong&gt;half days&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;And you will no longer panic at 1pm when you realize you&amp;#039;ve forgotten that it&amp;#039;s a half day - something that&amp;#039;s happened to me plenty of times.  :-)&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Often The Most Profitable Thing You Can Do Is...</title>
        <link href="https://davemabe.com/often-the-most-profitable-thing-you-can-do-is"/>
        <id>https://davemabe.com/often-the-most-profitable-thing-you-can-do-is</id>
        <published>2024-07-18T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Wait.&lt;/p&gt;&lt;p&gt;And yet it&amp;#039;s the hardest thing to do.&lt;/p&gt;&lt;p&gt;As humans, we&amp;#039;re hardwired to take action - any action.&lt;/p&gt;&lt;p&gt;To do a task so you can check something off a to-do list.&lt;/p&gt;&lt;p&gt;It feels good to complete a task.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve moved the ball forward a little.&lt;/p&gt;&lt;p&gt;But in trading, you very often get paid to NOT do anything.&lt;/p&gt;&lt;p&gt;Wait for a real setup rather than squinting hard enough to force one now.&lt;/p&gt;&lt;p&gt;Wait for an already profitable trade to become even more profitable.&lt;/p&gt;&lt;p&gt;Wait so you can collect more data to fully understand if your strategy has edge.&lt;/p&gt;&lt;p&gt;Wait to gain more experience before increasing your position size in a new strategy.&lt;/p&gt;&lt;p&gt;Wait just to ponder an idea with no deadline in mind.&lt;/p&gt;&lt;p&gt;Doing nothing IS an action.&lt;/p&gt;&lt;p&gt;Often the most profitable one.&lt;/p&gt;&lt;p&gt;My wife sent me a playlist to listen to on a recent trip.&lt;/p&gt;&lt;p&gt;Buried in it was this song which I couldn&amp;#039;t get enough of - I must have played it on repeat for an hour.&lt;/p&gt;&lt;p&gt;Give it a listen to be inspired to... do nothing.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://open.spotify.com/track/436bx0eHJS5DPgIyfsDU31?si=9b7e5ca1b1264fc5&quot;&gt;Hold On by Alabama Shakes&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Simple Truth About Becoming Profitable</title>
        <link href="https://davemabe.com/the-simple-truth-about-becoming-profitable"/>
        <id>https://davemabe.com/the-simple-truth-about-becoming-profitable</id>
        <published>2024-07-11T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a question I get repeatedly in some form from new traders.&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;I don&amp;#039;t want to reinvent the wheel - can you just give me a strategy that&amp;#039;s working?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It&amp;#039;s a surefire signal that the trader hasn&amp;#039;t yet internalized the mindset required to be successful.&lt;/p&gt;&lt;p&gt;Traders who become successful realize at some point along the way the fact they felt the urge to ask that question was literally what was holding them back.&lt;/p&gt;&lt;p&gt;That&amp;#039;s the turning point - when they finally give up relying on someone else and build a process for creating their own trading edges.&lt;/p&gt;&lt;p&gt;And yet I still see traders looking for the smartest person in the class to cheat off of and get the right answers for the exam.&lt;/p&gt;&lt;p&gt;That might have worked for them in high school but it will get you nowhere in the stock market.&lt;/p&gt;&lt;p&gt;I recently came across more evidence that this is true.&lt;/p&gt;&lt;p&gt;A &lt;a href=&quot;https://www.traipsingabout.com/&quot;&gt;friend of mine&lt;/a&gt; sent me an academic paper that should convince you beyond any doubt of your path to success.&lt;/p&gt;&lt;p&gt;The paper is titled &amp;quot;&lt;a href=&quot;https://papers.ssrn.com/sol3/papers.cfm?utm_source=substack&amp;amp;utm_medium=email&amp;amp;abstract_id=4428232&quot;&gt;Finfluencers&lt;/a&gt;&amp;quot;.&lt;/p&gt;&lt;p&gt;Researchers from Berkeley and LSU examined financial tweets from people with various numbers of followers.&lt;/p&gt;&lt;p&gt;They measured the performance of a hypothetical portfolio that followed the advice given in social media from various influencers to determine which ones had real edge and which ones were spouting nonsense.&lt;/p&gt;&lt;p&gt;The researchers categorized the influencers as &amp;quot;skilled,&amp;quot; &amp;quot;unskilled,&amp;quot; or &amp;quot;antiskilled.&amp;quot;&lt;/p&gt;&lt;p&gt;Skilled meaning their recommendations had some amount of trading edge, unskilled meaning they had no edge, and the most interesting: &amp;quot;antiskilled&amp;quot; meaning they have &amp;quot;negative edge&amp;quot; - i.e. you&amp;#039;d be better off doing the opposite of what they recommend.&lt;/p&gt;&lt;p&gt;You might have guessed that skill is pretty rare on social media.&lt;/p&gt;&lt;p&gt;But you probably didn&amp;#039;t guess the most important conclusion from the paper.&lt;/p&gt;&lt;p&gt;The more followers someone has on social media, the &lt;strong&gt;more&lt;/strong&gt; likely they are to be antiskilled.&lt;/p&gt;&lt;p&gt;Think about that.&lt;/p&gt;&lt;p&gt;The more successful someone is on Twitter, the higher the likelihood they&amp;#039;re spewing nonsense.&lt;/p&gt;&lt;p&gt;And importantly it&amp;#039;s not just random nonsense, but there&amp;#039;s a slight edge in literally &lt;strong&gt;doing the opposite of what they recommend&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re ready to start lining your own pockets instead of some Ferarri-driving trading guru with antiskill, reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What Re-Reading Great Fiction Can Teach You About Trading</title>
        <link href="https://davemabe.com/what-re-reading-great-fiction-can-teach-you-about-trading"/>
        <id>https://davemabe.com/what-re-reading-great-fiction-can-teach-you-about-trading</id>
        <published>2024-07-04T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;My wife, Joan (who&amp;#039;s well-known enough to &lt;a href=&quot;https://en.wikipedia.org/wiki/Joan_Nesbit&quot;&gt;have a Wikipedia page&lt;/a&gt;), is re-reading some of her favorite fiction books with our daughter, who is developing a taste for great literature.&lt;/p&gt;&lt;p&gt;Joan has always loved great fiction to her core. Everything else is a distant second (including me, pretty sure!)&lt;/p&gt;&lt;p&gt;So she&amp;#039;s thrilled that our math-loving daughter has taken up this interest they can share.&lt;/p&gt;&lt;p&gt;Joan&amp;#039;s absolute favorite book is &lt;a href=&quot;https://www.amazon.com/Franny-Zooey-J-D-Salinger/dp/0316769495&quot;&gt;Franny and Zooey by J.D. Salinger&lt;/a&gt;, one she consistently recommends.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve read it once and I agree it&amp;#039;s excellent.&lt;/p&gt;&lt;p&gt;It&amp;#039;s been several years since she&amp;#039;s read it, but she&amp;#039;s rereading it now as my daughter is reading it for the first time.&lt;/p&gt;&lt;p&gt;Joan has read this book &lt;strong&gt;many, many times&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;So many times you would think she knows the book inside and out.&lt;/p&gt;&lt;p&gt;And yet, as she&amp;#039;s reading it now for the umpteenth time, she noticed an incredible detail she&amp;#039;d overlooked every time before.&lt;/p&gt;&lt;p&gt;She excitedly told me this is now her favorite detail in the entire book.&lt;/p&gt;&lt;p&gt;A brand new discovery in her favorite book she&amp;#039;s read countless times.&lt;/p&gt;&lt;p&gt;(If you&amp;#039;re interested in the details, hit reply and I&amp;#039;ll share.)&lt;/p&gt;&lt;p&gt;What does this have to do with trading?&lt;/p&gt;&lt;p&gt;The same aha moment of discovery can happen when you look at a familiar strategy with fresh eyes.&lt;/p&gt;&lt;p&gt;I recently took a deep dive into one of the trading strategies I&amp;#039;ve traded daily for almost a decade - something I&amp;#039;ve done many times before.&lt;/p&gt;&lt;p&gt;But this time I found something I hadn&amp;#039;t noticed before.&lt;/p&gt;&lt;p&gt;A new feature that has predictive power that I can apply to make the strategy better.&lt;/p&gt;&lt;p&gt;These seemingly random breakthroughs can happen at any time, as long as you regularly put yourself in a position to notice them.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Avoid Overall Market Filters in Strategies</title>
        <link href="https://davemabe.com/why-i-avoid-overall-market-filters-in-strategies"/>
        <id>https://davemabe.com/why-i-avoid-overall-market-filters-in-strategies</id>
        <published>2024-06-27T13:30:00-04:00</published>
        <updated>2026-02-23T10:43:38-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When you&amp;#039;re creating trading strategies, most traders eventually consider trying to improve the system&amp;#039;s performance by adding an overall market rule.&lt;/p&gt;&lt;p&gt;For example, you have a system that trades stocks gapping up long and stocks gapping down short.&lt;/p&gt;&lt;p&gt;Instead of taking all the trades in the system, you consider only taking the long trades when the overall market is positive or only taking the short trades when the overall market is negative as determined by some metric.&lt;/p&gt;&lt;p&gt;(In Trade-Ideas, there are several of these overall market filters available.  For example, &lt;a href=&quot;https://www.trade-ideas.com/help/filter/Spy30/&quot;&gt;S&amp;amp;P Change in 30 Minutes&lt;/a&gt;, &lt;a href=&quot;https://www.trade-ideas.com/help/filter/SpyD/&quot;&gt;S&amp;amp;P Change Today&lt;/a&gt;, &lt;a href=&quot;https://www.trade-ideas.com/help/filter/QqqqD/&quot;&gt;NASDAQ Change Today&lt;/a&gt;, etc.  See those links for the full details about how they work.)&lt;/p&gt;&lt;p&gt;While this might seem like a perfectly reasonable approach, I think it&amp;#039;s a mistake to use these filters that measure the overall market in your trading strategy.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why.&lt;/p&gt;&lt;p&gt;When you design a trading system, you identify an event as the impetus for your trading signal.&lt;/p&gt;&lt;p&gt;This event needs to be significant, strong, and unusual - otherwise, it&amp;#039;s just random noise.&lt;/p&gt;&lt;p&gt;For most trading systems, the overall market behavior at the time of your trade should be irrelevant.&lt;/p&gt;&lt;p&gt;When you consider applying a rule based on the overall market, on some level you are admitting that your system&amp;#039;s trading signal isn&amp;#039;t as strong as it should be and that it &amp;quot;needs help&amp;quot; from a largely unrelated factor to function sufficiently.&lt;/p&gt;&lt;p&gt;When you think about applying an overall market filter, it&amp;#039;s usually a sign that you need to find more significance in the trading signal itself.&lt;/p&gt;&lt;p&gt;But even beyond that, there&amp;#039;s another important reason I avoid overall market filters.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you can apply an overall market filter that significantly improves the performance of your trading system.&lt;/p&gt;&lt;p&gt;By definition, this improvement will come from increasing the profit per trade and reducing the number of trades in your system.&lt;/p&gt;&lt;p&gt;In other words, you&amp;#039;ll remove some relatively poor trades from your system when the overall market isn&amp;#039;t favorable.&lt;/p&gt;&lt;p&gt;Unlike a normal trading rule, you&amp;#039;ll end up with large windows of time where your system isn&amp;#039;t making trades at all.&lt;/p&gt;&lt;p&gt;For example, let&amp;#039;s say your rule is to skip short trades in your system when the SPY is above its 50-day moving average.&lt;/p&gt;&lt;p&gt;One look at a daily chart of the SPY and you&amp;#039;ll see there will be &lt;strong&gt;weeks or even longer when your system makes no trades&lt;/strong&gt;, just because of this one rule you applied.&lt;/p&gt;&lt;p&gt;This is a terrible tradeoff to me.&lt;/p&gt;&lt;p&gt;I want my trading systems to trade frequently and regularly, without large arbitrary windows of time when they&amp;#039;re effectively disabled.&lt;/p&gt;&lt;p&gt;Instead of considering a market filter, use your effort to identify more power in your trading signal and your system will be more robust.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What I've Learned from Creating Strategies with AI</title>
        <link href="https://davemabe.com/what-ive-learned-from-creating-strategies-with-ai"/>
        <id>https://davemabe.com/what-ive-learned-from-creating-strategies-with-ai</id>
        <published>2024-06-20T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I currently trade a variety of strategies, many of which use machine learning and AI as a significant component.&lt;/p&gt;&lt;p&gt;Some of the strategies were built using AI while others include AI directly in the execution of the trades.&lt;/p&gt;&lt;p&gt;In the decade or so of using these techniques, I&amp;#039;ve learned valuable lessons about how best to use AI in trading.&lt;/p&gt;&lt;p&gt;What surprised me, however, was how much the lessons apply to creating profitable trading strategies in general.&lt;/p&gt;&lt;p&gt;In this post, I&amp;#039;ll share some of the lessons I&amp;#039;ve learned from creating these strategies you can apply to your trading.&lt;/p&gt;&lt;h2&gt;Feature Selection is Everything&lt;/h2&gt;&lt;p&gt;Feature selection, or determining which indicators should be included in your model, is the most important aspect of creating a successful strategy.&lt;/p&gt;&lt;p&gt;Most of your energy will be spent figuring out which indicators your model is allowed to consider.&lt;/p&gt;&lt;p&gt;The features you leave out are as important as the ones you include.&lt;/p&gt;&lt;h2&gt;Features Should Be Minimally Correlated&lt;/h2&gt;&lt;p&gt;When you add a feature to your model, make sure there is minimal correlation with another feature already in the model.&lt;/p&gt;&lt;p&gt;The model will get worse if you include features that are highly correlated with other features.&lt;/p&gt;&lt;p&gt;For example, let&amp;#039;s say you include a feature for &lt;strong&gt;Distance from the 50 Day Moving Average&lt;/strong&gt; which seems to improve your model.&lt;/p&gt;&lt;p&gt;Adding a feature for &lt;strong&gt;Distance from the 200 Day Moving Average&lt;/strong&gt; will likely worsen the model. Even if it seems it&amp;#039;s capturing something different than the 50 day moving average, those features will be statistically strongly correlated.&lt;/p&gt;&lt;h2&gt;Having Too Many Trading Rules Is Terrible&lt;/h2&gt;&lt;p&gt;When you add trading rules, you always risk significantly deteriorating the strategy.&lt;/p&gt;&lt;p&gt;This is how curve fitting occurs - adding a trading rule that doesn&amp;#039;t tell a coherent story.&lt;/p&gt;&lt;p&gt;When deciding whether to add a trading rule to your strategy, pretend you have to justify it to an experienced and skeptical trader.&lt;/p&gt;&lt;p&gt;Does the trading rule truly make sense?&lt;/p&gt;&lt;p&gt;Even if it improves the strategy, does it pass the sniff test?&lt;/p&gt;&lt;p&gt;In my experience, most traders are too quick to add trading rules to their strategy that don&amp;#039;t tell a coherent story.&lt;/p&gt;&lt;p&gt;As a result, their trading strategies are far less robust than they could be.&lt;/p&gt;&lt;h2&gt;Add a Random Variable as a Control&lt;/h2&gt;&lt;p&gt;One way to get better at creating strategies is a technique I accidentally stumbled upon.&lt;/p&gt;&lt;p&gt;Several years ago I was analyzing a backtest and decided to add a rule based on an indicator that seemed to improve the strategy significantly.&lt;/p&gt;&lt;p&gt;After trading the strategy for a while and reconciling my live results with the backtest, I realized that there was an error in the way I was collecting the data that this particular rule was based on.&lt;/p&gt;&lt;p&gt;As a result of this bug, the data for this indicator was just random noise.&lt;/p&gt;&lt;p&gt;And yet, when I originally examined the data it seemed to have a strong effect!  I was fooled.&lt;/p&gt;&lt;p&gt;I realized, though, that &lt;strong&gt;purposefully adding a random variable&lt;/strong&gt; to your backtest is an excellent quality check for your process.&lt;/p&gt;&lt;p&gt;If in the process of analyzing your data, your random variable starts appearing as being &amp;quot;important&amp;quot;, then you know you&amp;#039;re likely &amp;quot;torturing your data&amp;quot; too much.&lt;/p&gt;&lt;p&gt;A random variable has no predictive value to your strategy, so if it appears in your analysis it is a huge red flag.&lt;/p&gt;&lt;p&gt;Do you use AI in your trading or have you made attempts that didn&amp;#039;t seem to work? Reach out and let me know - I&amp;#039;m happy to share notes and point you in the right direction.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Are Your Trading Charts Costing You Profits?</title>
        <link href="https://davemabe.com/are-your-trading-charts-costing-you-profits"/>
        <id>https://davemabe.com/are-your-trading-charts-costing-you-profits</id>
        <published>2024-06-13T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Think about your trading performance over the last year. Now imagine those results with all the trading mistakes you made removed.&lt;/p&gt;&lt;p&gt;Your trading performance would be dramatically better if you could &lt;strong&gt;eliminate those mistakes&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Most traders set up their charts in such a way that guarantees they&amp;#039;ll make the same costly errors over and over.&lt;/p&gt;&lt;p&gt;Adding too many indicators to your chart isn&amp;#039;t just sloppy - it&amp;#039;s costing you money.&lt;/p&gt;&lt;p&gt;I&amp;#039;ll describe a simple framework you can use to make sure your charts are set up to make your trading profitable.&lt;/p&gt;&lt;p&gt;First, let&amp;#039;s talk about driving a car.&lt;/p&gt;&lt;p&gt;When I turned 16, I bought my family&amp;#039;s Mazda 626. It was a decent starter car and I loved the freedom that came with it.&lt;/p&gt;&lt;p&gt;Two main gauges on the dashboard took up most of the visible area.&lt;/p&gt;&lt;p&gt;One was a tachometer - a gauge that measures the rotation speed of the engine in revolutions per minute (RPM).&lt;/p&gt;&lt;p&gt;The other was a speedometer - a gauge that measures the current speed of the vehicle.&lt;/p&gt;&lt;p&gt;As a teenager, I remember thinking these gauges were pretty cool - they gave the driver&amp;#039;s seat the feel of an airplane cockpit.&lt;/p&gt;&lt;p&gt;But over time you realize that one of these gauges is far more valuable than the other.&lt;/p&gt;&lt;p&gt;And for a very simple reason.&lt;/p&gt;&lt;p&gt;Although the tachometer is fun to look at, you make zero driving decisions based on its reading.&lt;/p&gt;&lt;p&gt;Compare that to the speedometer which you constantly check and adjust your driving to make sure you&amp;#039;re not speeding.&lt;/p&gt;&lt;p&gt;(Dad - if you&amp;#039;re reading this, rest assured that I never exceeded the posted speed limit - not even a single time!)&lt;/p&gt;&lt;p&gt;The fact that these gauges took up the same amount of space on the dashboard is insane.&lt;/p&gt;&lt;p&gt;Now look at your charts. How many &amp;quot;tachometers&amp;quot; do you have on them?&lt;/p&gt;&lt;p&gt;Any indicator that doesn&amp;#039;t directly drive pre-planned trading decisions should be removed.&lt;/p&gt;&lt;p&gt;Why are they there other than to look cool?&lt;/p&gt;&lt;p&gt;If they can&amp;#039;t be tied to a specific trading rule, then not only is it taking up space needlessly, but it&amp;#039;s introducing an opportunity for you to make a trading mistake.&lt;/p&gt;&lt;p&gt;Make sure any indicators you have on your chart are &lt;strong&gt;speedometers&lt;/strong&gt;, not &lt;strong&gt;tachometers&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re ready to take your trading to the next level, consider my &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot; title=&quot;Trading Success Roadmap&quot;&gt;Trading Success Roadmap&lt;/a&gt;. We&amp;#039;ll dive into your trading to find all the tachometers and replace them with speedometers to make your trading business efficient and self-improving over time.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Make Your Strategy More Predictive</title>
        <link href="https://davemabe.com/how-to-make-your-strategy-more-predictive"/>
        <id>https://davemabe.com/how-to-make-your-strategy-more-predictive</id>
        <published>2024-06-06T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Time and time again I see traders give up on a perfectly good trading strategy too soon because it &amp;quot;doesn&amp;#039;t work anymore&amp;quot; or they aren&amp;#039;t able to see a rule they can apply to make the strategy significantly more profitable.&lt;/p&gt;&lt;p&gt;It pains me to see a trader abandon strategies that have so much potential.&lt;/p&gt;&lt;p&gt;In this post, I&amp;#039;ll show you one way to get more edge out of a trading strategy and gain more insight that you can apply to other strategies as well.&lt;/p&gt;&lt;p&gt;One common situation when developing strategies is ending up with too few trades in a backtest to draw significant conclusions from.  The more trades that you start with in a backtest, the better chance you&amp;#039;ll end up with a significant number of profitable trades after you optimize it.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a technique I&amp;#039;ve used to add more trades to a backtest so I can be significantly more confident in the strategy than otherwise.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you&amp;#039;re testing a strategy that looks for stocks gapping up over 5% and going long, but you&amp;#039;re not finding enough trades to draw confident conclusions.&lt;/p&gt;&lt;p&gt;Most traders throw up their hands and give up, but here&amp;#039;s a way to double the number of trades in your backtest.&lt;/p&gt;&lt;p&gt;Instead of looking at the long side only, combine the backtest with the equivalent strategy on the short side.  In our example, that would mean adding stocks that are gapping down more than -5% and going short.&lt;/p&gt;&lt;p&gt;One problem to address is &amp;quot;normalizing&amp;quot; the data so you can analyze these separate trades together.  For example, when you look at the gap, you&amp;#039;ll have positive numbers for the longs and negative numbers for the shorts.&lt;/p&gt;&lt;p&gt;That makes it difficult to determine the best threshold to use for the gap percent.&lt;/p&gt;&lt;p&gt;To solve this, add another column for the absolute value of the gap.  That value will be normalized across long and short trades allowing you to properly analyze the right threshold to use.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve now effectively doubled the number of trades in your backtest giving you more data to examine - a big win.&lt;/p&gt;&lt;p&gt;What about a filter that a simple absolute value function won&amp;#039;t work for?&lt;/p&gt;&lt;p&gt;Take one of my favorite filters to use: position in range.&lt;/p&gt;&lt;p&gt;It takes the high and low of some range (say, yesterday&amp;#039;s trading range) and gives you a number corresponding to the trade&amp;#039;s entry price position within that range.&lt;/p&gt;&lt;p&gt;For longs, you might be looking for trades in the top part of the range (values of around 100) but for shorts you might be looking for trades in the bottom part of the range (values of around 0).&lt;/p&gt;&lt;p&gt;A simple absolute value function won&amp;#039;t work here.&lt;/p&gt;&lt;p&gt;For this situation, I create a column called &amp;quot;directional position in range&amp;quot;.  For longs, the value is equivalent to the normal position in range.  But for shorts, the values are reversed by simply taking the value and subtracting it from 100.  For example, a value of 1 for position in range for a short (meaning it was near the low of the range) becomes 99 (100 - 1).&lt;/p&gt;&lt;p&gt;This new directional position in range column allows me to treat long and short trades equivalently for the purposes of optimizing the strategy.&lt;/p&gt;&lt;p&gt;This simple technique can often be the difference between a dead-end because of limited data and a profitable insight that can be applied to a profitable strategy.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Humility in Trading Goes a Long Way</title>
        <link href="https://davemabe.com/humility-in-trading-goes-a-long-way"/>
        <id>https://davemabe.com/humility-in-trading-goes-a-long-way</id>
        <published>2024-05-30T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s my favorite image from my &lt;a href=&quot;https://www.davemabe.com/trading-strategy-bootcamp/&quot;&gt;free email course on Backtesting&lt;/a&gt;:&lt;/p&gt;&lt;p&gt;It&amp;#039;s to reinforce the fact that most traders think it&amp;#039;s time to start ringing the register as soon as their backtest is complete.&lt;/p&gt;&lt;p&gt;Nothing could be further from the truth.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to get overconfident when you see an equity curve like this (from one of my students - keep reading to learn more)&lt;/p&gt;&lt;p&gt;This step of going from a theoretical backtest to real-time trading is significant and you&amp;#039;ll often find flaws or incorrect assumptions you made in your strategy.&lt;/p&gt;&lt;p&gt;You eventually WILL learn these lessons.&lt;/p&gt;&lt;p&gt;And you have two options for doing so.&lt;/p&gt;&lt;p&gt;One way to learn them is to trade with real money - in which case you&amp;#039;ll pay for those lessons with &amp;quot;tuition.&amp;quot; (Sometimes a LOT of tuition)&lt;/p&gt;&lt;p&gt;The better way is to learn those lessons for free - by paper trading your strategy first.&lt;/p&gt;&lt;p&gt;A little bit of humility goes a long way here.&lt;/p&gt;&lt;p&gt;Be skeptical - make your strategy prove itself to you.&lt;/p&gt;&lt;p&gt;Because traders so often overlook it, I include an entire section in the &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot; title=&quot;Trading Success Roadmap&quot;&gt;Trading Success Roadmap&lt;/a&gt; on this step.&lt;/p&gt;&lt;p&gt;The traders who have gone through the roadmap with me are fully aware of the trading pitfalls that can occur and have a plan for dealing with them ahead of time.&lt;/p&gt;&lt;p&gt;One trader I&amp;#039;m working with now, named Finith J., is incredibly patient (that&amp;#039;s Finith on the left and me on the right):&lt;/p&gt;&lt;p&gt;He&amp;#039;s developed two solid strategies that he&amp;#039;s been paper trading (one is represented by the equity curve above).&lt;/p&gt;&lt;p&gt;He&amp;#039;s learning all those pitfalls of trading now, so by the time he starts trading live he will have a huge head start.&lt;/p&gt;&lt;p&gt;A big part of the reason for his patience is his background in chemistry (he has a PhD).&lt;/p&gt;&lt;p&gt;Although chemistry and trading are separate fields, it turns out there are a lot of overlapping concepts that make him well-suited for trading.&lt;/p&gt;&lt;p&gt;He&amp;#039;s getting ready to go live with these strategies now, but the best part is he now has a generic framework for testing &lt;strong&gt;any trading idea&lt;/strong&gt; and turning it into a profitable trading strategy.&lt;/p&gt;&lt;p&gt;Have the patience of Finith!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What a Pushup Contest Can Teach You About Trading</title>
        <link href="https://davemabe.com/what-a-pushup-contest-can-teach-you-about-trading"/>
        <id>https://davemabe.com/what-a-pushup-contest-can-teach-you-about-trading</id>
        <published>2024-05-23T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Some of you might know I&amp;#039;m a runner and cyclist (see P.S. below for a Strava link). This past weekend I ran a local trail race with friends.&lt;/p&gt;&lt;p&gt;After the race, the organizers held a pushup contest.&lt;/p&gt;&lt;p&gt;I wasn&amp;#039;t planning to participate, but when several of my friends were doing it, I decided to jump in as well. There were several strong looking guys in the contest, so my expectations were low.&lt;/p&gt;&lt;p&gt;I was into upper body strength several years ago when I tried to achieve 50 pullups in a row (I did 38), but that&amp;#039;s been ages.&lt;/p&gt;&lt;p&gt;This year, however, I decided to take a different approach. Instead of setting a lofty goal like doing 50 pullups, I set out to do a small amount of upper body exercises every single day.&lt;/p&gt;&lt;p&gt;For 6 months now, I&amp;#039;ve done 20-25 pushups and an ab exercise every day. There have been days I&amp;#039;ve missed (4 or 5 probably), but I don&amp;#039;t sweat it - as long as I &amp;quot;make it up&amp;quot; by doing double the following day, my average is intact.&lt;/p&gt;&lt;p&gt;There is no complex workout routine here: after a week the pushups aren&amp;#039;t hard and it only takes a couple of minutes to complete. The only real challenging part is doing it EVERY DAY.&lt;/p&gt;&lt;p&gt;Back to the contest last Saturday.&lt;/p&gt;&lt;p&gt;Much to the surprise of all my friends, all the burly participants, and most of all me - I won the contest.&lt;/p&gt;&lt;p&gt;I was shocked, but at that moment I realized my simple, daily routine provided a much broader foundation of strength than I imagined.&lt;/p&gt;&lt;p&gt;The same concept applies to your trading.&lt;/p&gt;&lt;p&gt;This is the first thing I help traders implement - a simple, efficient, trading review &lt;strong&gt;every single trading day&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not hard and doesn&amp;#039;t take much time, but it works because you do it regularly.&lt;/p&gt;&lt;p&gt;But once you get this process in place, it creates an upward spiral where it&amp;#039;s almost impossible not to &lt;strong&gt;significantly improve your trading&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a photo of the pushup contest that my friend took. That&amp;#039;s me on the right in the jacket (it was pouring down rain):&lt;/p&gt;&lt;p&gt;P.S. Here&amp;#039;s my &lt;a href=&quot;https://www.strava.com/athletes/1759969&quot;&gt;Strava profile&lt;/a&gt; if you&amp;#039;re interested in following me there.  If you do, reply and let me know and I&amp;#039;ll follow you back.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You're Measuring Trading Performance Wrong</title>
        <link href="https://davemabe.com/youre-measuring-trading-performance-wrong"/>
        <id>https://davemabe.com/youre-measuring-trading-performance-wrong</id>
        <published>2024-05-16T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In today&amp;#039;s newsletter, I&amp;#039;ll address the most common mindset that traders have and why that mindset is the exact thing holding them back.&lt;/p&gt;&lt;p&gt;When the market closes and you&amp;#039;re done making trades, how you reflect on your trading day is a crucial part of continuously improving as a trader.&lt;/p&gt;&lt;p&gt;Most traders measure their success by simply glancing at their P&amp;amp;L in their trading platform. If they made money - great! If they lost money - bad!&lt;/p&gt;&lt;p&gt;I&amp;#039;m not denying that the goal of trading ultimately is to make money, but using P&amp;amp;L every day as a measure of success is the wrong mindset to have.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why.&lt;/p&gt;&lt;p&gt;Your daily P&amp;amp;L number hides many of the details of your performance that will help you improve. Only reflecting on the overall P&amp;amp;L causes you to miss all those crucial details.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a great example. A few days ago I ended the trading day with an above average overall loss.&lt;/p&gt;&lt;p&gt;And yet I was as optimistic about my trading as I&amp;#039;d been in months.&lt;/p&gt;&lt;p&gt;How could that be?&lt;/p&gt;&lt;p&gt;Well, one of my most mature trading strategies had a losing day. Because that strategy has performed so well for so long now, I trade it with a lot of size.&lt;/p&gt;&lt;p&gt;A modest loss for that strategy is significant in comparison to other strategies I haven&amp;#039;t sized up that large yet.&lt;/p&gt;&lt;p&gt;So why was I so optimistic at the end of that day?&lt;/p&gt;&lt;p&gt;A new trading strategy I just started putting to work had an excellent day even though the size I&amp;#039;m using with it was small.&lt;/p&gt;&lt;p&gt;It had started proving itself in the real world. I had evidence that I&amp;#039;d be able to scale that strategy up and soon THAT would be a strategy contributing significantly to my daily P&amp;amp;L.&lt;/p&gt;&lt;p&gt;If I had looked at P&amp;amp;L alone, I would have missed this optimistic part of the trading day.&lt;/p&gt;&lt;p&gt;If P&amp;amp;L isn&amp;#039;t a great measure, what is?&lt;/p&gt;&lt;p&gt;The question you should be asking yourself at the end of the trading day:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Did I follow my rules?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;If you did, then the day was a success and you should be pleased no matter what your P&amp;amp;L happened to be.&lt;/p&gt;&lt;p&gt;If you didn&amp;#039;t follow your rules, then you&amp;#039;ve got some work to do.&lt;/p&gt;&lt;p&gt;This is a far better mindset to have for the following reasons:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;It forces you to clearly define what your rules are&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;It allows you to evaluate yourself in terms of what will impact your long term success&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;It creates optimism where there would otherwise be negativity&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;You should be shooting for profitable months, years, and decades.&lt;/p&gt;&lt;p&gt;This is the mindset that will bring those about, not whether any particular day is profitable.&lt;/p&gt;&lt;p&gt;Try this in your trading day reflection and let me know what you think.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Avoid This Huge Mistake When Backtesting</title>
        <link href="https://davemabe.com/avoid-this-huge-mistake-when-backtesting"/>
        <id>https://davemabe.com/avoid-this-huge-mistake-when-backtesting</id>
        <published>2024-05-09T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In today&amp;#039;s newsletter, I want to address the biggest mistake I see traders make when they start backtesting.&lt;/p&gt;&lt;p&gt;Backtesting is a superpower - the sooner you start backtesting the sooner you&amp;#039;ll start realizing the benefits.&lt;/p&gt;&lt;p&gt;Backtesting is a lot of work, but when done properly the payoff is immense.&lt;/p&gt;&lt;p&gt;The problem is most traders start backtesting in a way that still requires all that effort, but minimizes the actual benefits.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re going to put in the effort, it&amp;#039;s important to do it in a way that will maximize the benefits, otherwise all your work will be wasted.&lt;/p&gt;&lt;p&gt;Most traders begin with an idea for a strategy they apply to a single symbol, usually a well-known market index like SPY or QQQ.&lt;/p&gt;&lt;p&gt;Creating a strategy that trades a single symbol like this can work, but it&amp;#039;s vastly inferior to a strategy designed to trade any stock.&lt;/p&gt;&lt;p&gt;When you backtest using a single symbol, you&amp;#039;re competing against every trader with the ability to simply look at a chart. That&amp;#039;s almost every trader on the planet.&lt;/p&gt;&lt;p&gt;But when you start with a strategy designed to trade any stock in the market, the pool of traders you&amp;#039;re competing against drops dramatically.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a hard technical problem to create software that backtests all of the thousands of symbols that actively trade each day.&lt;/p&gt;&lt;p&gt;Creating software to backtest a single symbol is trivial in comparison.&lt;/p&gt;&lt;p&gt;That&amp;#039;s why you see so much software in the industry that claims to &amp;quot;backtest&amp;quot;, but only a small handful can tackle the more lucrative problem of backtesting the entire market.&lt;/p&gt;&lt;p&gt;Why is it so much better to create a strategy for the entire market? Lots of reasons:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;There are far more opportunities - it might take a decade to accumulate enough profitable trades in a single symbol to be worth trading&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;More opportunities give you more flexibility to improve your strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The types of strategies that work are easier to come by when applied to the entire market&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Because of the technical issues of scanning the entire market, your pool of competing traders is much smaller&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Easier to create a statistically valid strategy you can have confidence in&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your strategies will have more &amp;quot;staying power&amp;quot; - that is, they&amp;#039;ll deteriorate less quickly&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">When Is A Strategy Good Enough To Trade?</title>
        <link href="https://davemabe.com/when-is-a-strategy-good-enough-to-trade"/>
        <id>https://davemabe.com/when-is-a-strategy-good-enough-to-trade</id>
        <published>2024-05-02T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;(Note: this post is adapted from the &lt;a href=&quot;https://www.davemabe.com/roadmap/&quot;&gt;Trading Success Roadmap&lt;/a&gt;.)&lt;/p&gt;&lt;p&gt;&amp;quot;What metric should I look at to determine if my trading strategy is good enough to start trading it?&amp;quot;&lt;/p&gt;&lt;p&gt;I get this question a lot.&lt;/p&gt;&lt;p&gt;Many traders go overboard here by looking at all sorts of fancy (i.e. complicated) metrics and trying to find the perfect one. It&amp;#039;s easy to fall into analysis paralysis at this stage by obsessing over this metric or that.&lt;/p&gt;&lt;p&gt;The important thing to remember is any aggregate metric, by definition, hides many of the underlying details of a strategy.&lt;/p&gt;&lt;p&gt;When comparing trading strategies, I like to keep it simple.  Here are the metrics I&amp;#039;ll look at (in no particular order):&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Profit factor (sum of winning profit / -(sum of losing profit))&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Win rate (number of winning trades / number of total trades * 100)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Average Profit per Trade (total profit / number of trades)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Total Profit&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Total number of trades and specifically trades per day&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;The Most Important &amp;quot;Metric&amp;quot;&lt;/h2&gt;&lt;p&gt;By far the most important “metric” that I look at is a visual representation of the equity curve.  This is a simple line graph with the date on the X-axis and the cumulative profit on the Y-axis. Here’s an example where I compared three different systems in one simple graph:&lt;/p&gt;&lt;p&gt;Notice all the details that you can see that are hidden when you only look at a single metric like Profit Factor.&lt;/p&gt;&lt;p&gt;You can see the drawdowns and when they occurred.&lt;/p&gt;&lt;p&gt;You can see the large spikes up and down.&lt;/p&gt;&lt;p&gt;In short, you can see what it will &lt;strong&gt;actually feel like&lt;/strong&gt; to trade the strategy.&lt;/p&gt;&lt;p&gt;There is no substitute for examining the equity curve.&lt;/p&gt;&lt;p&gt;A strategy with a smooth equity curve will have different ways to scale up in size over time.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Smart Way to Avoid Bad Ticks</title>
        <link href="https://davemabe.com/the-smart-way-to-avoid-bad-ticks"/>
        <id>https://davemabe.com/the-smart-way-to-avoid-bad-ticks</id>
        <published>2024-04-25T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In today&amp;#039;s post, I&amp;#039;ll show you how to avoid bad ticks so you&amp;#039;ll never have to worry about them again.&lt;/p&gt;&lt;p&gt;Friend of the list &lt;a href=&quot;https://maoxian.substack.com/&quot;&gt;Maoxian&lt;/a&gt; sent me a DM the other morning:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Bad ticks this morning at 8am-ish. Lots of erroneous ticks in Trade-Ideas around 8am in HUBC, CADL, and AG.&lt;/p&gt;&lt;p&gt;&lt;br&gt;Maoxian&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Many traders just shrug their shoulders and live with them, believing that bad ticks are just part of the trading game.&lt;/p&gt;&lt;p&gt;But when you have trades triggered due to the bad tick, that&amp;#039;s a problem because even if you recognize the situation and exit the trade quickly there are still fees, slippage, and unnecessary risk that can easily add up.&lt;/p&gt;&lt;p&gt;Instead of just living with them, there&amp;#039;s a nice way to &lt;strong&gt;avoid these entirely&lt;/strong&gt; using &lt;a href=&quot;https://go.trade-ideas.com/SHsH&quot;&gt;Trade-Ideas&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Take this example in HUBC that Maoxian pointed out to me. Notice the suspicious, wide-ranging bars that start appearing right at 8:00am:&lt;/p&gt;&lt;p&gt;How do you know these are bad ticks and not legitimate trades? Look at Time and Sales:&lt;/p&gt;&lt;p&gt;Notice how the last trade is so far from the current bid/ask price at the time. In this case, the last was 1.53 but the bid was 1.35 and the ask was 1.37.&lt;/p&gt;&lt;p&gt;If you had a limit order to sell at 1.50 at this time, it would NOT have been filled.&lt;/p&gt;&lt;p&gt;To set up Trade-Ideas to ignore these bad ticks, go to &lt;a href=&quot;https://go.trade-ideas.com/SHsF&quot;&gt;the list of filters here&lt;/a&gt; and search for &lt;strong&gt;Distance from Inside Market&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;That filter allows you to control &lt;strong&gt;how far the last price can be from the bid/ask&lt;/strong&gt; (that is, the &amp;quot;inside market&amp;quot;).&lt;/p&gt;&lt;p&gt;That filter can be applied to any alert window.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a screenshot of an alert window where I added the Distance from Inside Market filter as a column to show the value for the alerts that fired due to the bad ticks.&lt;/p&gt;&lt;p&gt;Add a max value for the &lt;strong&gt;Distance from Inside Market&lt;/strong&gt; to filter out the alerts caused by these bad ticks.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re looking to get started with Trade-Ideas, here&amp;#039;s a 25% discount you can use.  When you check out use promo code &lt;strong&gt;TRADESMART25&lt;/strong&gt; to get the discount.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Think Position Sizing is Boring? Check This Out!</title>
        <link href="https://davemabe.com/think-position-sizing-is-boring-check-this-out"/>
        <id>https://davemabe.com/think-position-sizing-is-boring-check-this-out</id>
        <published>2024-04-18T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;&amp;quot;My strategy worked well for a while, but then one trade wiped out all my gains.&amp;quot;&lt;/p&gt;&lt;p&gt;Some form of the above statement is probably the most common frustration I see among traders who come to me for help.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re trading a strategy it is incredibly frustrating to have success for a while, but then have it all evaporate in just a day or two.&lt;/p&gt;&lt;p&gt;The most common reaction to this is to blame the strategy and move on to another idea and then the cycle continues.&lt;/p&gt;&lt;p&gt;But in most cases, the strategy &lt;strong&gt;is not the problem&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;The problem is &lt;strong&gt;inconsistent position sizing&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When you don&amp;#039;t have a solid method for deciding how many shares to use for a trade, you end up with a big problem.&lt;/p&gt;&lt;p&gt;You use a relatively small number of shares for the winning trades and a relatively large share size for the losing trades.&lt;/p&gt;&lt;p&gt;You&amp;#039;re almost mathematically guaranteed to end up in the &amp;quot;one trade eventually wiped out all my profits&amp;quot; situation.&lt;/p&gt;&lt;h2&gt;A Real Example&lt;/h2&gt;&lt;p&gt;I&amp;#039;m getting ready to go live with a new trading strategy and I&amp;#039;m finalizing the rule set using my standard process.&lt;/p&gt;&lt;p&gt;The first thing I do when going from an idea to an actual trading strategy is to determine the best position sizing approach.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the before and after equity curve for the same set of trades. (image below)&lt;/p&gt;&lt;p&gt;The blue line represents the strategy&amp;#039;s equity curve using a constant number of shares for each trade.&lt;/p&gt;&lt;p&gt;The red line is the same strategy with a thoughtful position sizing approach applied to it.&lt;/p&gt;&lt;p&gt;Same account size, same average money used per trade, you&amp;#039;re just applying a coherent position sizing approach.&lt;/p&gt;&lt;p&gt;You can see the difference!&lt;/p&gt;&lt;p&gt;Imagine trading the strategy using the naive approach of the blue line - you get long periods of frustrating drawdowns.&lt;/p&gt;&lt;p&gt;Yes, you end up with a profit but it&amp;#039;s a wild ride.&lt;/p&gt;&lt;p&gt;Compare that to the smoothness of the red line.&lt;/p&gt;&lt;p&gt;The drawdowns aren&amp;#039;t eliminated, but they&amp;#039;re shallower and shorter.&lt;/p&gt;&lt;p&gt;With this approach, the strategy will be far easier to trade and scale up over time.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not that the strategy is bad, it&amp;#039;s that a poor position-sizing approach turns a perfectly good trading strategy into a loser.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You're Closer to Profitability Than You Think</title>
        <link href="https://davemabe.com/youre-closer-to-profitability-than-you-think"/>
        <id>https://davemabe.com/youre-closer-to-profitability-than-you-think</id>
        <published>2024-04-11T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If there&amp;#039;s one thing in common with all the traders I&amp;#039;ve worked with, it&amp;#039;s this:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;They were closer to consistent profitability than they realized.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Sometimes they&amp;#039;ve had some success but then a single trade wipes out a month of profits.&lt;/p&gt;&lt;p&gt;Sometimes their trading strategy just seems to suddenly stop working.&lt;/p&gt;&lt;p&gt;Sometimes they&amp;#039;ve given up on a perfectly good strategy that has edge that they didn&amp;#039;t realize.&lt;/p&gt;&lt;p&gt;Sometimes they&amp;#039;re deviating from their strategy rules during the trading day.&lt;/p&gt;&lt;p&gt;Sometimes they&amp;#039;re not getting fills in what would be their strategy&amp;#039;s most profitable trades.&lt;/p&gt;&lt;p&gt;There are lots of different reasons traders underperform their true potential.&lt;/p&gt;&lt;p&gt;The answer is never a dramatic overhaul of what they&amp;#039;re doing.&lt;/p&gt;&lt;p&gt;Because that&amp;#039;s not what&amp;#039;s required.&lt;/p&gt;&lt;p&gt;Why?&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Because you&amp;#039;re closer than you think.&lt;/strong&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Two Identical Trades - Can You Tell Which One Is Better?</title>
        <link href="https://davemabe.com/two-identical-trades-can-you-tell-which-one-is-better"/>
        <id>https://davemabe.com/two-identical-trades-can-you-tell-which-one-is-better</id>
        <published>2024-04-04T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;(Note: this post is adapted from the Trading Success Roadmap product I&amp;#039;ll be officially offering soon.)&lt;/p&gt;&lt;p&gt;A common mistake I see even experienced traders make is poor position sizing.&lt;/p&gt;&lt;p&gt;Sizing your positions thoughtfully is fundamental to any trading strategy. A poor plan for position sizing can turn an otherwise profitable trading strategy into a loser.&lt;/p&gt;&lt;p&gt;Take the following two hypothetical trades:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;A) You go long 100 shares of AAPL at $186 with a stop price of $176. You exit with a profit at $190.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;B) You go long 100 shares of AAPL at $186 with a stop price of $185. You exit with a profit at $190.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Notice how in both scenarios the outcomes are identical:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The same entry price&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The same exit price&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The same number of shares&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The same profit of $400&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;But look closer and notice the important difference.&lt;/p&gt;&lt;p&gt;In A) your initial stop price was $10 away - if the stock went against you and hit the stop you would have lost $1000.&lt;/p&gt;&lt;p&gt;In B), however, your initial stop price was $1 away. In that scenario, if the stock went against you and hit the stop it would have been a $100 loss.&lt;/p&gt;&lt;p&gt;If you only evaluate the success of the trade based on profit, these trades look identical, but they are fundamentally different trades!&lt;/p&gt;&lt;p&gt;In A) you risked $1000 to make $400&lt;br&gt;In B) you risked $100 to make $400&lt;/p&gt;&lt;p&gt;B) was a far better trade even though the outcome was the same as A).&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve ever had a big losing trade that wipes out the profits of several winning trades, there&amp;#039;s a good chance you aren&amp;#039;t sizing your positions properly.&lt;/p&gt;&lt;p&gt;The Trading Success Roadmap gives you a detailed blueprint for sizing your positions based on your risk.&lt;/p&gt;&lt;p&gt;Before I start trading any strategy, I have a required checklist of things to do to give the strategy the best chance for long-term success.&lt;/p&gt;&lt;p&gt;Proper position sizing is at the top of that list.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">My Unique Backtesting Process</title>
        <link href="https://davemabe.com/my-unique-backtesting-process"/>
        <id>https://davemabe.com/my-unique-backtesting-process</id>
        <published>2024-03-28T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When I first started backtesting, I set out to improve upon a strategy I was already trading manually.&lt;/p&gt;&lt;p&gt;(Spoiler alert - I was able to &lt;a href=&quot;https://www.davemabe.com/the-exact-moment-i-became-a-quant-trader/&quot;&gt;improve it immediately&lt;/a&gt;.)&lt;/p&gt;&lt;p&gt;That worked well, but I quickly realized how inefficient that process was.&lt;/p&gt;&lt;p&gt;I was essentially backtesting trying to find a particular tree in a large forest.&lt;/p&gt;&lt;p&gt;I eventually found the tree I was looking for, but it dawned on me that I was spending a lot of effort ignoring equally good and even better trees throughout the forest.&lt;/p&gt;&lt;p&gt;I realized that I needed to change my process to create profitable strategies from a backtesting first approach.&lt;/p&gt;&lt;p&gt;After a lot of trial and error, I ended up with an efficient process I call: &lt;strong&gt;Backtest Wide but Trade Narrow&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;This is the opposite of what most traders do when they backtest.&lt;/p&gt;&lt;p&gt;When I have an idea for a strategy, I create a backtest that finds every instance of the signal with very little filtering.&lt;/p&gt;&lt;p&gt;I end up with a backtest with sometimes tens of thousands of trades in it.&lt;/p&gt;&lt;p&gt;When you try to apply rules to your strategy at this point in the backtest, it&amp;#039;s cumbersome. You make uneducated guesses. Stabs in the dark.&lt;/p&gt;&lt;p&gt;The smart way to apply rules is to take your trades list and use Excel or some statistical software to determine the rules.&lt;/p&gt;&lt;p&gt;So my backtest becomes very easy to generate.&lt;/p&gt;&lt;p&gt;The valuable part of my approach is determining what subset of the tens of thousands of trades I&amp;#039;ll end up trading.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re familiar with SQL, imagine querying a large database table &lt;strong&gt;without an index applied&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Your query will eventually return results, but it could take hours or even days to return. Heck if the table is large enough it might NEVER return - your query might be effectively impossible to run.&lt;/p&gt;&lt;p&gt;But, of course, if you apply the right index to the database table your query will run INSTANTLY.&lt;/p&gt;&lt;p&gt;It&amp;#039;s the same with my Backtest Wide but Trade Narrow approach to creating trading strategies.&lt;/p&gt;&lt;p&gt;To learn more, sign up for my newsletter below where I teach the process of creating your own profitable trading strategies. 👇&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Using Excel to Improve Your Trading Strategy</title>
        <link href="https://davemabe.com/using-excel-to-find-the-best-trades-in-a-backtest"/>
        <id>https://davemabe.com/using-excel-to-find-the-best-trades-in-a-backtest</id>
        <published>2024-03-21T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the most valuable things I do with traders I coach is give them simple rules to eliminate losing trades from their existing trading strategy.&lt;/p&gt;&lt;p&gt;This is typically the quickest and easiest way to improve a strategy without curve fitting.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example of a rule I gave to a trader I&amp;#039;ve been coaching for a few months. (The actual filter and value are anonymized, but the equity curves are real.)&lt;/p&gt;&lt;p&gt;The green line represents the equity curve of the trading system after the rule is applied.&lt;/p&gt;&lt;p&gt;The red line represents the equity curve of the trades that would be excluded.&lt;/p&gt;&lt;p&gt;This rule got rid of 30% of the trades in the strategy and increased the profit per trade in the system by 50% - a huge improvement.&lt;/p&gt;&lt;p&gt;When I deliver a rule like this, I always encourage the trader to independently verify it and not just blindly take my word for it.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a convenient way to verify it using Excel, so I thought I&amp;#039;d create a video showing the process.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re not aware of the auto-filter feature in Excel, it&amp;#039;s worth watching and working into your backtesting process - it&amp;#039;s a huge time saver.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Biggest Time Saver in Developing Trading Strategies</title>
        <link href="https://davemabe.com/the-biggest-time-saver-in-developing-trading-strategies"/>
        <id>https://davemabe.com/the-biggest-time-saver-in-developing-trading-strategies</id>
        <published>2024-03-14T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;First, a story about my history as a coder.&lt;/p&gt;&lt;p&gt;When I began writing code in the late 90s, I used the default text editor in Windows: Notepad.exe.&lt;/p&gt;&lt;p&gt;At some point, one of my managers at the time told me how powerful a different text editing software called Vi was.&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve ever used Vi (as I&amp;#039;m doing now to write this post) you immediately understand two things:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The learning curve is steep&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Once you learn it, Vi is an incredibly powerful and efficient text editor&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I took my manager&amp;#039;s advice, bought a book, and became obsessed with learning the Vi editor and incorporating it into my workflow.&lt;/p&gt;&lt;p&gt;I knew it would be hard to master it, but what happened almost immediately took me by surprise.&lt;/p&gt;&lt;p&gt;Even well before becoming even modestly proficient with Vi, instantly my productivity increased.&lt;/p&gt;&lt;p&gt;Just learning the very basics - maybe half of a percent of what Vi can do - made my process of writing code way faster.&lt;/p&gt;&lt;p&gt;I thought I was pretty fast before, but I had no idea how much faster I could go until I started.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve since mastered Vi (if you can ever REALLY master it). It&amp;#039;s the first piece of software I install on any new machine.&lt;/p&gt;&lt;p&gt;I often think about those early productivity gains and the compounding that&amp;#039;s happened since then.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not an exaggeration that my career went at least 33% faster as a result of that decision - maybe even more.&lt;/p&gt;&lt;p&gt;So what does this have to do with your trading strategy?&lt;/p&gt;&lt;p&gt;Backtesting is to your trading as Vi was to my coding productivity.&lt;/p&gt;&lt;p&gt;Backtesting has a steep learning curve, just like Vi.&lt;/p&gt;&lt;p&gt;Backtesting is incredibly powerful once you learn it, just like Vi.&lt;/p&gt;&lt;p&gt;But here&amp;#039;s the underappreciated fact about backtesting - just like Vi, you&amp;#039;ll immediately start realizing the benefits by just learning the basics.&lt;/p&gt;&lt;p&gt;I was reminded of this just a few days ago when a reader emailed me out of the blue saying he started backtesting after reading one of my articles.&lt;/p&gt;&lt;p&gt;In less than a week he gained an insight from it that took his trading in a completely different and more productive direction!&lt;/p&gt;&lt;p&gt;Imagine being able to make progress at a rate 50% faster than what you&amp;#039;re doing now.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no telling what type of trader you&amp;#039;ll be in just a few months. Now imagine compounding those gains over a few YEARS.&lt;/p&gt;&lt;p&gt;What&amp;#039;s stopping you?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">I Threw Away My First Profitable Strategy - Here's Why</title>
        <link href="https://davemabe.com/details-about-my-first-backtest"/>
        <id>https://davemabe.com/details-about-my-first-backtest</id>
        <published>2024-03-07T14:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The first strategy I traded was a gap strategy and a continuation play.&lt;/p&gt;&lt;p&gt;Gap up? Look to get long. Gap down? Look to get short.&lt;/p&gt;&lt;p&gt;It was straightforward: easy to follow and manually trade when I had limited time to dedicate to trading.&lt;/p&gt;&lt;p&gt;Luckily, it worked and I was well on my way.&lt;/p&gt;&lt;p&gt;So why did I want to change things? If it ain&amp;#039;t broke, don&amp;#039;t fix it, right?&lt;/p&gt;&lt;p&gt;As I mentioned last week, I had a strong sense that some of the rules were arbitrary.&lt;/p&gt;&lt;p&gt;I didn&amp;#039;t think they were &lt;em&gt;wrong&lt;/em&gt;, but I thought a data-driven approach would point me to better values.&lt;/p&gt;&lt;p&gt;To get started, I took one of my recent gap trades and wrote code to backtest the strategy for that single symbol.&lt;/p&gt;&lt;p&gt;This is a great way to start since backtesting the entire market from the beginning is more difficult and time-consuming.&lt;/p&gt;&lt;p&gt;That recent trade was fresh in my mind - it wasn&amp;#039;t theoretical since I had just traded it live.&lt;/p&gt;&lt;p&gt;Once I got the backtest working so it would match my single recent trade, then I ran it across the entire market.&lt;/p&gt;&lt;p&gt;I made some adjustments, but finally got it closely mimicking what I was doing with my manual strategy.&lt;/p&gt;&lt;p&gt;That was great but the next step was a game-changer.&lt;/p&gt;&lt;p&gt;As I traded my original strategy, I would often see gapping stocks that almost met my trading rules but didn&amp;#039;t.&lt;/p&gt;&lt;p&gt;I wouldn&amp;#039;t budge on my rules - so I would let these go without trading them.&lt;/p&gt;&lt;p&gt;But I noticed there were a lot of these that I was intentionally skipping.&lt;/p&gt;&lt;p&gt;Statistically, there had to be many of those that were worth trading.&lt;/p&gt;&lt;p&gt;I decided to place parameters in my backtest to loosen my tight rules - so much so that many more trades ended up in the backtest. Probably 3-4 times the original number of trades.&lt;/p&gt;&lt;p&gt;My plan wasn&amp;#039;t to trade all of them but to use the data set to find better rules to filter for the &lt;strong&gt;most profitable trades&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I didn&amp;#039;t realize it at the time, but this planted the seeds for my systematic process of finding and improving trading strategies.&lt;/p&gt;&lt;p&gt;What this allowed me to do was find a much larger subset of trades where the average profit per trade was HIGHER than my original manual system.&lt;/p&gt;&lt;p&gt;There was some overlap but not as much as I was expecting.&lt;/p&gt;&lt;p&gt;To visualize it, look at this Venn diagram.&lt;/p&gt;&lt;p&gt;More trades each day with a larger profit per trade on average.&lt;/p&gt;&lt;p&gt;That&amp;#039;s a huge improvement but the real breakthrough here was the beginning of my workflow for creating profitable trading strategies.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Started Backtesting</title>
        <link href="https://davemabe.com/why-i-started-backtesting"/>
        <id>https://davemabe.com/why-i-started-backtesting</id>
        <published>2024-02-14T11:18:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I began serious trading in 2005. My first strategy was purely manual and an imitation of what a well-known blogger at the time was doing.&lt;/p&gt;&lt;p&gt;He had more trading experience than I did and I learned a ton from him. (He&amp;#039;s no longer blogging these days.)&lt;/p&gt;&lt;p&gt;Luckily my imitation strategy worked pretty well - enough to keep my attention and make some money.&lt;/p&gt;&lt;p&gt;I was an automation nerd at the time (and still am!) so when I learned that you could create code to backtest a strategy, it appealed to me.&lt;/p&gt;&lt;p&gt;When I asked my trading mentor about backtesting, he pooh-poohed it.  &amp;quot;It&amp;#039;s not real trading - it&amp;#039;s all simulated. Take real trades and learn what works.&amp;quot;&lt;/p&gt;&lt;p&gt;So I put off creating a backtest - for a good while based on his advice.&lt;/p&gt;&lt;p&gt;Until I could no longer ignore the potential benefits.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I realized backtesting could do for me.&lt;/p&gt;&lt;p&gt;While my trading strategy was making money, several aspects of it were completely arbitrary.&lt;/p&gt;&lt;p&gt;For example, I used a minimum relative volume filter of 3 in my strategy.&lt;/p&gt;&lt;p&gt;Why 3? Because that&amp;#039;s what my mentor used and I was imitating him.&lt;/p&gt;&lt;p&gt;It dawned on me that imitating others is a great way to start, but I was never going to be truly successful by copying someone else.&lt;/p&gt;&lt;p&gt;I had to be able to make my own decisions and not rely on anyone else for my trading edge - not even a good friend.&lt;/p&gt;&lt;p&gt;So I created my first backtest.&lt;/p&gt;&lt;p&gt;And I quickly learned just how arbitrary some of my trading rules had been.&lt;/p&gt;&lt;p&gt;That minimum relative volume value of 3? It wasn&amp;#039;t terrible, but lowering that while adding another filter was way better.&lt;/p&gt;&lt;p&gt;How much better?&lt;/p&gt;&lt;p&gt;It allowed me to increase the number of trades in my trading system substantially AND increase the profit per trade.&lt;/p&gt;&lt;p&gt;An enormous improvement.&lt;/p&gt;&lt;p&gt;As valuable as that was, it wasn&amp;#039;t even close to the most important benefit of backtesting.&lt;/p&gt;&lt;p&gt;I now had a process for gaining confidence in my trading.&lt;/p&gt;&lt;p&gt;A path to increasing my position size to generate meaningful profits, knowing that I had an edge.&lt;/p&gt;&lt;p&gt;At that moment I was no longer an imitator but a &lt;strong&gt;real trader&lt;/strong&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Your Stop Loss Is Too Tight</title>
        <link href="https://davemabe.com/your-stop-loss-is-too-tight"/>
        <id>https://davemabe.com/your-stop-loss-is-too-tight</id>
        <published>2024-02-07T14:42:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here&amp;#039;s a note from a fellow reader replying to my post on &lt;a href=&quot;https://www.davemabe.com/why-i-backtest-without-stops/&quot; title=&quot;Why I Backtest Without Stops&quot;&gt;backtesting without stops&lt;/a&gt;. (I always get permission before posting.)&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&lt;em&gt;Dave - just to follow up on your backtest comment, I have done some tweaking of my crossing above resistance alert and generated the following results.&lt;br&gt;&lt;br&gt;Crossing Above Resistance Scan, 2 hour timed exit&lt;br&gt;&lt;br&gt;Stop Loss Percentage/ Return Percentage&lt;br&gt;--------------------------------------------------------------&lt;br&gt;None/ 9%&lt;br&gt;3% / -0.3%&lt;br&gt;5% / 3.5%&lt;br&gt;8% / 7%&lt;br&gt;&lt;br&gt;So this scan proves your point that the lower stop loss hurts the result.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;&lt;br&gt;Tim Welch&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Notice the returns for this strategy and how they vary with different stop levels. No stop loss at all had the highest return. The tighter the stop loss the worse the return was.&lt;/p&gt;&lt;p&gt;A well-designed trading strategy will typically exhibit this behavior.&lt;/p&gt;&lt;p&gt;Does this mean you should trade without a stop loss at all?&lt;/p&gt;&lt;p&gt;Wouldn&amp;#039;t that be optimal?&lt;/p&gt;&lt;p&gt;Technically yes that might be &lt;strong&gt;theoretically&lt;/strong&gt; optimal in this case but I never recommend trading a strategy that way.&lt;/p&gt;&lt;p&gt;Why? In systematic trading, you often come across theoretical numbers that suggest a mathematically perfect approach to trading a strategy.&lt;/p&gt;&lt;p&gt;But (and this is a big but), there&amp;#039;s a difference between theoretically optimal and what normal humans can &lt;strong&gt;realistically tolerate&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;A stop loss gives you an anchor upon which you determine your position size, so you can control your risk appropriately.&lt;/p&gt;&lt;p&gt;It&amp;#039;s also important to remember that a backtest is a simulation over a finite window of market behavior - not a complete picture of everything that can and will eventually occur in the market.&lt;/p&gt;&lt;p&gt;It turns out that predicting the future is hard. (Who knew?)&lt;/p&gt;&lt;p&gt;Using a stop loss is a safeguard against future market behavior that hasn&amp;#039;t been exhibited yet.&lt;/p&gt;&lt;p&gt;For a good example of a situation that would have been impossible to anticipate ahead of time, look at the market action of ZJYL on 12/18/2023.&lt;/p&gt;&lt;p&gt;So how do you choose what stop loss to use for a strategy knowing that whichever one you choose is going to make it worse?&lt;/p&gt;&lt;p&gt;Dealing with these tradeoffs is hard, but it&amp;#039;s a great exercise to examine the worse trades in your backtest and visualize what you would have experienced trading it with a certain size and stop loss.&lt;/p&gt;&lt;p&gt;Now imagine you have traded the strategy for a while, gained confidence in it, increased your position size significantly, and then you have a worst-case scenario.  Then imagine you have a few of those bad trades in a row.&lt;/p&gt;&lt;p&gt;It&amp;#039;s not fun to think about, but it&amp;#039;s important to anticipate how you&amp;#039;ll feel and react to this type of scenario.&lt;/p&gt;&lt;p&gt;This will help you visualize what stop loss will make sense to use given the imperfection and tradeoffs.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Want To Trade With Less Emotion? Here's How...</title>
        <link href="https://davemabe.com/want-to-trade-with-less-emotion-heres-how"/>
        <id>https://davemabe.com/want-to-trade-with-less-emotion-heres-how</id>
        <published>2024-01-31T10:12:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the common themes among traders who come to me for help is a desire to eliminate trading with emotion.&lt;/p&gt;&lt;p&gt;They often believe that their emotions are to blame for some big losing trades that have wiped out weeks or months of trading gains.&lt;/p&gt;&lt;p&gt;Once we dig into their trading process, I have good news and bad news for them.&lt;/p&gt;&lt;p&gt;The bad news is that they&amp;#039;re wrong about their emotions being the main issue.&lt;/p&gt;&lt;p&gt;The good news is the root cause is fixable, but takes some time.&lt;/p&gt;&lt;p&gt;Emotional trading is not the root cause, but a symptom of the underlying issue.&lt;/p&gt;&lt;p&gt;The real problem is the trader having to make decisions during the trading day that they&amp;#039;re not fully prepared for.&lt;/p&gt;&lt;p&gt;The trader is putting themself in a situation where they&amp;#039;re not confident they have an edge.&lt;/p&gt;&lt;p&gt;When there&amp;#039;s money on the line, that situation is very stressful.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re unsure what to do, you&amp;#039;re pretty much gambling and you have to resort to what your gut says or just guess what the most profitable thing to do is.&lt;/p&gt;&lt;p&gt;This usually doesn&amp;#039;t end well and in the rare cases you do get lucky and end up with a profit, it sets a bad precedent for the future.&lt;/p&gt;&lt;p&gt;How do you fix this? It&amp;#039;s pretty simple.&lt;/p&gt;&lt;p&gt;Any time you find yourself having to make ANY decision during the trading day, that should be a big red flag.  Take detailed notes about it.&lt;/p&gt;&lt;p&gt;Then, after the trading day when real money isn&amp;#039;t on the line, research all the historical instances of that situation using a backtest or a manual chart review.&lt;/p&gt;&lt;p&gt;The goal here is to do whatever research it takes to be confident that you know where your edge is when it happens again.&lt;/p&gt;&lt;p&gt;The next time it occurs, you&amp;#039;ll decisively follow the script you&amp;#039;ve created for yourself instead of making an uninformed guess.&lt;/p&gt;&lt;p&gt;Repeat this process for any moment of indecision, and you won&amp;#039;t have to worry about taming your untameable trading emotions.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Backtest Without Stops</title>
        <link href="https://davemabe.com/why-i-backtest-without-stops"/>
        <id>https://davemabe.com/why-i-backtest-without-stops</id>
        <published>2024-01-24T10:53:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;First, look at these two charts each with a trade plotted on each:&lt;/p&gt;&lt;p&gt;Both of these trades were long and came from a system designed to hold all day and exit before the close.&lt;/p&gt;&lt;p&gt;Both hit the stop and therefore exited with a loss.&lt;/p&gt;&lt;p&gt;But, study each chart closely and notice &lt;strong&gt;what happened after the stop&lt;/strong&gt; for the remainder of the day in each situation.&lt;/p&gt;&lt;p&gt;Now imagine you weren&amp;#039;t trading with a stop and you simply held each of these trades all day.&lt;/p&gt;&lt;p&gt;In the EDR trade, you&amp;#039;d end up with &lt;strong&gt;a strong profit&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;In the LAES trade, you&amp;#039;d end up with &lt;strong&gt;a large loss&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Very different outcomes. Polar opposites!&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the thing: when you backtest with a stop, you&amp;#039;re treating both of these situations as if they are equivalent.&lt;/p&gt;&lt;p&gt;But they&amp;#039;re not!  Far from it.&lt;/p&gt;&lt;p&gt;This is one of many reasons I backtest without using a stop loss as part of my routine.&lt;/p&gt;&lt;p&gt;I want to make sure the rules I apply to a trading system are highly predictive and NOT dependent on any particular stop level.&lt;/p&gt;&lt;p&gt;Solely using a stop in your backtest hides these important details.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an exercise to try with your own backtest.&lt;/p&gt;&lt;p&gt;Run it with a stop as you normally have done.&lt;/p&gt;&lt;p&gt;But then run it once more &lt;strong&gt;without a stop&lt;/strong&gt;, that is, with just a timed exit (e.g. exit at the end of the day, exit after X minutes, exit after X days, etc).&lt;/p&gt;&lt;p&gt;Save a list of trades from each backtest.&lt;/p&gt;&lt;p&gt;You should have the same number of trades in each file.&lt;/p&gt;&lt;p&gt;Now examine the trades that had the largest profit difference (either positive or negative) when &lt;strong&gt;using a stop&lt;/strong&gt; versus &lt;strong&gt;not using a stop&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;This will show you trades like the two examples shown earlier. (EDR would show a large positive difference while LAES would show a large negative difference)&lt;/p&gt;&lt;p&gt;If you&amp;#039;ve never tried this before, I almost guarantee you&amp;#039;ll learn something about your system that you can directly apply that will make it more profitable.&lt;/p&gt;&lt;p&gt;Give it a try and let me know what you uncover.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Important Step Most Traders Are Missing</title>
        <link href="https://davemabe.com/the-important-step-most-traders-are-missing"/>
        <id>https://davemabe.com/the-important-step-most-traders-are-missing</id>
        <published>2024-01-17T12:08:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I work with more and more traders on creating their own &amp;quot;upward spiral&amp;quot; - a process unique to the trader they can use to continuously improve.&lt;/p&gt;&lt;p&gt;It&amp;#039;s modeled after &lt;a href=&quot;https://www.davemabe.com/the-day-i-almost-quit-trading/&quot;&gt;the system I created for myself years ago&lt;/a&gt; at a low point in my trading career.&lt;/p&gt;&lt;p&gt;I realized I didn&amp;#039;t need another idea for a strategy, I needed a process that, if I followed it, would make trading profits inevitable.&lt;/p&gt;&lt;p&gt;As I spoke to a trader recently about his process, it dawned on me that there was a critical piece of the puzzle that he was missing.&lt;/p&gt;&lt;p&gt;He had traded with a lot of emotions and wanted to get more systematic in his trading.&lt;/p&gt;&lt;p&gt;He started keeping a journal which is the foundation of any successful trader.&lt;/p&gt;&lt;p&gt;He had a coherent strategy and was executing it.&lt;/p&gt;&lt;p&gt;He started seeing definite improvement.&lt;/p&gt;&lt;p&gt;So far so good.&lt;/p&gt;&lt;p&gt;But I realized though that he could be so much better if he added just one important step to his process.&lt;/p&gt;&lt;p&gt;It&amp;#039;s something that has been second nature for me - something that I internalized so long ago that it seems obvious to me.&lt;/p&gt;&lt;p&gt;But he was completely missing it.&lt;/p&gt;&lt;p&gt;What is it?&lt;/p&gt;&lt;p&gt;A feedback loop for finding trades that you didn&amp;#039;t take, but you should have.&lt;/p&gt;&lt;p&gt;Simply journaling all the trades you DO take won&amp;#039;t give you any information on the trades you DON&amp;#039;T take.&lt;/p&gt;&lt;p&gt;Without a process for identifying the trades you didn&amp;#039;t take, you&amp;#039;re only seeing a small part of what you have to see to get better.&lt;/p&gt;&lt;p&gt;Once you work this step into your routine, light bulbs will start going off in your head.&lt;/p&gt;&lt;p&gt;&amp;quot;Wait - how did I miss THAT profitable trade?&amp;quot;&lt;/p&gt;&lt;p&gt;That feeling can be frustrating at first, but when you start doing this regularly it becomes motivating.&lt;/p&gt;&lt;p&gt;It&amp;#039;s exactly the kind of motivation that will eventually yield profitable trades.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You Don't Need a Perfect Idea - You Need a Process</title>
        <link href="https://davemabe.com/you-dont-need-a-perfect-idea-you-need-a-process"/>
        <id>https://davemabe.com/you-dont-need-a-perfect-idea-you-need-a-process</id>
        <published>2024-01-10T11:55:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;First, a quote:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&amp;quot;It is amateurs who have one big bright beautiful idea that they can never abandon. Professionals know that they have to produce theory after theory before they are likely to hit the jackpot.&amp;quot;&lt;/p&gt;&lt;p&gt;&lt;br&gt;Francis Crick - the molecular biologist that helped discover the structure of DNA&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;When I first started trading, I thought great traders were just born with a magical innate ability to come up with profitable trading ideas.&lt;/p&gt;&lt;p&gt;You can&amp;#039;t learn it - you&amp;#039;re just born with it.  I thought.&lt;/p&gt;&lt;p&gt;I realize now that the entire industry is set up to take advantage of people who believe that.&lt;/p&gt;&lt;p&gt;If you just learn to trade the strategy that &amp;quot;trading guru X&amp;quot; trades - by joining their trading room and relying on them forever - then one day YOU might be able to drive a Ferrari just like they do.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re reading this, you should already know how this is such BS.&lt;/p&gt;&lt;p&gt;I love it when I see people come to this realization because this is the point where they can finally carve out their own path to trading success.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t come from asking for stock tips at your neighborhood barbecue.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t come from blindly following what some guru is trading.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t come from someone giving you a trading strategy.&lt;/p&gt;&lt;p&gt;It comes from taking full responsibility for your trading.&lt;/p&gt;&lt;p&gt;To do that you don&amp;#039;t need the perfect trading idea.&lt;/p&gt;&lt;p&gt;You just need a decent idea and a process to improve it.&lt;/p&gt;&lt;p&gt;Trading strategies come and go, but your &lt;strong&gt;trading process&lt;/strong&gt; will pay off forever.&lt;/p&gt;&lt;p&gt;Work on perfecting your process.&lt;/p&gt;&lt;p&gt;That&amp;#039;s how you screw the Ferrari-driving trading gurus.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Case Study: Helping a Trader Improve Their Strategy</title>
        <link href="https://davemabe.com/case-study-helping-a-client-improve-their-strategy"/>
        <id>https://davemabe.com/case-study-helping-a-client-improve-their-strategy</id>
        <published>2024-01-03T13:21:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the most common questions I get from traders is something along the lines of:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;&amp;quot;Can you share one of your trading strategies with me?&amp;quot;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It&amp;#039;s so common that it&amp;#039;s easy to see why the trading industry is full of gurus who sell access to their specific trading strategy.&lt;/p&gt;&lt;p&gt;Buy here, sell here.&lt;/p&gt;&lt;p&gt;This model has never resonated with me.&lt;/p&gt;&lt;p&gt;Not because I&amp;#039;m &amp;quot;selfish&amp;quot; and want to hoard the strategies that I&amp;#039;ve created for myself.&lt;/p&gt;&lt;p&gt;It&amp;#039;s because to have any chance of success in trading for the long term you have to rely on your own intuition - not someone else&amp;#039;s.&lt;/p&gt;&lt;p&gt;You might have some success trading someone else&amp;#039;s stock picks, but I can assure you the quicker you are able to generate your own strategies from your own observations, the more long term success you&amp;#039;ll have.&lt;/p&gt;&lt;p&gt;And it will be way more fun and fulfilling for you than taking trades based on tips from some trading guru.&lt;/p&gt;&lt;p&gt;It&amp;#039;s my mission to have as many traders as possible create and improve their &lt;strong&gt;own strategies from their own ideas&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;How do I do that?&lt;/p&gt;&lt;p&gt;One way is through a Trading Strategy Assessment, a service I&amp;#039;ll be publicly launching soon.&lt;/p&gt;&lt;p&gt;This is the exact same process I&amp;#039;ve used for over a decade to create and improve my own trading strategies.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a case study showing how it worked for one trader recently.  Let&amp;#039;s call him Ted (not his real name).&lt;/p&gt;&lt;p&gt;Ted approached me with a problem.  His strategy had worked well for a long time but had started tailing off recently.  See this chart of the equity curve and notice how the strategy was strongly profitable but recently the profits had dropped off:&lt;/p&gt;&lt;p&gt;This is a common situation if you&amp;#039;ve traded for any length of time. It&amp;#039;s frustrating!&lt;/p&gt;&lt;p&gt;I described how the Trading Strategy Assessment would work and Ted was on board.&lt;/p&gt;&lt;p&gt;At the end of the process, Ted gets a custom, 20-page PDF with full details about various ways to improve his strategy.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example.  We found that he was trading quite a few losing trades that could be avoided by adding a simple rule to his strategy.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a chart of what it looks like in the assessment:&lt;/p&gt;&lt;p&gt;The red line represents the trades that would be filtered out with the rule.  The green line is what the remaining trades in the strategy look like.&lt;/p&gt;&lt;p&gt;This represented a 52% increase in profit per trade for the overall system.&lt;/p&gt;&lt;p&gt;The assessment includes a variety of different rules to apply that Ted can pick and choose from, all without curve-fitting or over-optimization.&lt;/p&gt;&lt;p&gt;So instead of frustration, Ted now has a roadmap for several ways to improve his strategy, all of which are simple, quick changes to his strategy, not a huge overhaul to the way he&amp;#039;s trading.&lt;/p&gt;&lt;p&gt;The PDF also includes a long-term roadmap section.  This outlines several ideas for tweaks that could improve his strategy significantly over time.&lt;/p&gt;&lt;p&gt;For example, areas of research for adding more profitable trades to the strategy or a change to the position sizing logic to generate more profits.&lt;/p&gt;&lt;p&gt;What I love about doing these assessments is that not only did Ted walk away with an immediately improved strategy (52% better profit/trade), but a roadmap for continuous improvement so Ted never has to rely on some Ferarri-driving trading guru again.&lt;/p&gt;&lt;p&gt;If you like trading rooms and following the crowd, that&amp;#039;s fine.&lt;/p&gt;&lt;p&gt;But if the idea of &lt;strong&gt;relying 100% on yourself&lt;/strong&gt; for your trading success appeals to you, let&amp;#039;s talk.&lt;/p&gt;&lt;p&gt;I&amp;#039;m looking for a couple of people to help with the final beta testing of this assessment process.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re interested, reply and let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Smart &quot;Time to Trade&quot; Phone Notification</title>
        <link href="https://davemabe.com/a-smart-time-to-trade-phone-notification"/>
        <id>https://davemabe.com/a-smart-time-to-trade-phone-notification</id>
        <published>2023-12-20T11:40:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As I mentioned last week, I have been waging war on my trading workflow after I completely missed the market open one day because I was distracted and deeply engrossed in a CTO task.&lt;/p&gt;&lt;p&gt;I get pissed when I miss profitable trades that I know I should have and &lt;em&gt;could have&lt;/em&gt; been in.&lt;/p&gt;&lt;p&gt;In fact, nothing in the world may be more motivating to me than when I miss a trade in a way that could be easily prevented.&lt;/p&gt;&lt;p&gt;Around the same time that I missed this trade, a friend of mine sent me a text in the middle of the night.  No biggie - my notifications are turned off.&lt;/p&gt;&lt;p&gt;But he apologized, saying that he meant to &lt;em&gt;schedule&lt;/em&gt; the text to be sent later.&lt;/p&gt;&lt;p&gt;Interesting - schedule a text?  I asked him what exactly he was doing and he sent me a link to the iPhone&amp;#039;s now built-in Shortcuts app and the Automations section.&lt;/p&gt;&lt;p&gt;Holy crap.  How did I not know about this feature?&lt;/p&gt;&lt;p&gt;I immediately thought of 3-4 things I could do with this nerdy feature.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the smart notification I came up with that works great.&lt;/p&gt;&lt;p&gt;For one of my trading strategies, I need to enter orders before the market open. This strategy is quite profitable, so it&amp;#039;s really important that these orders go in and the right time.&lt;/p&gt;&lt;p&gt;If I&amp;#039;m distracted and forget to enter them, that costs me money.&lt;/p&gt;&lt;p&gt;So I created an Automation on my iPhone that does the following:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;If I&amp;#039;m at home&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;and it&amp;#039;s a weekday&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;and the time is 9:20am ET&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;use the Speak Text function to say &amp;quot;Time to Trade the Open&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;If I&amp;#039;m not at home, I&amp;#039;m not trading that day, so no need to interrupt me with a useless notification.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what the notification looks like in the Shortcuts app:&lt;/p&gt;&lt;p&gt;And here&amp;#039;s what it looks like when you tap the Do item:&lt;/p&gt;&lt;p&gt;Stable is the name of the street where my house is.&lt;/p&gt;&lt;p&gt;This works great for me.&lt;/p&gt;&lt;p&gt;But I want to take this one step further.&lt;/p&gt;&lt;p&gt;On Christmas morning (a Monday this year), this notification will tell me it&amp;#039;s time to trade the open - even though it&amp;#039;s a market holiday. Not ideal.&lt;/p&gt;&lt;p&gt;The next step will be to create a simple API for market holidays that the notification can call. If it&amp;#039;s a market holiday, skip the notification.&lt;/p&gt;&lt;p&gt;Super geeky and super cool.&lt;/p&gt;&lt;p&gt;Do you use the iPhone automations to do cool trading stuff? Let me know - I&amp;#039;d love to hear about it.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The #1 Technique for Systematizing Your Trading</title>
        <link href="https://davemabe.com/the-1-technique-for-systematizing-your-trading"/>
        <id>https://davemabe.com/the-1-technique-for-systematizing-your-trading</id>
        <published>2023-11-29T12:04:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several readers had the same question after &lt;a href=&quot;https://www.davemabe.com/the-big-payoff-of-systematizing-your-trading/&quot;&gt;my email on systematizing your trading&lt;/a&gt;: where is the best place to start?&lt;/p&gt;&lt;p&gt;Everyone agrees that systematizing your trading is a great idea but it&amp;#039;s hard to know what things are worth streamlining.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re still pointing and clicking to enter your trades, there are a slew of things you can do right away.&lt;/p&gt;&lt;p&gt;The easiest and most common things traders can do to start systematizing are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Automatically calculating your position size (use a formula in Excel or Google Sheets)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Set up and start using hotkeys in your platform to enter orders (here is &lt;a href=&quot;https://ibkrguides.com/tws/usersguidebook/configuretws/hotkeys.htm&quot;&gt;the documentation for TWS&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Configure strategies in Brokerage+ in Trade-Ideas (&lt;a href=&quot;https://www.trade-ideas.com/guide/chapter/21_4_2_1/21.4.2.1Create_a_OneClick_Order_Entry_Template_.html&quot;&gt;more here&lt;/a&gt;)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Use &lt;a href=&quot;https://www.autohotkey.com/&quot;&gt;AutoHotKey&lt;/a&gt; to create keyboard shortcuts for common tasks (my personal favorite!)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Every trader&amp;#039;s routine is a little different, so the highest priority thing for you to systematize is going to vary widely.&lt;/p&gt;&lt;p&gt;So what&amp;#039;s the #1 way to determine what to start with?&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an exercise I did for many weeks that opened my eyes to just how much more money I could make in my trades by systematizing.&lt;/p&gt;&lt;p&gt;Every day I would record my screen as I traded. After my trading day was complete, I&amp;#039;d save the file and then review it as par of &lt;a href=&quot;https://www.davemabe.com/5-questions-i-ask-myself-after-the-market-close/&quot;&gt;my end of day review&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;This was incredibly revealing.&lt;/p&gt;&lt;p&gt;Watching these videos was a window into everything I was doing wrong that I had no way of realizing during the trading day in real time.&lt;/p&gt;&lt;p&gt;All of a sudden every day I had multiple insights into very tangible things I could do to get better.&lt;/p&gt;&lt;p&gt;Ways to tweak my layout.&lt;/p&gt;&lt;p&gt;Tasks that took longer than I realized.&lt;/p&gt;&lt;p&gt;Inefficiencies that added up to just barely missing profitable trades.&lt;/p&gt;&lt;p&gt;Looking over your own shoulder as a neutral observer allows you to see and understand things that you don&amp;#039;t even realize as you trade - things that translate into real profits that you&amp;#039;re leaving on the table.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Here&amp;#039;s a challenge for you.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Do this for a month.&lt;/p&gt;&lt;p&gt;Pick just one thing a day to streamline.&lt;/p&gt;&lt;p&gt;Systematize it.&lt;/p&gt;&lt;p&gt;Repeat each day.&lt;/p&gt;&lt;p&gt;After a month I guarantee that you&amp;#039;ll be a &lt;strong&gt;completely different trader&lt;/strong&gt; than you are today.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Focus on Trading Work with a Big Payoff</title>
        <link href="https://davemabe.com/focus-on-trading-work-with-a-big-payoff"/>
        <id>https://davemabe.com/focus-on-trading-work-with-a-big-payoff</id>
        <published>2023-11-22T12:50:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I recently worked with a systems trader who was completely obsessed with the fact that his backtesting software did not perfectly reflect the reality of his actual trades.&lt;/p&gt;&lt;p&gt;He was so fixated on this difference that he was planning a total rewrite of his backtesting software to use an algorithm he believed would be closer to reality. (A combination of bid/ask, depth of the order book, and other fancy logic.)&lt;/p&gt;&lt;p&gt;What this trader was missing was that no matter how good your backtesting software is, there will still be significant differences between your simulated results and your live trades. No amount of software engineering can overcome this fact of life.&lt;/p&gt;&lt;p&gt;Just because it&amp;#039;s technically true you could eke out some improvements by jumping through a lot of hoops doesn&amp;#039;t mean you should go through the effort.&lt;/p&gt;&lt;p&gt;This is a common pattern in people who come to trading from a technical field like software development.&lt;/p&gt;&lt;p&gt;They often focus on work that is technically possible but has a tiny payoff.&lt;/p&gt;&lt;p&gt;Lord knows I&amp;#039;ve gone through a lot of these wild goose chases myself in my trading over the years. Having developed many strategies I know what things will pay off and what will be a waste of time.&lt;/p&gt;&lt;p&gt;One of the most fulfilling things for me as a trading coach is helping traders focus on the things that will have a big payoff and avoiding the things that sound appealing but will ultimately be a waste of time.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How I Choose Stops</title>
        <link href="https://davemabe.com/how-i-choose-stops"/>
        <id>https://davemabe.com/how-i-choose-stops</id>
        <published>2023-11-15T12:12:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;m in the process of refreshing one of my trading strategies.  It&amp;#039;s one that I&amp;#039;ve traded without making a single adjustment (aside from using a larger position size) for 8 years.&lt;/p&gt;&lt;p&gt;This is always my goal in designing strategies: optimize for longevity and staying power. If you have to re-optimize a strategy every few months, it&amp;#039;s really difficult to scale it because you can never achieve the level of confidence required to trade the strategy with a substantial position size.&lt;/p&gt;&lt;p&gt;This is my primary focus as make decisions when building a strategy.  I don&amp;#039;t just want something that works, it needs to make money for a substantial length of time.&lt;/p&gt;&lt;p&gt;One of the ways I design for longevity is by analyzing stop levels for what works across a large number of trades.&lt;/p&gt;&lt;p&gt;Stops are really important in your trading strategy and most traders end up choosing them arbitrarily.&lt;/p&gt;&lt;p&gt;The distance to the stop determines the position size I use - that is, the farther away the stop is, the smaller the number of shares I use. This lets me risk a certain amount of money per trade.&lt;/p&gt;&lt;p&gt;This means, though, that the stop distance matters a lot! It has an enormous impact on how it feels to trade a strategy day to day.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve created a great tool for myself to analyze stops. It&amp;#039;s very flexible and I can analyze stop distances in lots of different ways.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the output from the tool. I ran it in percent mode, and had it start at 2% and go through 12% (see the X-axis on each chart).&lt;/p&gt;&lt;p&gt;The three charts are lined up horizontally, so I can easily see how a certain stop level performs across these three dimensions: stop hit %, win rate, and total profit.&lt;/p&gt;&lt;p&gt;So why wouldn&amp;#039;t you just choose the level with the highest total profit?&lt;/p&gt;&lt;p&gt;Notice the huge variation in how often the stop is hit as the stop percentage increases. A strategy where the stop is hit almost 60% (with a tight 2% stop in the graph) of the time is going to be very difficult to trade psychologically.&lt;/p&gt;&lt;p&gt;Total profit is important, of course, but you need to look at the entire picture to create a strategy that you can actually trade.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Big Payoff of Systematizing Your Trading</title>
        <link href="https://davemabe.com/the-big-payoff-of-systematizing-your-trading"/>
        <id>https://davemabe.com/the-big-payoff-of-systematizing-your-trading</id>
        <published>2023-11-08T12:21:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When in doubt, automate it.&lt;/p&gt;&lt;p&gt;I think of that as my personal slogan that has served me well over my career.&lt;/p&gt;&lt;p&gt;Nowhere is this more true than in trading.&lt;/p&gt;&lt;p&gt;Over the last week or two, I&amp;#039;ve been extremely busy with non-trading stuff.  I&amp;#039;m temporarily in a situation that requires my total focus and 100% of my time.  I haven&amp;#039;t been able to think about my trading at all.&lt;/p&gt;&lt;p&gt;And yet I was able to take 11 round trip trades yesterday and make a profit.&lt;/p&gt;&lt;p&gt;I was only able to do that by spending countless hours ahead of time systematizing my trading.&lt;/p&gt;&lt;p&gt;Sure it was a lot of work to get to that point - there were dozens of decisions I had to make to automate aspects of my trading and research routines.  Many of these decisions would from the outside seem like a waste of time.&lt;/p&gt;&lt;p&gt;That simple calculation you do to compute your position size - it&amp;#039;s not hard - in fact, it&amp;#039;s trivial.  So why go through the effort to automate that?  Why not just do it in your head?&lt;/p&gt;&lt;p&gt;In the short term, all of these decisions seem like a lot of work compared to the benefits you&amp;#039;ll receive.&lt;/p&gt;&lt;p&gt;But every aspect of your trading that you are able to systematize will start to pay off immediately and then continue to compound over time.&lt;/p&gt;&lt;p&gt;And the payoff will be in ways that you can&amp;#039;t imagine as you&amp;#039;re doing the grunt work.&lt;/p&gt;&lt;p&gt;When in doubt, automate it.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Handling a Large Loss</title>
        <link href="https://davemabe.com/handling-a-large-loss"/>
        <id>https://davemabe.com/handling-a-large-loss</id>
        <published>2023-11-01T15:31:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I had a large losing trade last week that wiped out my profit for the month.&lt;/p&gt;&lt;p&gt;Of course, big losses suck but depending on how you respond to them they can be significant turning points that can lead to positive progress.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s my routine for handling them.&lt;/p&gt;&lt;p&gt;On normal trading days, I never display my current P&amp;amp;L for the day (looking at your own or anyone else&amp;#039;s P&amp;amp;L is toxic).&lt;/p&gt;&lt;p&gt;But when I have a large trading loss, I make an exception to this rule.&lt;/p&gt;&lt;p&gt;In fact, I do exactly the opposite of my standard routine:  I display the loss so prominently on my screen that it&amp;#039;s front and center all day long.&lt;/p&gt;&lt;p&gt;I do NOT want to take losses in stride.&lt;/p&gt;&lt;p&gt;I want the large, red, negative numbers staring at me for the rest of the day.&lt;/p&gt;&lt;p&gt;I want to fully internalize the pain that comes with the loss.&lt;/p&gt;&lt;p&gt;I want it to be unavoidably uncomfortable for the remainder of the day.&lt;/p&gt;&lt;p&gt;I want to create a situation where I CANNOT avoid thinking about it.&lt;/p&gt;&lt;p&gt;I do this not because I&amp;#039;m a glutton for punishment, but because I know this sense of pain and frustration plants the seeds for future trading success.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Never Move My Stop to Breakeven</title>
        <link href="https://davemabe.com/why-i-never-move-my-stop-to-breakeven"/>
        <id>https://davemabe.com/why-i-never-move-my-stop-to-breakeven</id>
        <published>2023-10-18T10:24:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As I briefly alluded to in &lt;a href=&quot;https://www.davemabe.com/exiting-your-trades-what-works-best/&quot; title=&quot;Exiting Your Trades &amp;ndash; What Works Best?&quot;&gt;my article on exits&lt;/a&gt;, I never move my stop to breakeven.&lt;/p&gt;&lt;p&gt;But this wasn&amp;#039;t always the case.  When I started trading, I would move my stop to breakeven if my trade reached a certain level of profitability.&lt;/p&gt;&lt;p&gt;When you move your stop to breakeven, you change the potential outcomes of your trades.  Here are the three scenarios that might occur:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;Nothing - the price never returns to your breakeven stop so there&amp;#039;s no effective change in your trade.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You get stopped out at breakeven and the price continues to go against you so your original stop would have been hit too.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You get stopped out at breakeven but the original stop wouldn&amp;#039;t have been hit and sometimes the price reverses back to profitability without you.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Scenarios 1 and 2 are good - you directly save a little money in 2 and in 1 you create some psychological comfort for yourself.&lt;/p&gt;&lt;p&gt;This is all well and good except when you consider scenario 3.  Which is terrible.&lt;/p&gt;&lt;p&gt;Nothing is more frustrating than missing profitable trades.&lt;/p&gt;&lt;p&gt;You&amp;#039;ve done all the work: you&amp;#039;ve researched and meticulously tested a strategy, and now you&amp;#039;re trading it, and you&amp;#039;re missing some of the most profitable trades in the system.&lt;/p&gt;&lt;p&gt;Not only are you missing them, but in this scenario, you&amp;#039;ve guaranteed that you&amp;#039;ll miss more profitable trades than you otherwise would by moving your stop.&lt;/p&gt;&lt;p&gt;It doesn&amp;#039;t take too many trades in scenario 3 to completely overwhelm any benefit you might get from scenarios 1 and 2.&lt;/p&gt;&lt;p&gt;I got stopped out of enough trades that would have been profitable that I had to backtest it.&lt;/p&gt;&lt;p&gt;I tried waiting for X minutes before moving my stop to breakeven.&lt;/p&gt;&lt;p&gt;I tried waiting until the price reached a certain level of profit before moving it.&lt;/p&gt;&lt;p&gt;And what did I find?  No combination improved the overall profitability of the system.  They all made the system perform worse.&lt;/p&gt;&lt;p&gt;You can, however, improve your win rate a bit by moving your stop a little beyond breakeven.&lt;/p&gt;&lt;p&gt;Remember - a good win rate might make you feel good, but you shouldn&amp;#039;t be optimizing on that.  You get paid by optimizing the total profit of your trading system, not the win rate.&lt;/p&gt;&lt;p&gt;If you want mediocre trading results by taking orders from some Ferarri-driving trading guru, &lt;strong&gt;stop reading&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you’re ready to say “screw the gurus” and &lt;strong&gt;rely solely on yourself for your trading success&lt;/strong&gt;, then look no further than my free weekly email newsletter.&lt;/p&gt;&lt;p&gt;Every week I send one actionable tip that you can apply to your trading to create a process for continuous improvement.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Screw the Ferarri-driving trading gurus&lt;/strong&gt; by signing up below.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Ever-Increasing Returns of a Trade Journal</title>
        <link href="https://davemabe.com/the-ever-increasing-returns-of-a-trade-journal"/>
        <id>https://davemabe.com/the-ever-increasing-returns-of-a-trade-journal</id>
        <published>2023-10-11T12:16:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I hear from a lot of traders asking various questions about how they can improve. Very often my first question in response is &amp;quot;Do you keep a trade journal?&amp;quot;&lt;/p&gt;&lt;p&gt;It&amp;#039;s always surprising to me that so many people who claim to be motivated and ready to do the work to rely on themselves for their trading aren&amp;#039;t able to take even the first step towards it.&lt;/p&gt;&lt;p&gt;When I first started keeping a trade journal I used Excel.&lt;/p&gt;&lt;p&gt;There weren&amp;#039;t any online trading journals at the time, so I created the first called StockTickr, and eventually sold it to Trade-Ideas.&lt;/p&gt;&lt;p&gt;My trading journal was critical to my early trading success, but it wasn&amp;#039;t until years later that I realized the cumulative returns that a journal provides.&lt;/p&gt;&lt;p&gt;As my trading continued to improve, eventually I created my own strategies and the dutiful maintenance of keeping a journal really began paying off.&lt;/p&gt;&lt;p&gt;The value of a journal escalates as you transition from a newbie trader following others to a self-reliant DIY trader.&lt;/p&gt;&lt;p&gt;Beginning traders benefit from a journal because it forces you to make the transition from trading aimlessly with no real plan to trading a system.&lt;/p&gt;&lt;p&gt;The daily ritual of recording your trades makes you confront your tendency to trade out of boredom rather than trading with intention.&lt;/p&gt;&lt;p&gt;A journal doesn&amp;#039;t lie - its brutal honesty allows you to honestly assess your trading performance.&lt;/p&gt;&lt;p&gt;As your trading improves and you transition to relying solely on yourself to trade, a journal becomes even more valuable.&lt;/p&gt;&lt;p&gt;Your backtest is theoretical, but your journal reflects reality. This is immensely valuable!&lt;/p&gt;&lt;p&gt;Your journaled trades contain all the messiness that comes with live trading that can&amp;#039;t be captured in a backtest:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Partial fills&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Missed trades&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trading mistakes&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Slippage (entry and exit)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Locate costs&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;When you&amp;#039;re backtesting, these trading realities can&amp;#039;t be accurately accounted for and are therefore big unknowns.&lt;/p&gt;&lt;p&gt;That&amp;#039;s exactly the opposite of a trade journal which reflects your ACTUAL performance, warts and all.&lt;/p&gt;&lt;p&gt;This makes your entire trading process better, from idea generation to backtesting to live trading.&lt;/p&gt;&lt;p&gt;Over time your journal becomes a bigger and bigger database of your actual trading experience.&lt;/p&gt;&lt;p&gt;Are you ready to &lt;strong&gt;ditch the sleazy trading gurus&lt;/strong&gt; and &lt;strong&gt;rely solely on yourself&lt;/strong&gt; for your trading success?&lt;/p&gt;&lt;p&gt;My free email newsletter will show you how so you never have to line the pockets of some Ferarri-driving trading guru again.&lt;/p&gt;&lt;p&gt;Sign up below to get started with the first lessons:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What Do Traders That Are Successful for a Long Time Have In Common?</title>
        <link href="https://davemabe.com/what-do-traders-that-are-successful-for-a-long-time-have-in-common"/>
        <id>https://davemabe.com/what-do-traders-that-are-successful-for-a-long-time-have-in-common</id>
        <published>2023-10-04T12:27:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;List member Don Brady asked me to give a presentation to the local traders&amp;#039; meetup group in the Raleigh/Durham area and I jumped at the chance.&lt;/p&gt;&lt;p&gt;We all know that most traders fail, but there are a few who make it for a short run and even fewer who make it over a long period of time. I was excited to share a window into my trading and present what it takes to be successful in the long term.&lt;/p&gt;&lt;p&gt;Here is an overview of what I presented to the group:&lt;/p&gt;&lt;h2&gt;Common Traits of Successful Traders&lt;/h2&gt;&lt;h3&gt;They Keep Score&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;They keep track of their performance &lt;strong&gt;by trading strategy&lt;/strong&gt; in a trading journal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;I can easily identify a losing trader: they don&amp;#039;t keep a journal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;This habit encourages you to define &lt;strong&gt;the reason&lt;/strong&gt; you take a trade&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;A Process to Test Strategy Ideas&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Successful traders aren&amp;#039;t &amp;quot;born that way&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;They develop a constantly improving process to backtest ideas&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Functions as a BS detector&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The foundation for all of their trading&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Not Primarily Motivated by Money&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Important word &amp;quot;primarily&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;They like money of course but they also love the process of trading&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Driven to Constantly Improve&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;After successful trades, others celebrate, but they ask &amp;quot;How could I have made more?&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&amp;quot;Are there more trades like this I can find and incorporate into my routine?&amp;quot;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Systematize Everything They Do&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;From simple systems for entering trades faster all the way to full automation&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Systematizing what you do improves accuracy and increases capacity&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Share Ideas with Other Trusted Traders&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&amp;quot;Networking is a trading skill.&amp;quot; -- Mike Bellafiore&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Develop relationships and trust over time with other motivated traders&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Ability to Adapt Over Time&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Change is a constant that successful traders acknowledge and embrace&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;When you&amp;#039;re ready to be a successful trader, &lt;a href=&quot;https://davemabe.com/about/&quot;&gt;I can help&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What A World-Class High Jumper Can Teach You About Trading</title>
        <link href="https://davemabe.com/what-a-world-class-high-jumper-can-teach-you-about-trading"/>
        <id>https://davemabe.com/what-a-world-class-high-jumper-can-teach-you-about-trading</id>
        <published>2023-09-13T17:50:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Nicola Olyslagers is an Australian high jumper who won a silver medal in the Tokyo Olympic Games in 2021.&lt;/p&gt;&lt;p&gt;But unlike every high jumper or even any world-class athlete I know of, she has a very peculiar habit.&lt;/p&gt;&lt;p&gt;It&amp;#039;s a habit that&amp;#039;s extremely visible and obvious with every attempt she makes to clear the high jump bar in a competition.&lt;/p&gt;&lt;p&gt;After each jump, every other high jumper might wave to the crowd, take a drink, get in the shade, and prepare for the next attempt.&lt;/p&gt;&lt;p&gt;But not Nicola.&lt;/p&gt;&lt;p&gt;After every attempt, she immediately goes right to her bag, pulls out a green book, and spends several moments writing something in it.&lt;/p&gt;&lt;p&gt;When she misses a height she immediately writes in her green book.&lt;/p&gt;&lt;p&gt;When she clears a height she immediately writes in her green book.&lt;/p&gt;&lt;p&gt;Even when she cleared the height that guaranteed her the silver medal in the Olympics, she immediately, and through tears of joy, wrote in her green book.&lt;/p&gt;&lt;p&gt;As you can imagine, as she rose in the ranks, this habit went viral because EVERYONE was so curious about what she could possibly be writing in her book after every single jump at the sport&amp;#039;s biggest stage.&lt;/p&gt;&lt;p&gt;So what DOES she write in her book?&lt;/p&gt;&lt;p&gt;The high jump is an incredibly technical event - there are multiple phases to every attempt that have to be orchestrated precisely to maximize your chances of clearing the bar.&lt;/p&gt;&lt;p&gt;Nicola has created a structured process for herself where she grades her performance from 1-10 on every one of the 7 phases of the attempt.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a screenshot of her journal from the Tokyo Olympics when she won silver:&lt;/p&gt;&lt;h2&gt;Some Takeaways&lt;/h2&gt;&lt;p&gt;There are several key aspects to her process that traders can learn from.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;It&amp;#039;s simple, structured, and repeatable&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Each entry is short - there&amp;#039;s not enough time to write a novel between jumps, so while she could likely write more, she&amp;#039;s distilled it down to what&amp;#039;s important and nothing more&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Whether she clears the height or not, it&amp;#039;s the same format&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;There&amp;#039;s not even a check mark for whether she cleared the height or not!&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;She writes one (just one!) simple message for herself to focus on for the next attempt&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;As a trader, you should be grading yourself on whether your trade was well-executed and according to plan - the profit of the trade is secondary.​&lt;br&gt;​&lt;br&gt;Bottom line: Be more process-oriented rather than results-oriented.&lt;/p&gt;&lt;p&gt;When you focus on refining your trading process, the results will come.​&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Exact Moment I Became a Quant Trader</title>
        <link href="https://davemabe.com/the-exact-moment-i-became-a-quant-trader"/>
        <id>https://davemabe.com/the-exact-moment-i-became-a-quant-trader</id>
        <published>2023-09-13T11:22:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In the mid-2000s, when all the wise people in my life were telling me it was a bad idea, I started day trading.&lt;/p&gt;&lt;p&gt;I had done mounds of research so I was totally prepared to trade my strategy. My days were busy so &lt;a href=&quot;https://www.davemabe.com/can-limited-time-for-trading-be-a-good-thing/&quot; title=&quot;Can Limited Time for Trading Be &amp;ndash; A Good Thing?&quot;&gt;my trading options were limited&lt;/a&gt;, but I was convinced I could make it work.&lt;/p&gt;&lt;p&gt;And it did.  I watched for signals, dutifully placed trades in my broker, and patiently waited for them to play out.&lt;/p&gt;&lt;p&gt;I wasn&amp;#039;t making FU money with my strategy, but I had set very realistic goals for myself and I met them.&lt;/p&gt;&lt;p&gt;I could reasonably tell someone I was a &amp;quot;consistently profitable trader&amp;quot; at a social gathering with a straight face and mean it.&lt;/p&gt;&lt;p&gt;For the next few years, I focused on improving my strategy, scaling up my position size, growing my account, and learning as much as I could.&lt;/p&gt;&lt;p&gt;The intuition I developed over these years was incredibly valuable and couldn&amp;#039;t possibly be distilled into a set of rules to backtest.&lt;/p&gt;&lt;p&gt;And I believed that with every ounce of my being.&lt;/p&gt;&lt;p&gt;Meanwhile, at AT&amp;amp;T where I was working at the time, there were oodles of manual processes and as a systems guy, all I could see was inefficiency. Everywhere.&lt;/p&gt;&lt;p&gt;I was automating the crap out of every process I could, and becoming a dang good programmer as I was doing it.&lt;/p&gt;&lt;p&gt;Could I apply what I was learning about automation to my trading strategy? Maybe.&lt;/p&gt;&lt;p&gt;But the nuances of it and my discretion were the key to my strategy&amp;#039;s success. Perhaps I could cobble together a crude backtest for my strategy, but could I create something that would improve upon it? Impossible.&lt;/p&gt;&lt;p&gt;Or so I thought.&lt;/p&gt;&lt;p&gt;I finally decided &amp;quot;Why not?&amp;quot; I&amp;#039;d learn a ton just creating the backtest and I&amp;#039;d likely learn &lt;em&gt;something&lt;/em&gt; to eventually apply to my manual strategy.&lt;/p&gt;&lt;p&gt;So I coded it up, ran the backtest, and exported the trades to Excel.&lt;/p&gt;&lt;p&gt;It took less than 5 minutes of very rudimentary analysis in Excel to realize my precious trading discretion was not nearly as precious as I thought.&lt;/p&gt;&lt;p&gt;It actually &lt;strong&gt;sucked&lt;/strong&gt; compared to my very first backtest.&lt;/p&gt;&lt;p&gt;From that moment on I knew was a quant trader.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Be Prepared for Rare Trading Scenarios</title>
        <link href="https://davemabe.com/be-prepared-for-rare-trading-scenarios"/>
        <id>https://davemabe.com/be-prepared-for-rare-trading-scenarios</id>
        <published>2023-08-30T11:35:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;First, a story.&lt;/p&gt;&lt;p&gt;I&amp;#039;m a huge track and field fan having run at UNC back in the day (Go Heels!) and coached high school cross country and track for many years with my wife Joan.&lt;/p&gt;&lt;p&gt;So a couple of months ago, we were both glued to the coverage of the U.S. Outdoor Track and Field Championships when the most incredible story unfolded.&lt;/p&gt;&lt;p&gt;During the steeplechase, a 3000m race over barriers and a water jump, a relative unknown named Kenneth Rooks fell early in the race.&lt;/p&gt;&lt;p&gt;What terrible luck for someone who has worked for years (perhaps their entire life) to prepare for this moment. It&amp;#039;s a rarity - I never fell in a race in my entire racing career - so to have it happen at the national championships really sucks.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s not what I want to draw your attention to.&lt;/p&gt;&lt;p&gt;When most runners fall during a distance race, their immediate reaction is to panic and SPRINT back to the lead pack as quickly as possible. But that never works. The energy you expend doing that leaves you with nothing for the finishing sprint when you need it most.&lt;/p&gt;&lt;p&gt;Instead, over the course of the next 3 laps of the 7.5-lap race, Kenneth steadily and methodically clawed his way back to the leaders.&lt;/p&gt;&lt;p&gt;But that&amp;#039;s not what I want to draw your attention to.&lt;/p&gt;&lt;p&gt;Despite this enormous stroke of bad luck, Kenneth Rooks ended up winning the race (the national championships!) and ran a lifetime best - an outcome that nobody was expecting even if he HADN&amp;#039;T fallen.&lt;/p&gt;&lt;p&gt;But even THAT is not what I want to draw your attention to.&lt;/p&gt;&lt;p&gt;What I DO want you to focus on is his post-race interview where he is asked about the fall.&lt;/p&gt;&lt;p&gt;Kenneth calmly explained that he had actually prepared for this incredibly rare event, even visualizing before the race exactly how he would react if it happened.&lt;/p&gt;&lt;p&gt;My jaw hit the floor.&lt;/p&gt;&lt;p&gt;I&amp;#039;m bullish on Kenneth Rooks - anyone who goes to this level of detailed preparation realizes what it takes to be great at something and will be really hard to beat.&lt;/p&gt;&lt;p&gt;How can you apply this to your trading?&lt;/p&gt;&lt;p&gt;Here are similarly rare trading scenarios that you should prepare for and visualize your plan of action for each:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Your power or internet goes out during a trade and stays off for an extended period&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your hard drive or some other component fails on your trading computer&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your broker has an extended outage and you can&amp;#039;t access your account&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Heavy market action brings you 10X the number of signals as normal and you don&amp;#039;t have the buying power to take all of them - how do you decide what to trade?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your trading strategy has 10 losing trades in a row and the next signal comes - what do you do?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You receive signals from two different trading strategies for the same symbol in the same direction&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You receive signals from two different trading strategies for the same symbol but one is long and one is short (it&amp;#039;s happened to me!)&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Every good trader has a plan for specific trades, but the great ones think about the risks of extremely rare events just as Kenneth Rooks prepared for his national championship.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://youtu.be/wT1ody_cpCA?t=183&quot;&gt;Kenneth Rooks Steeplechase Race (st​arting at 3:03 mark)&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Use a Stop Limit Order?</title>
        <link href="https://davemabe.com/why-use-a-stop-limit-order"/>
        <id>https://davemabe.com/why-use-a-stop-limit-order</id>
        <published>2023-08-23T09:53:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I remember the moment it became painfully clear to me why you would want to use a stop limit order.&lt;/p&gt;&lt;p&gt;It was around 2010 and I was trading a gap system, an earlier version of one that I still trade today.&lt;/p&gt;&lt;p&gt;It involves waiting for a pullback pattern to appear in a stock that&amp;#039;s gapping down, and then entering on a break of the pullback. I was using a &lt;strong&gt;sell stop order&lt;/strong&gt; for the entries.&lt;/p&gt;&lt;p&gt;This worked fine for a couple of years.&lt;/p&gt;&lt;p&gt;Then one day I submitted my sell stop order to enter a trade just as I had done hundreds of times before.&lt;/p&gt;&lt;p&gt;As I watched the chart, waiting for the anticipated move, it suddenly dropped and I heard the familiar ding from my trading platform indicating that I got a fill. Sweet!&lt;/p&gt;&lt;p&gt;But when I looked at my positions for the symbol I was sitting on a huge &lt;em&gt;loss&lt;/em&gt;. What the heck?!?&lt;/p&gt;&lt;p&gt;10R of slippage! That&amp;#039;s right - I didn&amp;#039;t get a fill until the price reached a level well beyond what my target was. Ouch.&lt;/p&gt;&lt;p&gt;In that one instant, I realized I needed a better way to enter positions for this strategy.&lt;/p&gt;&lt;p&gt;I now use &lt;strong&gt;stop limit orders&lt;/strong&gt; for the entries for this type of trading strategy.&lt;/p&gt;&lt;p&gt;Here are some tips for using stop limit orders:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;I calculate the limit price for the order as a percent of the distance to my stop (R). I use 0.24R for the limit price. For example, if the entry price is 50.00, stop price is 49.00, my order goes in with a stop price of 50.00 and a limit price of 50.24 (for a long order). The 0.24 number is not scientific - just a number that seems reasonable.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;There&amp;#039;s a trade-off using this order type: I sometimes miss profitable trades. That&amp;#039;s the trade-off I&amp;#039;m making to avoid unlimited slippage.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;I don&amp;#039;t miss as many profitable trades as I thought I would - I was surprised how often the price blows through my limit price without a fill but then eventually comes back to get filled.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Because the fill is not guaranteed, I need to have a plan for how long to keep the order active if it goes through my limit price without a fill. This adds some minor, but manageable complexity to the workflow. Experiencing this exact situation was the basis for &lt;a href=&quot;https://www.davemabe.com/you-missed-a-trade-now-what/&quot;&gt;this article on what to do if you missed a trade&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Once I settled on the length of time I wanted the order to be active, I use the Good Until Time on the order in IB so it automatically cancels if unfilled or partially filled.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Automation comes in very handy for entering these orders since I have two prices to compute per entry order instead of just one.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Using a stop limit makes 10R slippage a thing of the past.&lt;/p&gt;&lt;p&gt;Using automation for the entries gives you the option to make the orders as complex as necessary without changing your trading workflow.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trade Like Vingegaard Won the Tour de France</title>
        <link href="https://davemabe.com/trade-like-vingegaard-won-the-tour-de-france"/>
        <id>https://davemabe.com/trade-like-vingegaard-won-the-tour-de-france</id>
        <published>2023-08-16T13:45:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As a cyclist, I avidly follow the Tour de France each summer. This year&amp;#039;s event was an instant classic that provided a riveting storyline and if you were paying close attention, a lesson to apply to your trading.&lt;/p&gt;&lt;p&gt;From the beginning, you could tell it was going to be an epic battle between the two race favorites: last year&amp;#039;s champion Jonas Vingegaard versus the two-time winner from 2020 and 2021, Tadej Pogacar (whose name the announcers especially enjoyed &lt;a href=&quot;https://www.youtube.com/watch?v=dJ1meVd5_0s&quot;&gt;pronouncing&lt;/a&gt; at every opportunity).&lt;/p&gt;&lt;p&gt;The Tour is a long and grueling event: 21 stages over the course of 23 days.&lt;/p&gt;&lt;p&gt;You don&amp;#039;t win the Tour in the first few days - it&amp;#039;s only after the course of several stages that the race starts taking its toll and the race for the General Classification (the overall winner) heats up, and this year was no exception.&lt;/p&gt;&lt;p&gt;During the middle stages when all eyes were on the two favorites, although Vingegaard had a slight advantage, it seemed clear Pogacar would be the eventual winner.&lt;/p&gt;&lt;p&gt;He was being patient, riding very aggressively at what seemed like just the right moments, and steadily cut into Vingegaard&amp;#039;s slim lead. Everyone assumed it was inevitable that Pogacar would take back his crown.&lt;/p&gt;&lt;p&gt;That is, until stage 16.&lt;/p&gt;&lt;p&gt;During this individual time trial stage, Vingegaard handily whooped Pogacar and built a huge lead, followed by stage 17 where he destroyed Pogacar and made the gap insurmountable by any measure.&lt;/p&gt;&lt;p&gt;Though he won just a SINGLE stage in the entire event (Pogacar won 2 and another rider won 4 stages), Jonas Vingegaard won by one of the largest margins in 30 years.&lt;/p&gt;&lt;p&gt;He was certainly consistent throughout the tour, but Vingegaard didn&amp;#039;t care about winning individual stages. He was biding his time and waiting for the exact right moment when he had a huge relative advantage over every rider in the field.&lt;/p&gt;&lt;p&gt;And when that moment came he was decisive and confidently put it on the line.&lt;/p&gt;&lt;p&gt;The best traders I know trade like Vingegaard rides the tour.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Create a Profitable Trading Strategy</title>
        <link href="https://davemabe.com/how-to-create-a-profitable-trading-strategy"/>
        <id>https://davemabe.com/how-to-create-a-profitable-trading-strategy</id>
        <published>2023-08-09T13:04:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;m going to let you in on a little secret.&lt;/p&gt;&lt;p&gt;All trading strategies work and all strategies don&amp;#039;t work.&lt;/p&gt;&lt;p&gt;Once I fully understood this, I was able to create a process to quickly determine what rules to apply to a strategy to trade it profitably.&lt;/p&gt;&lt;p&gt;Think of it as a lightning-fast statistician that can tell you the optimal way to trade a strategy.&lt;/p&gt;&lt;p&gt;I use this process to convert so-so or even poor strategies into profitable ones by layering it onto a backtest which allows me to:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Quickly establish whether a trading strategy is worth pursuing&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Go from an idea to a profitable trading system&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Create new rules for my existing strategies to make them even more profitable&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The key is determining the move that your trading system is capturing and then being able to quantify everything about it.&lt;/p&gt;&lt;p&gt;What makes the move unique? Are there instances where a setup is CLOSE to a match for the system but not quite? Could your &amp;quot;excluded&amp;quot; trades be added back to the system to increase overall profit?&lt;/p&gt;&lt;p&gt;I have a library of data points that gets applied to all my strategies automatically through the backtest. Then, for each strategy, I set up additional indicators that quantify every detail of the setup. For example, the range, the volatility, the position in the range, the recent market action, etc - basically everything that can numerically describe the entry signal that could possibly affect the profitability of the system.&lt;/p&gt;&lt;p&gt;I can then instantaneously determine which rules to apply to trade each system.&lt;/p&gt;&lt;p&gt;Is it a magic bullet? No - it can&amp;#039;t create a strategy out of thin air or turn a &lt;em&gt;really&lt;/em&gt; awful strategy into a golden goose.&lt;/p&gt;&lt;p&gt;But it does allow me to turn a much higher percentage of my trading ideas into actual profitable strategies without curve fitting.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re interested in creating your own profitable trading strategies, you&amp;#039;ll love my free newsletter where I show my exact process for creating them every single week.&lt;/p&gt;&lt;p&gt;Sign up for free below:&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Exiting Your Trades - What Works Best?</title>
        <link href="https://davemabe.com/exiting-your-trades-what-works-best"/>
        <id>https://davemabe.com/exiting-your-trades-what-works-best</id>
        <published>2023-08-02T12:29:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;New traders are always interested in how to enter trades, but they&amp;#039;d be much better off spending more time focusing on how to &lt;strong&gt;exit their trades&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Successful traders spend far more time examining their exits because they know that&amp;#039;s where the money is. Small changes in how your strategy exits trades can make an enormous difference in your strategy&amp;#039;s profitability.&lt;/p&gt;&lt;p&gt;Of all the 15+ strategies I trade, here&amp;#039;s a list of the exit types I use for each of them in order of importance with advice for each of them to apply to your strategy. Your backtesting process should allow you to test all these exit types.&lt;/p&gt;&lt;h2&gt;Time Stop - Used in 100% of My Strategies&lt;/h2&gt;&lt;p&gt;If no other exit orders execute, when do you call it quits because too much time has elapsed? I include this exit in all my strategies.&lt;/p&gt;&lt;p&gt;Tips for time stops:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Use the Good After Time order property in IB if you can.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Understand the move your strategy is trying to capture and give it the required time to play out.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Find a way to automate this so you can enter it right after you enter your trade - or better yet AS you enter your trade.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Don&amp;#039;t be tempted to adjust the exit time during a trade. Instead, make a note and backtest a different time stop outside of market hours.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Stop Loss - Used in Almost All of My Strategies&lt;/h2&gt;&lt;p&gt;A stop loss is a stop order that is set at a certain distance below your entry price for longs and above your entry price for shorts. This is a fundamental exit that prevents catastrophic losses and you should use it in your strategies unless you have a really compelling reason not to. If you&amp;#039;re reading this, you should be using a stop loss in your strategies.&lt;/p&gt;&lt;p&gt;Tips for stop losses:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;It&amp;#039;s tempting to make them tight - too tight. This can cause serious slippage.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You should size your position based on the stop-loss distance.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Your stop should be based on some measure of volatility rather than price or percentage.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Do I move my stop to breakeven? Never.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Target Order - Used in Just Under Half of My Strategies&lt;/h2&gt;&lt;p&gt;A target order is a limit order that&amp;#039;s placed above your entry price for longs and below your entry price for shorts.&lt;/p&gt;&lt;p&gt;Tips for target orders:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Similar to a stop, a target should be based on volatility, not price or percentage.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Consider using multiples of your stop distance for your target. For example, if the distance to your stop is X, try a target distance of 3X or 4X.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;For your strategies without a target order by default, consider placing one very far from your entry. It won&amp;#039;t get hit a lot but every once in a while it will!&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Review your most profitable trades - would using a target somewhere have made you even more money on them? It&amp;#039;s quite possible.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;I &lt;a href=&quot;https://davemabe.com/should-you-ever-take-partials/&quot; title=&quot;Should you EVER take Partials?&quot;&gt;don&amp;#039;t scale out of trades&lt;/a&gt; (except for &lt;a href=&quot;https://davemabe.com/the-only-time-taking-partials-makes-sense/&quot; title=&quot;The Only Time Taking Partials Makes Sense&quot;&gt;certain circumstances&lt;/a&gt;) since you end up paying for the privilege with trading profit.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Trailing Stop Order - Used in Zero of My Strategies&lt;/h2&gt;&lt;p&gt;A trailing stop is easily the most overrated of all the exit types. The trailing stop gives you the worst of both worlds - a &lt;strong&gt;premature exit&lt;/strong&gt; of a profitable trade on a &lt;strong&gt;pullback&lt;/strong&gt; - a great way to minimize your profits! It seems like a clever idea but I&amp;#039;ve done enough backtesting to realize it never works, at least for me.&lt;/p&gt;&lt;p&gt;It&amp;#039;s so reliably bad that I&amp;#039;m highly skeptical of any &lt;em&gt;short-term trader&lt;/em&gt; that says they use them. Swing trading or longer-term investing is a different story. The longer your strategy hold time the more a trailing stop might make sense.&lt;/p&gt;&lt;p&gt;But this is where your backtesting becomes your superpower - test it for yourself and if it works for you, use it!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Choosing a Backtesting Platform</title>
        <link href="https://davemabe.com/choosing-a-backtesting-platform"/>
        <id>https://davemabe.com/choosing-a-backtesting-platform</id>
        <published>2023-07-26T12:31:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A trader on Twitter posts a chart with a winning trade along with arrows for their entry and exit points. It seems like a great trade - but are they showing you all the trades they took that day, even the losing ones?&lt;/p&gt;&lt;p&gt;Of course, there&amp;#039;s no way to verify that - you&amp;#039;ll have to take them at their word.&lt;/p&gt;&lt;p&gt;Can trades like the one tweeted be used as a profitable trading strategy?&lt;/p&gt;&lt;p&gt;A well-tuned backtesting process allows you to &lt;strong&gt;test the strategy yourself&lt;/strong&gt;. The better your process is, the quicker you can test the trading strategy.&lt;/p&gt;&lt;p&gt;But a &lt;a href=&quot;https://davemabe.com/youre-probably-backtesting-wrong/&quot; title=&quot;You&amp;rsquo;re Probably Backtesting Wrong&quot;&gt;well-designed backtesting process&lt;/a&gt; yields benefits well beyond just answering a single question. When set up correctly, it allows you to:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Transform almost any strategy into a profitable one that you can trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Create a roadmap to continuously improve a strategy in the future&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Have a powerful BS detector so you never have to wonder if a strategy works or not&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;These benefits compound over time. Even if you run into a dead end with a particular trading strategy you still learn a lot about the markets and what works and doesn&amp;#039;t work. That knowledge accumulates and even when something you learn seems useless today it can become very valuable when applied to other ideas you&amp;#039;ll have in the future.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Backtesting is as close to a superpower as a trader can have&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;Required Backtesting Features&lt;/h2&gt;&lt;p&gt;There are a lot of platforms out there that claim to have backtesting, but there are only a few that have the features required to be a part of my backtesting process.&lt;/p&gt;&lt;h3&gt;Ability to Backtest the Entire Market&lt;/h3&gt;&lt;p&gt;If the package cannot test across the entire market then it is not worth using. A lot of software can test on single symbols or a basket of symbols, but there&amp;#039;s a reason only a few can test across LOTS of symbols: it&amp;#039;s a very hard technical problem to get right.&lt;/p&gt;&lt;p&gt;This requirement alone eliminates the vast majority of backtesting platforms from my consideration.&lt;/p&gt;&lt;h3&gt;Add Custom Columns to the Backtest Trade Results&lt;/h3&gt;&lt;p&gt;This &lt;a href=&quot;https://davemabe.com/youre-probably-backtesting-wrong/&quot; title=&quot;You&amp;rsquo;re Probably Backtesting Wrong&quot;&gt;critical feature&lt;/a&gt; is one that most traders ignore. You need the ability to determine how certain indicator values affect the profitability of your trading strategy. This is fundamental to any effective backtesting process. Without this ability, you&amp;#039;ll never be able to have the confidence to &lt;a href=&quot;https://davemabe.com/take-your-best-trades-with-bigger-size/&quot; title=&quot;Take Your Best Trades with Bigger Size&quot;&gt;take some of the trades in your system with full position size&lt;/a&gt;.&lt;/p&gt;&lt;h3&gt;Extensibility&lt;/h3&gt;&lt;p&gt;Successful traders understand that although profitable strategies usually have surprisingly simple logic, they are very much unique to the trader. Mimicking someone else&amp;#039;s strategy might work in the short term, but if you are going to have long-term success in trading you need a process for generating your own strategies from your own unique ideas. That means your backtesting platform needs to be infinitely extensible by writing your own code.&lt;/p&gt;&lt;h3&gt;Longevity&lt;/h3&gt;&lt;p&gt;If you want to trade for the next year or two, pick whatever platform you want. If you want to be trading successfully for the next couple of decades, then pick a platform that has been around a while and is actively being developed.&lt;/p&gt;&lt;h2&gt;Backtesting Platforms I Recommend&lt;/h2&gt;&lt;p&gt;I have used several backtesting platforms over the years and I have settled on two for my trading workflow.&lt;/p&gt;&lt;h3&gt;Trade-Ideas OddsMaker&lt;/h3&gt;&lt;p&gt;As the CTO of &lt;a href=&quot;https://www.trade-ideas.com&quot;&gt;Trade-Ideas&lt;/a&gt;, I admit I&amp;#039;m biased here, but I use the OddsMaker for some of my short-term strategies and for quick strategy prototyping. It&amp;#039;s lightning-fast (I guarantee nothing on the market is faster!) and easy to customize without writing code. You can add filter values to the trading results and it&amp;#039;s &lt;a href=&quot;https://www.trade-ideas.com/guide/chapter/8_3_3_1/8.3.3.1Formula_Editor.html&quot;&gt;extensible through custom formulas&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;The nice thing about the OddsMaker is that it fully integrates with your real-time alerts - so it&amp;#039;s trivial to backtest a strategy that you already use.&lt;/p&gt;&lt;h3&gt;Amibroker&lt;/h3&gt;&lt;p&gt;I&amp;#039;m a long-time &lt;a href=&quot;https://www.amibroker.com&quot;&gt;Amibroker&lt;/a&gt; user and while it&amp;#039;s not perfect, it works well for backtesting and it&amp;#039;s fully extensible. It also has a nice charting platform that you can customize with code. It has been around for a long time and has a steady stream of improvements.&lt;/p&gt;&lt;p&gt;Here are other platforms that I recommend to traders depending on their situation:&lt;/p&gt;&lt;h3&gt;Python&lt;/h3&gt;&lt;p&gt;If I were starting today, I would probably use a combination of the OddsMaker and Python for backtesting. For clients I work with that have strong technical chops and coding skills, this is what I recommend. It&amp;#039;s completely customizable down to every aspect. The backtesting library I recommend for Python is &lt;a href=&quot;https://kernc.github.io/backtesting.py/&quot;&gt;backtesting.py&lt;/a&gt;, although there are others that work as well.&lt;/p&gt;&lt;h3&gt;NinjaTrader&lt;/h3&gt;&lt;p&gt;I tried &lt;a href=&quot;https://ninjatrader.com/&quot;&gt;NinjaTrader&lt;/a&gt; a long time ago and didn&amp;#039;t really vibe with it but it&amp;#039;s a good platform and checks all the requirement boxes above. If you&amp;#039;re comfortable with C# then you should strongly consider it. From the looks of their current marketing, they focus mostly on futures trading for some reason.&lt;/p&gt;&lt;p&gt;(Are there other platforms that I should add to this list? Let me know.)&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Day I Almost Quit Trading</title>
        <link href="https://davemabe.com/the-day-i-almost-quit-trading"/>
        <id>https://davemabe.com/the-day-i-almost-quit-trading</id>
        <published>2023-07-19T15:57:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;It wasn&amp;#039;t a single day, it was more like a week of wondering if I should quit trading.&lt;/p&gt;&lt;p&gt;At the end of 2012, I focused on getting the most out of my trading system. It had performed well up to that point and after my annual trading review, I knew what I had to do to size it up. And that&amp;#039;s what I was trying to do.&lt;/p&gt;&lt;p&gt;Trade the same system just bigger. No major changes - just sizing up what I was already doing. It had worked for 4-5 years at this point - if it ain&amp;#039;t broke don&amp;#039;t fix it, right?&lt;/p&gt;&lt;p&gt;Midway through 2013, though, I was staring down the barrel of a major drawdown which for weeks I&amp;#039;d convinced myself was just temporary. It wasn&amp;#039;t. So, on one final day of particularly poor performing trades, I had to face the music and reduce my position size substantially.&lt;/p&gt;&lt;p&gt;I desperately examined my trading journal, looking at every single trade I took. Had I veered too far from my trading plan without realizing it? Was I losing out on significant profits to slippage with the increased position size I was taking? Some missed trades are unavoidable and out of your control, but was I missing out on a lot more than the previous year? In short, what were my avoidable mistakes? I was on a mission to find out.&lt;/p&gt;&lt;p&gt;I&amp;#039;d always been able to do this type of deep dive into my trading results and figure out what the problem was and address it, but this time there was no obvious path to fixing it.&lt;/p&gt;&lt;p&gt;If it wasn&amp;#039;t something that I was doing wrong, what could it be? My only conclusion after tossing and turning (literally losing sleep!) for several days was that my tried and true strategy had just... stopped working.&lt;/p&gt;&lt;h2&gt;The Abyss&lt;/h2&gt;&lt;p&gt;This was devastating to me. It&amp;#039;s hard for me to even write about this because of how difficult it was to grapple with. I had done &lt;strong&gt;all the recommended things&lt;/strong&gt; to be a good trader. I started trading with small size, set reasonable goals for myself, and slowly sized up over time. I methodically logged all my trades in a journal at the end of each trading day. I regularly reviewed charts for my trades and looked for ways to improve.&lt;/p&gt;&lt;p&gt;That stable game plan had served me well for many years and turned into solid trading profits. I was a &lt;em&gt;trader&lt;/em&gt; - and not only that: I had been a &lt;em&gt;successful&lt;/em&gt; one. And now this was happening to me?!?&lt;/p&gt;&lt;p&gt;I knew there were no guarantees in the market and that it&amp;#039;s constantly changing and traders have to adapt. I &lt;em&gt;thought &lt;/em&gt;I had the foundation I needed to adapt to anything.&lt;/p&gt;&lt;p&gt;I was out of ideas with no hope for my trading future. I hated this feeling of helplessness more than &lt;em&gt;anything&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;It wasn&amp;#039;t simply that I was in an ordinary drawdown; I was in a drawdown of working solutions - a trading malaise, so to speak - completely out of ideas for how to improve my strategy.&lt;/p&gt;&lt;h2&gt;A Better Process for Creating Trading Systems&lt;/h2&gt;&lt;p&gt;I spent the next several months building a trading process from the ground up to avoid this situation.&lt;/p&gt;&lt;p&gt;A backtest alone was not going to cut it.&lt;/p&gt;&lt;p&gt;A trading journal was not going to be enough.&lt;/p&gt;&lt;p&gt;All the discipline in the world doesn&amp;#039;t matter if you can&amp;#039;t adapt.&lt;/p&gt;&lt;p&gt;Strategies that work for other traders weren&amp;#039;t necessarily going to work for me.&lt;/p&gt;&lt;p&gt;I needed to devise &lt;strong&gt;my own&lt;/strong&gt; unique trading strategies and nimbly recalibrate as the market is ever-changing.&lt;/p&gt;&lt;p&gt;And that&amp;#039;s exactly what I did.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve spent years refining my process and reduced the amount of time it takes to create a viable trading strategy by 20-fold. I&amp;#039;ve used this process to create 15+ profitable, robust trading strategies and continuously improve them.&lt;/p&gt;&lt;p&gt;If you want mediocre trading results by taking orders from some Ferarri-driving trading guru, &lt;strong&gt;stop reading&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re ready to say &amp;quot;screw the gurus&amp;quot; and &lt;strong&gt;rely solely on yourself for your trading success&lt;/strong&gt;, then look no further than my free weekly email newsletter.&lt;/p&gt;&lt;p&gt;Every week I send one actionable tip that you can apply to your trading to create a process for continuous improvement.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Screw the Ferarri-driving trading gurus&lt;/strong&gt; by signing up below.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">A Daily Trading Goal is a Terrible Idea</title>
        <link href="https://davemabe.com/a-daily-trading-goal-is-a-terrible-idea"/>
        <id>https://davemabe.com/a-daily-trading-goal-is-a-terrible-idea</id>
        <published>2023-07-14T12:17:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In Annie Duke&amp;#039;s book &lt;a href=&quot;https://www.amazon.com/Quit-Power-Knowing-When-Walk-ebook/dp/B09PTLY4BL/&quot;&gt;Quit&lt;/a&gt;, she describes a study of the behavior of 2000 cab drivers in New York City.&lt;/p&gt;&lt;p&gt;The authors of the study analyzed the data and realized that drivers could make significantly more money by working longer on the good days when the fares were plenty and driving fewer hours on the bad days when demand was low. Why were the majority of drivers not recognizing this shortfall?&lt;/p&gt;&lt;p&gt;They interviewed several of the drivers and realized the problem...&lt;/p&gt;&lt;p&gt;It&amp;#039;s human nature to set benchmarks and track them, and most cab drivers do just that. They have a revenue amount in mind that they&amp;#039;re trying to achieve each day. When they hit the number, no matter what time it is, they quit for the day and go home.&lt;/p&gt;&lt;p&gt;As you might imagine, on some really good days they hit their number very early in the night. On other days when there&amp;#039;s less demand, they might drive long hours and &lt;em&gt;still&lt;/em&gt; not make their personal daily goal.&lt;/p&gt;&lt;p&gt;The study found that cab drivers could increase their earnings by &lt;strong&gt;15%&lt;/strong&gt; by working the same hours but, instead, allocating them &lt;strong&gt;based on demand&lt;/strong&gt; - working longer hours on the good days and fewer on the bad ones. Their daily goal-setting, which &lt;em&gt;feels productive&lt;/em&gt;, actually causes reduced earnings.&lt;/p&gt;&lt;h2&gt;Daily Trading Goals are Counterproductive, Too&lt;/h2&gt;&lt;p&gt;If you&amp;#039;re similarly setting a daily profit goal for your trading, you should rethink that immediately. Opportunities in the stock market &lt;a href=&quot;https://www.davemabe.com/what-frequency-of-trades-is-best-for-a-system/&quot; title=&quot;What Frequency of Trades is Best for a System?&quot;&gt;don&amp;#039;t come at a constant rate&lt;/a&gt; - some days will be flush with more great trades than you can take while other days the market will feel like a ghost town.&lt;/p&gt;&lt;p&gt;You have no control over the rate of these opportunities - there&amp;#039;s no way you can create them, all you can do is be ready when they arrive. That means having the discipline to sit on your hands and not force any trades when they don&amp;#039;t exist. If you don&amp;#039;t trade with a system, you&amp;#039;ll always be able to squint hard enough and find a trade to take.&lt;/p&gt;&lt;p&gt;If you look at a successful trader&amp;#039;s results, one thing immediately sticks out: almost all the profit comes from a small percentage of trading days. I just checked my journal for the best-performing of my 15+ trading systems. Of the 101 trading days so far in 2023, there are just 60 days where it took at least one trade, 41 of those trading days ended up with a profit, and 19 of them ended up with a loss. Of the 41 profitable trading days, a lot of them had a marginal profit. All the heavy lifting that makes this strategy profitable happens on less than 10% of days. If I had imposed a daily trading goal on those days, this strongly profitable strategy would be the opposite: a loser.&lt;/p&gt;&lt;p&gt;Trading success involves tremendous discipline and sitting on your hands when conditions aren&amp;#039;t favorable.&lt;/p&gt;&lt;p&gt;Daily trading profit goals cause you to take the exact opposite approach from what&amp;#039;s required for success.&lt;/p&gt;&lt;h2&gt;Shooting for a Certain Number of Trades is Just as Bad&lt;/h2&gt;&lt;p&gt;There&amp;#039;s a related line of reasoning I&amp;#039;ve heard from traders that sounds accurate on the surface. They don&amp;#039;t have a daily &lt;em&gt;profit&lt;/em&gt; goal per se, but they have a goal of a certain &lt;em&gt;number of trades&lt;/em&gt; to take. They correctly recognize that although it&amp;#039;s bad to overtrade by taking some subpar trades, it&amp;#039;s much worse to &lt;em&gt;under&lt;/em&gt;trade and miss out on big winners. That fear of missing big winning trades causes them to take marginal trades on slower days in hopes of capturing as many big trades as possible.&lt;/p&gt;&lt;p&gt;This is wrong for the same reason that a daily profit limit is - there&amp;#039;s not a quota for trading opportunities. The profitable situations for your strategy are independent and not related to each other. A daily &amp;quot;number of trades&amp;quot; goal treats them as if they are.&lt;/p&gt;&lt;h2&gt;A Daily Trading Goal That Works&lt;/h2&gt;&lt;p&gt;Define your trading rules and stick to them.&lt;/p&gt;&lt;p&gt;Then your daily trading goal becomes really easy: follow your rules.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">One Question to Identify a Profitable Trader</title>
        <link href="https://davemabe.com/one-question-to-identify-a-profitable-trader"/>
        <id>https://davemabe.com/one-question-to-identify-a-profitable-trader</id>
        <published>2023-06-23T01:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you&amp;#039;ve traded for any length of time you&amp;#039;ll quickly realize that there are a lot of traders that give the appearance of robust profitability but when you scratch the surface they don&amp;#039;t quite live up to what they outwardly project. This is especially true on Twitter where would-be traders start with a flurry of activity and then fade away as time goes on.&lt;/p&gt;&lt;p&gt;This reality makes it difficult to find other successful, creative traders to collaborate with. As Mike Bellafiore said in this tweet, &amp;quot;Networking is a trading skill.&amp;quot;&lt;/p&gt;&lt;p&gt;So how do you find other serious traders to collaborate with and share trading ideas? Building trust with other traders takes time and effort, so you need to choose wisely.&lt;/p&gt;&lt;p&gt;Imagine you&amp;#039;re at a networking event for traders where you don&amp;#039;t know anyone. There&amp;#039;s not enough time to have in-depth conversations with every attendee, but you can ask everyone individually a question they&amp;#039;ll answer. (Like speed-dating.)&lt;/p&gt;&lt;p&gt;What&amp;#039;s the ONE question you ask that you believe gives you the best odds of finding the successful traders in the group to spend your valuable time conversing with?&lt;/p&gt;&lt;p&gt;I sent this scenario to my newsletter subscribers a few weeks ago and got some great responses. Here they are:&lt;/p&gt;&lt;h2&gt;How much was the borrow? - Anonymous&lt;/h2&gt;&lt;p&gt;It&amp;#039;s easy to conveniently forget to include borrow costs when looking at your trading performance. The answer to this question would tell you a lot about how transparent someone is about their trading track record and how sophisticated their strategy is.&lt;/p&gt;&lt;h2&gt;What broker do you use? - Isaac H.&lt;/h2&gt;&lt;p&gt;I wasn&amp;#039;t sure about this question at first but the more I thought about it the more effective I think it would be. These responses would give me an indication of the type of trading they do:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;a prop trading firm&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Robinhood&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Interactive Brokers&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;E*TRADE&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Schwab&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Cobra&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Multiple brokerage accounts&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Do you rely on your trading income to live? - DMactrades&lt;/h2&gt;&lt;p&gt;Trading for a living is surely a good indicator. Perhaps not as effective as it used to be prior to Covid when remote work was rare. I suspect the rate of serious part-time traders worth collaborating with has been increasing over time.&lt;/p&gt;&lt;h2&gt;What is the one thing you can do this month that will have the most impact on improving your performance? - Mike Bellafiore&lt;/h2&gt;&lt;p&gt;This is a very direct question that gets to the heart of long-term success. The best traders are ALWAYS improving. Your answer to this question should be well thought out and change from month to month as you implement your improvements.&lt;/p&gt;&lt;h2&gt;What do you look for in your Grade A setups? - T. S.&lt;/h2&gt;&lt;p&gt;I like this question because it gets to the heart of how traders should be thinking about their trading systems. I encourage traders to not think about every setup in their trading system in the same way. The biggest leap I made in my trading was to go from a binary yes/no thought process to thinking in ranges. That is, to what degree do I think this trader will be profitable relative to other traders in this system? Great question!&lt;/p&gt;&lt;h2&gt;How do you avoid losing trades? - Anonymous&lt;/h2&gt;&lt;p&gt;The answer to this question will tell you a lot about how someone thinks about their strategy and whether they have one at all.&lt;/p&gt;&lt;h2&gt;Do you use a trading journal? - Dave Mabe&lt;/h2&gt;&lt;p&gt;This is the question I&amp;#039;ve had in mind ever since my StockTickr days. It was clear that if you&amp;#039;re not keeping score, you&amp;#039;re just not going to be successful. I remember discussing this with a well-known poker coach in Las Vegas a few years ago.&lt;/p&gt;&lt;p&gt;He said the correlation is 100% - for all poker players he came across if they aren&amp;#039;t keeping track of their sessions then they simply aren&amp;#039;t profitable. At that time he knew of no exceptions. I&amp;#039;m pretty sure the same goes for trading. Do you keep a journal?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Take Your Best Trades with Bigger Size</title>
        <link href="https://davemabe.com/take-your-best-trades-with-bigger-size"/>
        <id>https://davemabe.com/take-your-best-trades-with-bigger-size</id>
        <published>2023-06-16T10:20:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Imagine you&amp;#039;re playing poker and one of two scenarios plays out.&lt;/p&gt;&lt;p&gt;Scenario A: you&amp;#039;re dealt a pair of Aces and the flop comes out Ace, Ace, King. You&amp;#039;ve got four-of-a-kind.&lt;/p&gt;&lt;p&gt;Scenario B: you&amp;#039;re dealt a pair of sevens and the flop comes out Jack, six, three. You&amp;#039;ve got a pair of 7s.&lt;/p&gt;&lt;p&gt;Would it make sense to allocate the same amount of money in each scenario? Of course not - in scenario A you have a much stronger probability of winning the hand.&lt;/p&gt;&lt;p&gt;Yet this is what I see most traders doing with their trading strategies: they use the same position size for all of the trades in their system. It&amp;#039;s a reasonable approach for getting started: as you gain confidence in the system, you can easily size up by increasing the amount of risk you&amp;#039;re taking per trade.&lt;/p&gt;&lt;p&gt;But this assumes that every trade in your system has the same trading edge. Of course, that can&amp;#039;t possibly be true: there&amp;#039;s a huge variability in the likelihood that your trades end up being profitable and to what degree. Using the same size for all your trades is like betting the same amount with your four-of-a-kind versus your pair of sevens in the poker example. You&amp;#039;re missing out on a lot of profit doing it that way.&lt;/p&gt;&lt;p&gt;You can simply increase size across all your trades, but ultimately, the best way to improve your trading strategy is to identify the subset of trades with the highest trading edge and trade those with more shares than your normal position size. Find your four-of-a-kind scenarios in your trading system and use that to your advantage.&lt;/p&gt;&lt;p&gt;When you use an increased size you will have some larger losses, but if you are able to identify the right subset of trades, the outsized gains from the profitable trades will easily overwhelm the losses. After all, a four-of-a-kind in poker sometimes loses the hand, but that doesn&amp;#039;t mean it&amp;#039;s not an overwhelmingly profitable situation!&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example of going through this exercise with a trader that&amp;#039;s working with me to improve his strategy. We were able to identify a solid subset of trades in his system that were contributing most of the profits and reasonably trade them with larger size. Here&amp;#039;s the equity curve of the original system with consistent sizing for all trades (the red line) compared with the same system but taking trades with the strongest edge with bigger size (the green line).&lt;/p&gt;&lt;p&gt;The benefits go well beyond just the increased profits. Soon you might be able to shed some of the weaker trades in the system and free up buying power for additional strategies.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Can Limited Time for Trading Be - A Good Thing?</title>
        <link href="https://davemabe.com/can-limited-time-for-trading-be-a-good-thing"/>
        <id>https://davemabe.com/can-limited-time-for-trading-be-a-good-thing</id>
        <published>2023-06-08T13:44:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Fellow reader Sashi N. (posting with permission) contacted me with this trading concern:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;Hi Dave - my biggest issue with trading right now is time!&lt;/p&gt;&lt;p&gt;Being a senior pro at my organization, I am unable to dedicate serious time towards trading, and actually get to spend just a few hours every weekend.&lt;/p&gt;&lt;p&gt;I need a good process to organize my time (charts, scans, learning, coding, testing - and so on)&lt;/p&gt;&lt;p&gt;&lt;br&gt;Sashi N.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;I immediately thought back to when I first started trading. I was working full time at AT&amp;amp;T and had recently finagled the ability to work from home after my youngest daughter was born. Residential broadband was just becoming widespread, so I converted our toolshed into an office that was almost habitable (there were plenty of mornings when I started my day in a 40 degree &amp;quot;office&amp;quot; with blue skinks joining me for coffee). Working remotely gave me an extra 2.5 hours a day (commute time + lunch) to do more outside-of-work activities: exercise, spend more time with my family, brew beer and, of course, trade.&lt;/p&gt;&lt;p&gt;Despite this newfound flexibility, time to dedicate to trading was still very much at a premium for me. Regular meetings, ad-hoc conference calls, actual work, and a newborn baby consumed my days and left precious little time to think about the markets at all, let alone day trade!&lt;/p&gt;&lt;h2&gt;My Extremely Time-Constrained Trading Routine&lt;/h2&gt;&lt;p&gt;I found a way, though, by carving out a routine that was just &lt;em&gt;barely&lt;/em&gt; feasible. I religiously set aside 30 minutes every weekday morning to closely observe the market and trade. Starting with the open at 9:30 am, I&amp;#039;d watch the market action specifically looking for my predetermined setups in gapping stocks.&lt;/p&gt;&lt;p&gt;I&amp;#039;d enter my trades and then immediately submit my exit orders. At the time it was trendy to use &amp;quot;mental stops&amp;quot; - that is, some traders wouldn&amp;#039;t enter explicit stop orders for their exits, but they&amp;#039;d have a price in mind that they would watch and then manually exit when the price was reached. With my extremely limited schedule, I didn&amp;#039;t have the luxury of casually monitoring my positions all day - my only option was to use explicit stops and go on about my day job.&lt;/p&gt;&lt;p&gt;Once the clock reached 10 am, the conference calls and meetings began - I &lt;em&gt;had&lt;/em&gt; to stop trading. And there were plenty of days my boss would call me during that first half hour (the nerve!) and I&amp;#039;d have to cut my trading short and skip some profitable trades.&lt;/p&gt;&lt;p&gt;In the moment, I recall being &lt;strong&gt;very frustrated&lt;/strong&gt; with my situation. If only I had more time, I could have entered more profitable trades after 10 am, managed my positions more responsibly by watching the intraday action, traded more strategies throughout the day, and created a plan to trade the lucrative market close.&lt;/p&gt;&lt;p&gt;I could have made so much more progress more quickly!&lt;/p&gt;&lt;h2&gt;My Time Crunch was an &lt;em&gt;Advantage&lt;/em&gt;&lt;/h2&gt;&lt;p&gt;Looking back now, though, I realize that these constraints instilled some valuable trading habits that still benefit me to this day, 22 years later.&lt;/p&gt;&lt;h3&gt;I HAD to Trade a System&lt;/h3&gt;&lt;p&gt;Because of the severe schedule constraints and distractions, I had to execute a pre-planned strategy. There was no time for concocting hypotheses on the fly - the setups either met my criteria or they didn&amp;#039;t. I didn&amp;#039;t second-guess myself. If there were potentially profitable situations I noticed that weren&amp;#039;t captured by the system I was trading, I would take note and do research on the weekends to determine if they were feasible to trade.&lt;/p&gt;&lt;h3&gt;Overtrading was Impossible&lt;/h3&gt;&lt;p&gt;I didn&amp;#039;t HAVE the ability to take trades willy-nilly; I barely had time to take the trades in my existing trading strategy! Taking off-the-cuff boredom trades was off the table.&lt;/p&gt;&lt;h3&gt;No Exiting Too Early&lt;/h3&gt;&lt;p&gt;If I&amp;#039;d had time to stare at my positions&amp;#039; P&amp;amp;L all day, there certainly would have been plenty of instances I would have caved and exited a position earlier than planned because it &amp;quot;felt right&amp;quot; only to have it continue without me. My schedule allowed me to unknowingly avoid what I realize now is an extremely common trading mistake.&lt;/p&gt;&lt;h3&gt;Forced to be Ruthlessly Efficient&lt;/h3&gt;&lt;p&gt;My situation forced me to think hard about systematizing my trading. I wasn&amp;#039;t auto-trading at that time but I may as well have been: I had to create a plan to trade a fast trading system in a short amount of time.&lt;/p&gt;&lt;p&gt;That meant removing distractions: using Trade-Ideas to alert me for the EXACT situations I wanted to trade and nothing else, having a predetermined game plan, and confining myself to the types of strategies that were realistically possible for me to trade.&lt;/p&gt;&lt;p&gt;Look closely at your own situation - those seemingly frustrating constraints might very well help your trading in the long run.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What Manual Traders Can Learn From Systems Traders</title>
        <link href="https://davemabe.com/what-manual-traders-can-learn-from-systems-traders"/>
        <id>https://davemabe.com/what-manual-traders-can-learn-from-systems-traders</id>
        <published>2023-05-23T12:57:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;A reader (Chris, posting with his permission) emailed me recently to ask how he could improve his trading:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;I am a part time swing trader and I only trade breakout strategies leaning on Qullamaggie style. I have been doing this for 2.5 years. Although I am not profitable, my winners are larger than losers. My entries have been sometimes a little bit late. But what draws me down: my win ratio is too low. My timing is a bit off. Shouldn&amp;#039;t be trading when markets are below EMA10.&lt;/p&gt;&lt;p&gt;&lt;br&gt;Chris&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;I responded:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;If you&amp;#039;re not already keeping a trading journal, you should start immediately.  Start reviewing your journal to search for patterns in the trades you&amp;#039;ve taken.  Are there trends you pick up on that you couldn&amp;#039;t see in real-time?&lt;/p&gt;&lt;p&gt;&lt;br&gt;Me&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It turns out Chris kept a workable trading journal a year ago, but had gotten lazy about updating it (his words, not mine). After Chris and I had some back and forth, he reviewed his recent trading history and identified several problems:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Needs more consistent tracking of trades in his journal&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Overtrading - Chris sees something moving and sometimes can&amp;#039;t resist the urge to trade it&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Mid-day entries are almost always losers&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Chris trades too many lower price stocks; the higher priced stocks turn out noticeably better&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;When trading more than one setup, he hasn&amp;#039;t consistently categorized them as such in his journal&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;While this may seem sloppy to systems traders, I feel optimistic when someone frankly identifies ways they can improve. Honest post-trade reviews almost always yield a list of concrete steps to profitability.&lt;/p&gt;&lt;p&gt;Sure enough, after a few more questions, we identified several rules Chris could follow that would have made him profitable over the last 12 months. He now has a roadmap to eliminate his over-trading, improve his low win rate, and avoid his biggest losing trades. On top of that, his initial assumption that he shouldn&amp;#039;t be trading when the market is below the EMA10 (10 period exponential moving average) turned out to not have &lt;strong&gt;any effect&lt;/strong&gt; on the profitability of his trading system.&lt;/p&gt;&lt;h2&gt;Tips for Manual (Discretionary) Traders&lt;/h2&gt;&lt;p&gt;I&amp;#039;ve worked with several discretionary traders and systems traders over the years and while there are substantial similarities between them, manual traders can learn valuable lessons from their systematic cousins.&lt;/p&gt;&lt;h3&gt;Keep Score&lt;/h3&gt;&lt;p&gt;If you&amp;#039;re not keeping meticulous records of what and how you&amp;#039;re trading, you&amp;#039;re just not going to be profitable, plain and simple. If you&amp;#039;re trading to brag to your friends or post your winning trades on Twitter, then you don&amp;#039;t need a journal. If you want to actually make money, though, keeping a trade journal is &lt;strong&gt;an absolute requirement&lt;/strong&gt;. The most effective breakthroughs you&amp;#039;ll make in your trading career will come from analyzing your journal and seeing in no uncertain terms which elements of your trading suck.&lt;/p&gt;&lt;h3&gt;Categorize Your Trades By Setup&lt;/h3&gt;&lt;p&gt;Although you may call yourself a breakout trader, a swing trader, or a low-float short trader (like everyone on Twitter these days), you are probably taking different styles of trades within these broader categories.&lt;/p&gt;&lt;p&gt;Systems traders are ruthless at identifying modified setups and systematizing them. If you&amp;#039;re taking trades in a single system for multiple reasons, even if the differences might seem insignificant, it&amp;#039;s critically important to identify distinct categories and start tracking trades in your journal accordingly.&lt;/p&gt;&lt;p&gt;The more precise you are, the more money you&amp;#039;ll be able to make by &lt;strong&gt;analyzing specific subsets&lt;/strong&gt; of your trades. Chris was able to create a simple rule based on price that will improve his trading, but this is setup dependent. This price rule wouldn&amp;#039;t make sense if naively applied to other setups he&amp;#039;s trading, that is, it&amp;#039;s only useful in the context of this particular setup.&lt;/p&gt;&lt;h3&gt;Systems Traders Challenge Their Own Assumptions&lt;/h3&gt;&lt;p&gt;All types of traders have assumptions about how the market works, but systems traders have the ability to challenge their own preconceived ideas and quickly verify their accuracy.&lt;/p&gt;&lt;p&gt;Take Chris&amp;#039; assumption about the 10EMA - he presented this theory as fact (he was &lt;em&gt;certain&lt;/em&gt; it was true!) until he &lt;strong&gt;actually looked&lt;/strong&gt; at the numbers. Systems traders have a finely tuned process for verifying claims and testing their trading theories. Should you take trades when the price is above the 50 day moving average? Systems traders don&amp;#039;t assume - they efficiently determine the answer using their own personal verification system which they constantly improve over time.&lt;/p&gt;&lt;h3&gt;Clearly Define Your Rules Prior to the Trade&lt;/h3&gt;&lt;p&gt;It&amp;#039;s very common but always strikes me as a little odd when someone tells me they&amp;#039;re &amp;quot;overtrading&amp;quot; and asks what they should do about it. My first instinct is to say &amp;quot;Just stop doing it&amp;quot; but I realize now this is my inner systems trader talking.&lt;/p&gt;&lt;p&gt;When discretionary traders say they&amp;#039;re trading too frequently, this usually means they&amp;#039;ve looked back at some of their trades and realized they shouldn&amp;#039;t have taken a lot of them. Yes, this is &lt;em&gt;technically&lt;/em&gt; &amp;quot;overtrading&amp;quot; but it really points to a bigger problem: they haven&amp;#039;t defined their rules well enough to know whether, in the moment, a trade meets their criteria or not. With hindsight it&amp;#039;s easy to see, but in real-time deciding to take a trade is far more difficult, especially when there might be two or three setups that materialized simultaneously and compete for your attention.&lt;/p&gt;&lt;p&gt;Predefining your rules for the setups you&amp;#039;re taking will make this process far easier.&lt;/p&gt;&lt;p&gt;Learning from systems traders doesn&amp;#039;t have to mean completely automating your trades. Discretionary traders can look over the shoulders of systematic traders and borrow plenty of their good habits, just as Chris did.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You're Probably Backtesting Wrong</title>
        <link href="https://davemabe.com/youre-probably-backtesting-wrong"/>
        <id>https://davemabe.com/youre-probably-backtesting-wrong</id>
        <published>2023-05-11T10:44:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;ve worked with a lot of traders over the years, many of whom are quite smart and able to backtest their ideas to generate successful trading strategies. But when I look at their backtesting routine, almost all of them completely ignore the most productive step for creating profitable models with a strong and durable trading edge.&lt;/p&gt;&lt;p&gt;Backtesting this way is like riding a horse compared to walking while not realizing that airplanes exist: you can travel a long way on horseback (even across the entire country, in theory) and you&amp;#039;ll leave mere walkers in the dust. However, if you&amp;#039;re unaware of air travel then you may as well be a sloth who has no idea that he can travel at least 100 times faster by plane.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a standard backtest workflow that I see traders doing over and over:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;Trading strategy idea generation&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Code the backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Run the backtest&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Analyze aggregate metrics and equity curve&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Decide to trade it or return to step #1&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Let&amp;#039;s look at these steps one at a time in detail.&lt;/p&gt;&lt;h2&gt;Trading Strategy Idea Generation&lt;/h2&gt;&lt;p&gt;Generating ideas is the hardest part of trading for most since it starts off like a chicken and egg problem: ideas come from experience but to have good ideas you first need to have some experience. With enough practice, though, this becomes the easiest aspect of the whole process. I know some readers will find this hard to believe, but the more you&amp;#039;re able to exercise your &amp;quot;trading idea muscle,&amp;quot; &lt;strong&gt;the stronger it will be.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Because it takes regular practice and hard creative work, this step weeds out a lot of would-be traders.&lt;/p&gt;&lt;h2&gt;Code the Backtest&lt;/h2&gt;&lt;p&gt;For most traders, coding the backtest ranges from difficult to impossible. Even high-level traders who are excellent at coding have a hard time context-switching from trading (or other tasks) back to writing code. This is exacerbated by the fact that running the backtest takes so much time. You can&amp;#039;t stay in a productive coding zone when you get interrupted by a backtest that takes an hour or more to run.&lt;/p&gt;&lt;h2&gt;Run the Backtest&lt;/h2&gt;&lt;p&gt;Depending on the markets and instruments you&amp;#039;re running a backtest on, this part will likely be the most time intensive. If it does NOT take a long time to run, you&amp;#039;re probably not scanning the entire market, thereby missing out on profitable trading opportunities.&lt;/p&gt;&lt;p&gt;If your backtesting platform doesn&amp;#039;t have the ability to scan the entire market, then - back to my analogy - you&amp;#039;re on horseback. Better than walking? Yes, and certainly faster than a sloth, but you&amp;#039;re not really in the same game as successful systems traders.&lt;/p&gt;&lt;h2&gt;Analyze Aggregate Metrics and Equity Curve&lt;/h2&gt;&lt;p&gt;A lot of traders get tangled up here in deciding which aggregate metrics to focus on. There are plenty to choose from and it&amp;#039;s tempting to try to find the &amp;quot;fanciest&amp;quot; one that supersedes all others. Rather than trying to find the perfect single metric, I look at a handful of metrics in this phase. (While important, how I choose my metrics is beyond the scope of this post. I&amp;#039;ll outline my exact process in a forthcoming message to my newsletter.)&lt;/p&gt;&lt;h2&gt;Decide to Trade It Or Return To Step 1&lt;/h2&gt;&lt;p&gt;Using whatever criteria you&amp;#039;ve settled on, you either move forward and trade the strategy as is, or you start the process over at step 1.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s this workflow in visual form - note that the pink boxes represent particularly time-consuming parts of the process:&lt;/p&gt;&lt;h2&gt;The Step You&amp;#039;re Missing&lt;/h2&gt;&lt;p&gt;This workflow is... fine. You&amp;#039;re on horseback competing against walkers. But there&amp;#039;s a very important phase of &lt;em&gt;my&lt;/em&gt; routine that is completely missing from this workflow. How important is it?&lt;/p&gt;&lt;p&gt;I call this the Filter Phase and I literally spend 95% of my overall backtesting time in this phase. It allows me to reduce the time I spend creating a strategy from &lt;em&gt;days and weeks&lt;/em&gt; to &lt;em&gt;minutes and hours&lt;/em&gt;. It&amp;#039;s the reason I&amp;#039;ve been able to create and trade 15+ (and counting) profitable strategies.&lt;/p&gt;&lt;h2&gt;The Filter Phase&lt;/h2&gt;&lt;p&gt;In order to add this step to your workflow, you&amp;#039;ll need to be able to make a couple of small adjustments to your overall routine. Your backtesting platform &lt;strong&gt;must have the following capabilities&lt;/strong&gt;, otherwise, you&amp;#039;re stuck on horseback:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Export a trade list from the completed backtest to a CSV file&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Add a custom column to each trade in the backtest&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;These features are not available in most backtesting platforms.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s say you have a strategy based on an 8 and 20-period moving average crossover. Or maybe you&amp;#039;ve created a &lt;a href=&quot;https://davemabe.com/create-a-profitable-chatgpt-trading-strategy/&quot; title=&quot;Create a Profitable ChatGPT Trading Strategy&quot;&gt;basic strategy using ChatGPT as I did&lt;/a&gt;. It works ok, but you want to improve it. You have a theory that, say, volume relative to average volume (a.k.a. Relative Volume) has an effect on the profitability of the strategy.&lt;/p&gt;&lt;p&gt;Most traders at this point will &amp;quot;guess and check&amp;quot; - that is, pick a number that seems reasonable to them for relative volume and then they&amp;#039;ll code it into the strategy such that the trade set you end up with in the backtest is &lt;strong&gt;a subset of the original&lt;/strong&gt;. This is a subtle mistake that costs traders a ton of time and resources.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what you NEED to be able to do in your backtesting platform. Instead of modifying the original strategy, you simply &lt;strong&gt;add a column to the trades&lt;/strong&gt; that end up in the resulting trade list. When you do this, the number of trades in your backtest DOES NOT change - you&amp;#039;re only adding additional columns that capture the numerical value of different filters that you MIGHT decide to filter on later on in your process.&lt;/p&gt;&lt;p&gt;For example, let&amp;#039;s say your original backtest produced a trade set like this:&lt;/p&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Entry Date&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Symbol&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Entry Price&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Profit&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-22&lt;/td&gt;&lt;td&gt;MSFT&lt;/td&gt;&lt;td&gt;306.94&lt;/td&gt;&lt;td&gt;100.00&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-21&lt;/td&gt;&lt;td&gt;META&lt;/td&gt;&lt;td&gt;231.96&lt;/td&gt;&lt;td&gt;50.00&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-20&lt;/td&gt;&lt;td&gt;AAPL&lt;/td&gt;&lt;td&gt;172.78&lt;/td&gt;&lt;td&gt;-75.00&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-19&lt;/td&gt;&lt;td&gt;TSLA&lt;/td&gt;&lt;td&gt;170.14&lt;/td&gt;&lt;td&gt;25.00&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;After you add your column, your new backtest looks the same as the original, but with a new column added that corresponds to the filter that you want to examine (see the column called &lt;strong&gt;Relative Volume&lt;/strong&gt;).&lt;/p&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;strong&gt;Entry Date&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Symbol&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Entry Price&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Profit&lt;/strong&gt;&lt;/td&gt;&lt;td&gt;&lt;strong&gt;Relative Volume&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-22&lt;/td&gt;&lt;td&gt;MSFT&lt;/td&gt;&lt;td&gt;306.94&lt;/td&gt;&lt;td&gt;100.00&lt;/td&gt;&lt;td&gt;1.50&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-21&lt;/td&gt;&lt;td&gt;META&lt;/td&gt;&lt;td&gt;231.96&lt;/td&gt;&lt;td&gt;50.00&lt;/td&gt;&lt;td&gt;0.47&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-20&lt;/td&gt;&lt;td&gt;AAPL&lt;/td&gt;&lt;td&gt;172.78&lt;/td&gt;&lt;td&gt;-75.00&lt;/td&gt;&lt;td&gt;2.55&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;2023-05-19&lt;/td&gt;&lt;td&gt;TSLA&lt;/td&gt;&lt;td&gt;170.14&lt;/td&gt;&lt;td&gt;25.00&lt;/td&gt;&lt;td&gt;0.24&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;p&gt;The important thing to note here is that &lt;strong&gt;you&amp;#039;re still including all the original trades&lt;/strong&gt; even when you&amp;#039;re confident you&amp;#039;ll be filtering some of them out when you eventually go live with the strategy. It&amp;#039;s not at all important to remove them from the trade list in the coding phase. When you have a Filter Phase in your backtest workflow it&amp;#039;s a piece of cake to remove them in this step.&lt;/p&gt;&lt;h2&gt;OK, So What&amp;#039;s the Big Deal?&lt;/h2&gt;&lt;p&gt;So you&amp;#039;ve got some extra columns in your backtest. How does that help?&lt;/p&gt;&lt;p&gt;Because you have the entire range of values for Relative Volume in your trade set, you can determine the optimal filter value &lt;strong&gt;without&lt;/strong&gt; having to run a bunch of time-consuming backtests to find your answer. You&amp;#039;ve gone from a brute force &amp;quot;guess and check&amp;quot; with at least hours between the guesses to learning and iterating on the knowledge you&amp;#039;ve gained in seconds.&lt;/p&gt;&lt;p&gt;The effect on your workflow is MASSIVE. This allows you to reduce the number of times you have to code and run a very time-consuming backtest from oftentimes several dozen to just... &lt;strong&gt;one time&lt;/strong&gt;. What once took days and weeks in backtesting, can now be accomplished in minutes and hours.&lt;/p&gt;&lt;p&gt;As you can imagine, this opens up entire worlds of trading strategies to test (and learn from!) really, really quickly.&lt;/p&gt;&lt;h2&gt;Rapid, Continuous Learning&lt;/h2&gt;&lt;p&gt;When you add the Filter Phase to your routine, you&amp;#039;ll get better and better at efficiently learning what makes a trading strategy tick. It allows you to go from answering a very simple question:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Should I trade this strategy? Yes or no?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;to a much more powerful and profitable question:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Under what circumstances should I trade this strategy with full size?&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;To answer that question, you must thoroughly understand your trading system. If you&amp;#039;re not using some form of the Filter Phase in your backtesting workflow, you&amp;#039;re riding horseback in a world of airplanes.&lt;/p&gt;&lt;p&gt;***&lt;/p&gt;&lt;p&gt;To learn more about how you can use this concept to create your own trading strategies, sign up for my free newsletter below where I regularly share my techniques for doing so.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Reader Question: How to Stop Getting Into Trades Too Early?</title>
        <link href="https://davemabe.com/reader-question-how-to-stop-getting-into-trades-too-early"/>
        <id>https://davemabe.com/reader-question-how-to-stop-getting-into-trades-too-early</id>
        <published>2023-05-03T12:07:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Fellow list member Thomas S. wrote in with the following trading problem &lt;em&gt;(shared with permission)&lt;/em&gt;:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;I am a full-time stock and futures trader for about 9 months now. Been trading 2 years. I have a subscription to Trade-Ideas.&lt;/p&gt;&lt;p&gt;My most frustrating problem is getting into stocks or futures too early. Being impatient. Think I just get excited.&lt;/p&gt;&lt;p&gt;&lt;br&gt;Thomas S&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;This is a really common problem - I suspect that almost every trader has experienced it. I&amp;#039;ve seen a couple of different forms of this situation.&lt;/p&gt;&lt;h2&gt;The Trader &amp;quot;Front Runs&amp;quot; the Setup&lt;/h2&gt;&lt;p&gt;You see a setup forming and the candle hasn&amp;#039;t quite finished yet to solidify the signal. But you go ahead and enter the trade anyway because you&amp;#039;re almost certain it&amp;#039;s going to trigger when the bar closes. You might even get a &lt;em&gt;better price&lt;/em&gt; than if you wait to be sure the signal is valid. How clever of you!&lt;/p&gt;&lt;p&gt;But the candle finally completes and... it turns out the signal wasn&amp;#039;t actually valid. The price didn&amp;#039;t quite close above the moving average, but just below it. Or maybe the low of the bar dipped quickly just below the bar closed which, according to your rules, invalidates the signal.&lt;/p&gt;&lt;p&gt;Whatever the situation - you ended up &lt;em&gt;anticipating&lt;/em&gt; the trade instead of waiting for it. Now you&amp;#039;re in a position that your system didn&amp;#039;t think you should be in. It was close, but it didn&amp;#039;t quite match the rules. That&amp;#039;s ok, you think, it&amp;#039;s close enough and you just treat it as if it was a valid signal. It&amp;#039;s probably ok since you got that nifty price improvement on the entry. In your mind maybe that will make up for the barely imperfect nature of the setup.&lt;/p&gt;&lt;p&gt;Of course, you know what happens next. The trade ends up being a loser - that you shouldn&amp;#039;t have been in to begin with. Your trading system worked just fine - you just shot yourself in the foot.&lt;/p&gt;&lt;p&gt;Often this habit starts forming when you front run the entry on a trade and it &lt;strong&gt;actually ends up being profitable&lt;/strong&gt;. Nothing is more dangerous than a &lt;strong&gt;profitable mistake&lt;/strong&gt; when you&amp;#039;re trading. Be very careful when this stroke of undeserved good luck occurs.&lt;/p&gt;&lt;h2&gt;The Trader Hasn&amp;#039;t Fully Defined the Trading System&lt;/h2&gt;&lt;p&gt;Another situation where I&amp;#039;ve seen this occur is when a trader &lt;em&gt;believes&lt;/em&gt; they are trading a system but the clearly defined rules for the system aren&amp;#039;t... so clearly defined. Losing trades are rationalized after the fact with a generic &amp;quot;I was too early on that one&amp;quot; excuse.&lt;/p&gt;&lt;p&gt;The question I always ask here is &amp;quot;How do you know you&amp;#039;re too early?&amp;quot; You need to be able to define what &amp;quot;too early&amp;quot; means just &lt;strong&gt;prior&lt;/strong&gt; to entering the trade. If you can&amp;#039;t do that then you&amp;#039;re not really trading a system. If it&amp;#039;s clear after the trade that you were too early, then work on defining exactly what that looks like just prior to entering the trade.&lt;/p&gt;&lt;p&gt;Don&amp;#039;t be fuzzy with entry rules - clearly define them ahead of time in a way that allows you to follow them in the moment during the trading day.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re trading a really fast system with a lot of trades, one thing that&amp;#039;s really helpful is to take a video of your screen as you trade and then review it after each day. Several years ago when computers weren&amp;#039;t super powerful I would set up software that would take screenshots every few seconds since a full video wasn&amp;#039;t technically feasible at the time. Reviewing these was very helpful in figuring out what I could do in the heat of the moment to better follow the system I was trading at the time. This allows you to become a neutral observer of yourself and creates a process of improving your trading workflow.&lt;/p&gt;&lt;h2&gt;The Solution to Entering Trades Too Early&lt;/h2&gt;&lt;p&gt;The best way I&amp;#039;ve found to convince yourself to stop entering trades too early is actually pretty simple: &lt;a href=&quot;https://davemabe.com/make-your-journal-compound-your-trading/&quot;&gt;keep a trading journal&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Start keeping track of your trades in a journal and categorize them by the trading system you&amp;#039;re using. Use an additional category for trades you entered too early. Then run a report on the too-early trades. It should be very clear exactly how much your too-early trading habit is costing you. When you see data like this in such a stark form, it will be screaming at you telling you exactly what you need to do to get better. It should be very, very motivating to change the habit.&lt;/p&gt;&lt;p&gt;If it&amp;#039;s not convincing enough and you still knowingly enter trades too early, then I would take a big step back and revisit your trading goals. Why do you trade? What is it going to allow you to ultimately do and what are your steps for getting there?&lt;/p&gt;&lt;h2&gt;Next Steps&lt;/h2&gt;&lt;p&gt;If you want mediocre trading results by taking orders from some Ferarri-driving trading guru, &lt;strong&gt;stop reading&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re ready to say &amp;quot;screw the gurus&amp;quot; and &lt;strong&gt;rely solely on yourself for your trading success&lt;/strong&gt;, then look no further than my free weekly email newsletter.&lt;/p&gt;&lt;p&gt;Every week I send one actionable tip that you can apply to your trading to create a process for continuous improvement.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Screw the Ferarri-driving trading gurus&lt;/strong&gt; by signing up below.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Handle Outliers in Your Backtest</title>
        <link href="https://davemabe.com/how-to-handle-outliers-in-your-backtest"/>
        <id>https://davemabe.com/how-to-handle-outliers-in-your-backtest</id>
        <published>2023-04-24T13:30:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Outliers are a tricky problem with backtesting. It&amp;#039;s not uncommon to see a backtest consisting of nice, consistent profits and reasonable losses but then a tiny handful of trades that are way, way out of the range. Take this backtest which I&amp;#039;m using a scatter plot to visualize &lt;a href=&quot;https://davemabe.com/the-best-way-to-visualize-your-backtest/&quot; title=&quot;The Best Way to Visualize Your Backtest&quot;&gt;which is one of my favorite ways to view a backtest&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;There are several thousand trades in this backtest, and 99.8% of them are within a very, very tight range and can be considered &amp;quot;in line&amp;quot; with my underlying premise for this trading strategy.&lt;/p&gt;&lt;p&gt;But look at the tiny sliver of trades that are in the top part of the plot:&lt;/p&gt;&lt;p&gt;Those outsized profits are very much outside of the norm compared to the other trades in the backtest. How you handle these can make a &lt;strong&gt;huge difference&lt;/strong&gt; in your trading results.&lt;/p&gt;&lt;p&gt;For example, if you&amp;#039;re coming up with a model to apply to the strategy and determining which levels to use for certain parameters by an optimization process, including outliers in your training set could yield &lt;strong&gt;very different thresholds&lt;/strong&gt; than excluding them.&lt;/p&gt;&lt;h2&gt;An Extreme Backtest with a Huge Outlier&lt;/h2&gt;&lt;p&gt;In fact, I remember a rather extreme example of this. I was testing a really promising trading strategy that I was really excited about trading live as soon as I could. The backtest looked great and I had all my filters dialed in (or so I thought). This thing was ready to go live and I was just putting the final touches on what sizing I would use. Then I look at the scatterplot and noticed a single outlier. It was WAY out there, but it was just a single trade. No big deal right? Just out of curiosity, I took one final look at the model but excluding that one outsized trade and... uh-oh. Picture that same scatterplot above, but with a single trade t&lt;strong&gt;en times as profitable&lt;/strong&gt; as the largest trade at the top of the chart.&lt;/p&gt;&lt;p&gt;It turns out that if I included that single outlying trade, one of my predictive variables was strongly &lt;strong&gt;positively&lt;/strong&gt; correlated with profit, but then when you excluded that single trade in the backtest (just that one!) from the training data, that same variable was &lt;strong&gt;negatively&lt;/strong&gt; correlated with profit! Talk about frustrating!&lt;/p&gt;&lt;p&gt;So what do you do in this case - exclude or include the outliers? When I looked closer into this extreme case, this one single trade was accounting for a large portion of the trading profits. It was still profitable without the trade but from my modeling perspective, it was fundamentally a different trading strategy without the trade.&lt;/p&gt;&lt;h2&gt;A Gift Disguised as a Problem&lt;/h2&gt;&lt;p&gt;As you gain more experience with trading and backtesting, you start to recognize these frustrating conundrums as really great learning opportunities in disguise. They force you to confront your assumptions head-on and dig deeper. Why is this trade in the backtest? Is it fundamentally in line with my original trading thesis about why this strategy works? Or is it just randomly happening to match my entry criteria? The bigger question, though: if this outsized &amp;quot;happy accident&amp;quot; appeared in my backtest, could there be an &amp;quot;unhappy&amp;quot; accident in the future with a very large loss?&lt;/p&gt;&lt;p&gt;This situation forced me to confront these hard questions for this particular strategy, but it also gave me a path toward coming up with a framework for handling this situation going forward.&lt;/p&gt;&lt;h2&gt;My Framework for Outliers&lt;/h2&gt;&lt;p&gt;Take the original scatterplot:&lt;/p&gt;&lt;p&gt;Notice that in this case, there are several outliers and they&amp;#039;re all profitable. The fact that there are several AND they&amp;#039;re all in the same direction is a good thing. If there were just one that would worry me a bit more.&lt;/p&gt;&lt;p&gt;Take the same backtest, but let&amp;#039;s say that some of those outliers are negative and some are positive.&lt;/p&gt;&lt;p&gt;Now let&amp;#039;s compare the equity curves for the two strategies:&lt;/p&gt;&lt;p&gt;They&amp;#039;re essentially the same. The other thing to note here is that ANY metric you happen to be using to compare strategies would look essentially identical. Profit factor, win rate, CAGR, total profit, equity curve quality, expectancy, Sharpe ratio, &lt;a href=&quot;https://en.wikipedia.org/wiki/Sortino_ratio&quot;&gt;Sortino ratio&lt;/a&gt; - they all would tell you that the strategies are basically the same.&lt;/p&gt;&lt;p&gt;In general, though, I&amp;#039;d be a &lt;strong&gt;lot more worried about this situation&lt;/strong&gt;. Why? My concern is that maybe my underlying thesis isn&amp;#039;t as strong as I thought it was. There&amp;#039;s a good chance there&amp;#039;s something I&amp;#039;m missing and that&amp;#039;s what would keep me up at night until I solved it.&lt;/p&gt;&lt;p&gt;I would really think hard about whether these negative outliers violate or nullify my original trading thesis about &lt;strong&gt;why the trading strategy works&lt;/strong&gt;. In general, I&amp;#039;d be worried that I didn&amp;#039;t have a deep enough understanding of the trading edge for this particular strategy and that I was just &amp;quot;blindly following the data&amp;quot; on some level, which can be dangerous.&lt;/p&gt;&lt;h2&gt;What&amp;#039;s the Big Deal?&lt;/h2&gt;&lt;p&gt;You might wonder: why be so concerned? The equity curves are so similar - what&amp;#039;s the big deal about the negative outliers? They&amp;#039;re dwarfed by the winning trades - so much so that they&amp;#039;re barely a blip on the radar when you step back a bit.&lt;/p&gt;&lt;p&gt;It could be a legitimate response when you confront these outliers to still go forward and trade the strategy as-is. But it&amp;#039;s important to think about them and expect them going forward. It&amp;#039;s much better to confront these &lt;strong&gt;before&lt;/strong&gt; going live with a strategy rather than after.&lt;/p&gt;&lt;p&gt;Imagine the difference between knowing what outliers are possible beforehand, versus trading it unknowingly, sizing up significantly over time, and THEN having an outsized losing trade that you weren&amp;#039;t prepared for. &lt;em&gt;That&lt;/em&gt; situation could be catastrophic.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Create a Profitable ChatGPT Trading Strategy</title>
        <link href="https://davemabe.com/create-a-profitable-chatgpt-trading-strategy"/>
        <id>https://davemabe.com/create-a-profitable-chatgpt-trading-strategy</id>
        <published>2023-04-17T13:16:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Unless you&amp;#039;ve been hiding under a rock for several weeks, you&amp;#039;re probably aware of ChatGPT, the chat-based AI service from Open AI. It can do some pretty powerful things, and I use it a lot in my daily tasks. For example, I&amp;#039;ve replaced 60+% of my Google searches with queries of ChatGPT and it&amp;#039;s been a huge time saver.&lt;/p&gt;&lt;p&gt;But can it create a &lt;strong&gt;trading strategy&lt;/strong&gt;? And not just any trading strategy, but one that&amp;#039;s &lt;strong&gt;actually profitable&lt;/strong&gt;?&lt;/p&gt;&lt;p&gt;I&amp;#039;m currently trading 15 strategies live that I&amp;#039;ve created outside of ChatGPT and I&amp;#039;ve helped dozens of traders create their own profitable trading strategies. After using ChatGPT to create another strategy which I&amp;#039;ll show below, I&amp;#039;m convinced it can be used to:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Reduce the amount of time and work it takes to create a trading strategy&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Give solid directions to help you improve your trading strategy&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Read on to see how I used it to create a simple, profitable trading strategy and be sure to subscribe to &lt;a href=&quot;https://davemabe.com/newsletter/&quot;&gt;my free email newsletter&lt;/a&gt; that teaches you how to come up with your OWN trading strategy.&lt;/p&gt;&lt;h2&gt;Initial Prompts to Create a Trading Strategy&lt;/h2&gt;&lt;p&gt;I first asked ChatGPT a very simple question:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;My Prompt: Can you help me come up with a trading strategy to backtest?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;It responded in its typical enthusiastic fashion and suggested a &lt;strong&gt;Moving Average Crossover trading system&lt;/strong&gt;:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;ChatGPT&lt;/strong&gt;: Of course! I&amp;#039;ll provide you with a simple moving average crossover strategy to backtest. This strategy is based on two moving averages: a short-term (fast) moving average and a long-term (slow) moving average.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the basic outline of the moving average crossover strategy:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Choose a financial instrument&lt;/strong&gt;: Pick a financial instrument to trade, such as stocks, ETFs, or currency pairs.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Select time frame&lt;/strong&gt;: Choose a time frame for your analysis, such as daily, hourly, or minute-by-minute data.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Define the moving averages&lt;/strong&gt;: Select the lengths of the two moving averages. A common choice is the 50-day (short-term) and 200-day (long-term) simple moving averages (SMAs).&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Entry and exit signals&lt;/strong&gt;:&lt;br&gt;a. &lt;strong&gt;Buy signal&lt;/strong&gt;: When the short-term moving average crosses above the long-term moving average, it&amp;#039;s a signal to buy (go long).&lt;br&gt;b. &lt;strong&gt;Sell signal&lt;/strong&gt;: When the short-term moving average crosses below the long-term moving average, it&amp;#039;s a signal to sell (go short or exit a long position).&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Risk management&lt;/strong&gt;: Define your risk management rules, such as setting stop losses and position sizing, to protect your capital.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Backtesting&lt;/strong&gt;: Use historical price data to simulate the performance of your strategy over a specified period. This will help you evaluate the strategy&amp;#039;s profitability and risk.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;You&amp;#039;ll notice that although the first attempt is a very common strategy that isn&amp;#039;t unique at all, the overall plan here is not that bad. All the steps are things that you&amp;#039;ll eventually need to do to create your own trading strategy. I wanted something a lot more unique than this though. Here was my next prompt:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;My Prompt: That one seems a little simple. Can you suggest another entry signal that is more unique?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;strong&gt;ChatGPT Response&lt;/strong&gt;: Sure, I can suggest a more unique entry signal using the RSI (Relative Strength Index) indicator combined with Bollinger Bands. This strategy aims to identify potential overbought and oversold conditions for better entry and exit points.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an outline of this trading strategy:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Choose a financial instrument&lt;/strong&gt;: Pick a financial instrument to trade, such as stocks, ETFs, or currency pairs.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Select time frame&lt;/strong&gt;: Choose a time frame for your analysis, such as daily, hourly, or minute-by-minute data.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Define the indicators&lt;/strong&gt;:&lt;br&gt;a. &lt;strong&gt;Bollinger Bands&lt;/strong&gt;: Typically, Bollinger Bands are calculated using a 20-day simple moving average (SMA) and a 2 standard deviation range. You can adjust these parameters based on your preferences.&lt;br&gt;b. &lt;strong&gt;RSI&lt;/strong&gt;: The Relative Strength Index is a momentum oscillator that measures the speed and change of price movements. It ranges from 0 to 100. A common setting for RSI is a 14-day period.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Entry and exit signals&lt;/strong&gt;:&lt;br&gt;a. &lt;strong&gt;Buy signal&lt;/strong&gt;: Look for a situation where the price touches or goes below the lower Bollinger Band and the RSI value is below 30 (oversold condition). This may indicate a potential buying opportunity.&lt;br&gt;b. &lt;strong&gt;Sell signal&lt;/strong&gt;: Look for a situation where the price touches or goes above the upper Bollinger Band and the RSI value is above 70 (overbought condition). This may indicate a potential selling opportunity.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Risk management&lt;/strong&gt;: Define your risk management rules, such as setting stop losses and position sizing, to protect your capital.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Backtesting&lt;/strong&gt;: Use historical price data to simulate the performance of your strategy over a specified period. This will help you evaluate the strategy&amp;#039;s profitability and risk.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;This suggestion is a lot more unique and uses a combination of &lt;em&gt;two&lt;/em&gt; indicators to form an entry signal, a break of the &lt;strong&gt;Bollinger Band&lt;/strong&gt; in addition to a relatively extreme value for the &lt;strong&gt;Relative Strength Index&lt;/strong&gt;. At this point I&amp;#039;m still skeptical, but I decided this was good enough for my purposes, so I decided to continue with this basic strategy.&lt;/p&gt;&lt;h2&gt;Backtesting the ChatGPT Trading Strategy&lt;/h2&gt;&lt;p&gt;As instructed, I chose my financial instrument to trade. My specialty is trading in US equities, so my plan would be to eventually trade the strategy there, but at this stage of my research into a new strategy, I test it on SPY to get a rough sense of how many trades the system will take, how profitable the trades are, etc. This saves time and you can iterate quickly before applying the strategy to a larger universe.&lt;/p&gt;&lt;p&gt;I mostly trade intraday, so I started on the 5 minute timeframe but after some quick testing decided to move to the 15 minute timeframe for this type of strategy. I chose to focus just on the long side for now. How long will I hold the trades? This type of mean reversion trading system needs some time for the trades to play out, so the idea would be to watch for these entries at the beginning of the day, enter the trades, and then hold until just before the close. Here&amp;#039;s the first version of the strategy. It has 628 trades with a profit factor of 1.1 and a win rate of 50.6%. While it is &lt;em&gt;technically&lt;/em&gt; profitable, it&amp;#039;s nowhere near anything that I&amp;#039;d like to trade.&lt;/p&gt;&lt;p&gt;So I asked ChatGPT how I could improve it.&lt;/p&gt;&lt;h2&gt;Improving the Trading Strategy&lt;/h2&gt;&lt;blockquote&gt;&lt;p&gt;My Prompt: OK, I&amp;#039;m looking at the Bollinger Band/RSI system you suggested. I&amp;#039;m getting in early in the day and exiting just before the close. It&amp;#039;s not really profitable. What filters do you suggest I use to take fewer but more profitable trades?&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Here&amp;#039;s how ChatGPT responded:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;ChatGPT&lt;/strong&gt;: It’s essential to fine-tune your trading strategy to achieve better profitability. Here are some filters you can consider adding to the Bollinger Band/RSI system to increase the likelihood of more profitable trades:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Trend confirmation&lt;/strong&gt;: Add a moving average or another trend-following indicator to confirm the overall trend direction. For example, you can use a 200-day simple moving average (SMA). Only take long trades when the price is above the 200-day SMA (uptrend) and short trades when the price is below the 200-day SMA (downtrend).&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;RSI level adjustment&lt;/strong&gt;: Adjust the RSI overbought and oversold levels to increase the selectivity of your entry signals. For example, you can use 80 and 20 instead of 70 and 30. This way, you’ll only enter trades when the market is more extremely overbought or oversold.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Bollinger Band width filter&lt;/strong&gt;: To avoid trading in sideways or consolidating markets, you can add a filter based on the width of the Bollinger Bands. Calculate the Bollinger Bandwidth as the difference between the upper and lower bands divided by the middle band (20-day SMA). Only take trades when the Bollinger Bandwidth is above a certain threshold, indicating higher volatility and stronger trends.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Volume confirmation&lt;/strong&gt;: Add a volume filter to confirm the strength of the price movements. For example, only take trades when the volume is above the 50-day moving average of volume. This helps to filter out potential false breakouts or weak price movements.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Time of day filter&lt;/strong&gt;: Limit your trading to specific hours of the day when the market tends to be more active and have higher liquidity. For example, you can focus on the first two hours after the market opens and the last two hours before the market closes, as these periods often experience higher volatility.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;Support and resistance levels&lt;/strong&gt;: Incorporate support and resistance levels into your trading strategy. Look for price action near key support and resistance levels, as they can act as a confirmation for the Bollinger Band/RSI signals. For instance, a bounce off a support level combined with an oversold RSI signal could strengthen the case for a long trade.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;The trend confirmation suggestion is probably the best route to take, but for simplicity&amp;#039;s sake, I chose the RSI level adjustment. Its original suggestion was to use an oversold threshold of 30 for the RSI. I took its advice and changed the threshold to 20 which should yield fewer trades since the oversold value would be far more extreme.&lt;/p&gt;&lt;p&gt;ChatGPT Trading Strategy Version 0.2 of the strategy at first glance looks worse, but it&amp;#039;s actually &lt;strong&gt;quite a bit better&lt;/strong&gt;. There are over 90% fewer trades and the trades that remain are more profitable. When you start applying this to a larger universe that&amp;#039;s going to make a big difference.&lt;/p&gt;&lt;p&gt;That&amp;#039;s exactly what I did next. Instead of just SPY for my proof of concept, I applied it to one of my lists of 450 symbols. Here are the results for the RSI threshold of 30 which I&amp;#039;m calling TradeGPT Trading Strategy version 0.3:&lt;/p&gt;&lt;p&gt;Starting to look not bad. There are a TON of trades in there though, so let&amp;#039;s use a more extreme level of RSI to get rid of a lot of the noise as ChatGPT suggested above.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the same strategy with a threshold of 20, ChatGPT Trading Strategy version 0.4:&lt;/p&gt;&lt;p&gt;While this strategy is not quite tradeable yet, it&amp;#039;s pretty impressive progress for just a few minutes with ChatGPT! Some traders won&amp;#039;t ever get to even this point with a trading strategy and now you can get to a very good starting point really quickly.&lt;/p&gt;&lt;h2&gt;Trend Confirmation Filter&lt;/h2&gt;&lt;p&gt;Trends, of course, can mean different things to different traders. My goal here is to come up with a strategy as quickly as possible, so I chose a filter that would be quick to implement and test. The filter is &lt;strong&gt;ATRs away from the 200 period moving average&lt;/strong&gt;. So in pseudocode:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;(Entry - MA200) / ATR&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Where MA200 = 200 period moving average and ATR = average true range. Why use average true range and not just distance? Imagine a high priced stock like $META (currently $239) versus a low priced stock like, say $PTON (currently $9.26). A $1 move in $PTON is going to be a lot more dramatic than a $1 move in $META. Using ATR like this normalizes that movement. When I looked at this filter, I found that the further away the price was from the moving average, the more reliable the signal seemed to be:&lt;/p&gt;&lt;p&gt;And remember, the dark line is lower, but it has a lot fewer trades so the strategy is significantly improved. In general, I&amp;#039;m looking for a smoother equity curve and more efficiency so although the dark green curve is lower, it&amp;#039;s FAR better than the top one because it has almost the same amount of profit with just a third of the trades.&lt;/p&gt;&lt;h2&gt;Time Of Day Filter&lt;/h2&gt;&lt;p&gt;Another suggestion from ChatGPT was to look at the time of day that the signal occurred. I know from experience that this is typically a good suggestion. Entries too late in the day won&amp;#039;t give the trade enough time to play out before the close and I suspect that entries too close to the open could easily turn out to be false positives.&lt;/p&gt;&lt;p&gt;Sure enough, it looks like skipping the first bar of the day makes sense as predicted by ChatGPT - notice the dark green curve continuing to smooth out:&lt;/p&gt;&lt;h2&gt;RSI Level Adjustment&lt;/h2&gt;&lt;p&gt;ChatGPT suggested looking at the RSI (Relative Strength Index) level for the signal. Let&amp;#039;s see if a more extreme level makes sense. Again, at first glance, it doesn&amp;#039;t seem that different but it&amp;#039;s almost the same profit with only 25% of the trades. The quality of the equity curve is getting better and better.&lt;/p&gt;&lt;h2&gt;Support and Resistance Levels&lt;/h2&gt;&lt;p&gt;Like &amp;quot;trend&amp;quot;, support and resistance are often in the eye of the beholder. It would be impossible to identify exact, custom support and resistance levels for each of the hundreds of trades remaining in this backtest.&lt;/p&gt;&lt;p&gt;I want to be completely automated, so what I would normally do at this point is to start reviewing a lot of charts to try to detect a pattern of general support and resistance that could be tested across all the trades. That won&amp;#039;t work for the purposes of this experiment - I&amp;#039;m trying to come up with a &lt;strong&gt;profitable strategy using ChatGPT as quickly as I can&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;To capture a lot of what ChatGPT is suggesting here with as little time as possible, I decided to look at the range of the previous day. For example, if the entry is below yesterday&amp;#039;s low then it might be beyond any support. If it&amp;#039;s near or in yesterday&amp;#039;s range, it could be more likely that it&amp;#039;s running into support which would make it more likely to revert to the mean. To quickly see this in aggregate across a backtest, I created a new data point in each trade to examine. I&amp;#039;m calling this &lt;strong&gt;Position in Yesterday&amp;#039;s Range&lt;/strong&gt;:&lt;/p&gt;&lt;pre&gt;&lt;code&gt;(Entry - Yesterday&amp;#039;s Low) / (Yesterday&amp;#039;s High - Yesterday&amp;#039;s Low) * 100&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;A value of 100 means it&amp;#039;s right at Yesterday&amp;#039;s High. A value of 0 means it&amp;#039;s right at Yesterday&amp;#039;s Low. A value of -100 means it&amp;#039;s below Yesterday&amp;#039;s Low by an amount exactly equal to Yesterday&amp;#039;s Range (Yesterday&amp;#039;s High - Yesterday&amp;#039;s Low).&lt;/p&gt;&lt;p&gt;It turns out there is a threshold that makes sense. The entry price needs to be beyond the low from yesterday, but not by an excessive amount.&lt;/p&gt;&lt;p&gt;The equity curve is smoother still - more trades without sacrificing that much overall profit. It&amp;#039;s starting to look like something that might be worth trading.&lt;/p&gt;&lt;p&gt;To learn how to create your own trading strategies, sign up for &lt;a href=&quot;https://davemabe.com/newsletter/&quot;&gt;my free trading course&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Only Time Taking Partials Makes Sense</title>
        <link href="https://davemabe.com/the-only-time-taking-partials-makes-sense"/>
        <id>https://davemabe.com/the-only-time-taking-partials-makes-sense</id>
        <published>2023-04-14T15:08:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Many of you know how I feel about &lt;a href=&quot;https://davemabe.com/should-you-ever-take-partials/&quot;&gt;taking partial profits&lt;/a&gt; in winning trades (you probably shouldn&amp;#039;t!). To put it more mildly, you should recognize the tradeoff you&amp;#039;re making when you take a partial profit. It&amp;#039;s not free.&lt;/p&gt;&lt;p&gt;If more traders acknowledged what you&amp;#039;re giving up, I believe you&amp;#039;d see a LOT fewer of them taking partials. Since writing that post I&amp;#039;ve thought a lot about it as I trade and I&amp;#039;ve found that there&amp;#039;s one important situation where I actually ENCOURAGE traders to TEMPORARILY take partial profits.&lt;/p&gt;&lt;p&gt;So when do I encourage it? When you&amp;#039;re &lt;a href=&quot;https://davemabe.com/my-approach-to-trading-with-bigger-size/&quot;&gt;stepping up your trade size&lt;/a&gt;. Some traders have a really difficult time sizing up even when all their results tell them they should be. There&amp;#039;s usually a psychological barrier that&amp;#039;s hard to break through. That level is different for almost all traders. Some traders will simply never get past it.&lt;/p&gt;&lt;p&gt;If a trader is having difficulty sizing up like they know they should, I&amp;#039;ll often suggest temporarily taking some partial profits in some of the winning trades. This can be an important step that allows them to move through the psychological barrier that accompanies trading with bigger size. I always include the caveat that this should be treated as an isolated part of a bigger plan to trade with more size and quickly return to more efficient partial-free trading.&lt;/p&gt;&lt;p&gt;Related posts:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://davemabe.com/should-you-ever-take-partials/&quot;&gt;Should you EVER take Partials?&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/my-approach-to-trading-with-bigger-size/&quot;&gt;My Approach to Trading with Bigger Size&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What's the Trading Equivalent of &quot;Playing Up&quot;?</title>
        <link href="https://davemabe.com/whats-the-trading-equivalent-of-playing-up"/>
        <id>https://davemabe.com/whats-the-trading-equivalent-of-playing-up</id>
        <published>2023-04-12T18:38:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I went cycling recently on what&amp;#039;s generally known as the fastest and most challenging ride in town. I used to be a regular on this ride but for various reasons it&amp;#039;s been several years since I&amp;#039;ve done it. Although I stayed with the group for the whole ride, I spent the last half trying as hard as I could to stay attached to the group. There were &lt;strong&gt;plenty&lt;/strong&gt; of moments when I didn&amp;#039;t think I&amp;#039;d make it to the end.&lt;/p&gt;&lt;p&gt;At the finish, the first thing I thought was &amp;quot;This is exactly what I needed.&amp;quot; A good friend of mine who was an excellent cyclist used to say &amp;quot;It&amp;#039;s good to get your teeth kicked in every now and then.&amp;quot; He meant that it&amp;#039;s always good to ride with people who are way better than you. It will be uncomfortable and you&amp;#039;ll be at your limit the whole time, but your fitness will improve dramatically if you make a habit of doing this. You&amp;#039;ll achieve a fitness level that&amp;#039;s simply not possible to reach alone. This is generally known as &amp;quot;playing up.&amp;quot;&lt;/p&gt;&lt;p&gt;Note that this only works when the people you&amp;#039;re playing with are in the same ballpark as you. That is, the current gap between their abilities and yours can&amp;#039;t be too large or this dynamic won&amp;#039;t work for them or you. It&amp;#039;s important that the gap be not so large that you don&amp;#039;t believe you can hang if you work hard enough.&lt;/p&gt;&lt;p&gt;How does this relate to trading? The first thing to point out is that if you trade in isolation, you can improve but unless you find a way to interact with better traders, then you will improve at a much slower rate.&lt;/p&gt;&lt;p&gt;What&amp;#039;s the equivalent of &amp;quot;playing up&amp;quot; for traders? I&amp;#039;d like to hear how readers approach this and I&amp;#039;ll add to a future post.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Earnings Season Starts Soon - Are You Ready?</title>
        <link href="https://davemabe.com/earnings-season-starts-soon-are-you-ready"/>
        <id>https://davemabe.com/earnings-season-starts-soon-are-you-ready</id>
        <published>2023-04-11T13:18:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;How much attention do you pay to &lt;a href=&quot;https://davemabe.com/earnings-season/&quot;&gt;earnings season&lt;/a&gt;? For years I basically ignored it as it was too close to &amp;quot;news&amp;quot; for my liking. I&amp;#039;ve changed my tune in recent years after doing some research on earnings announcements and how they affect some of my trading strategies. For some of my models there was no effect but on others, especially some of my gap models, the effect was pretty strong - enough to start incorporating some logic to modify them.&lt;/p&gt;&lt;p&gt;One thing that&amp;#039;s always struck me about &lt;a href=&quot;https://davemabe.com/earnings-season/&quot;&gt;earnings season&lt;/a&gt; is that unlike a hunting season when there&amp;#039;s a defined start and end date, there is no general consensus on when earnings season starts and finishes. The other surprising thing about earnings is just how much the frequency of earnings announcements changes throughout the year. Here&amp;#039;s a chart for the distribution of announcements. The differences are pretty staggering.&lt;/p&gt;&lt;p&gt;Once I realized that earnings were worth looking at for some of my models, I now incorporate them into what I do and it&amp;#039;s one of the things I look at for each new model I research. In fact, I now try to schedule my vacations around earnings seasons.&lt;/p&gt;&lt;p&gt;How much do you use earnings announcements in your trading? Do you ignore earnings or is it a vital part of your trading edge? I&amp;#039;m interested to hear what you think.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Best Way to Visualize Your Backtest</title>
        <link href="https://davemabe.com/the-best-way-to-visualize-your-backtest"/>
        <id>https://davemabe.com/the-best-way-to-visualize-your-backtest</id>
        <published>2023-04-10T15:12:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When backtesting, it&amp;#039;s easy to get lost in the data. What parameters lead to the most profitable overall strategy? Win rate? Profit factor? Expectancy? All these are, of course, important values to consider and often the most efficient way to backtest is to quickly compare these aggregate metrics.&lt;/p&gt;&lt;p&gt;While these summary stats are important, they necessarily hide a lot of the details about what&amp;#039;s contributing to your strategy. The best way to truly understand your strategy is to examine every trade on its own stock chart. With hundreds of trades in a backtest, though, that can be time-consuming and wasteful since most of the trades won&amp;#039;t yield any new insight.&lt;/p&gt;&lt;p&gt;You can use an equity curve to visualize these by looking for bumps in the curve, but it will be far more subtle and harder to identify. If there are a lot of trades in your backtest, these bumps might be impossible to detect.&lt;/p&gt;&lt;p&gt;A better way to very quickly visualize all your trades in a backtest is using a scatterplot chart. This allows you to see the outliers at a glance - your eyes are quickly drawn to them. Instead of looking through every chart, you can focus on the trades that are most likely to lead you to insights to improve your trading strategy.&lt;/p&gt;&lt;p&gt;Now that you&amp;#039;ve identified the outliers, it&amp;#039;s time to figure out what to do about them. More on that soon.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What are your Piano Scales?</title>
        <link href="https://davemabe.com/what-are-your-piano-scales"/>
        <id>https://davemabe.com/what-are-your-piano-scales</id>
        <published>2022-08-31T12:13:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In &lt;a href=&quot;https://amzn.to/3e78zJ5&quot;&gt;Talent: How to Identify Energizers, Creatives, and Winners Around the World&lt;/a&gt; recently penned by Tyler Cowen and Daniel Gross, Cowen suggests a simple interview question that I’ve been obsessed with ever since I read it several weeks ago:&lt;/p&gt;&lt;p&gt;“What is it you do to practice that is analogous to how a pianist practices scales?”&lt;/p&gt;&lt;p&gt;The answer that immediately came to mind was from much earlier in my career as a budding developer and equities trader in the 2000s: I switched to a &lt;a href=&quot;https://www.daskeyboard.com/daskeyboard-4-ultimate/&quot;&gt;computer keyboard without labels on the keys&lt;/a&gt;. This change forced me to become a better and faster typist because I was wasting time glancing at the keyboard to find a key. This decision has paid off: the efficiency gains have compounded over the years by, I believe, permanently tilting my productivity curve upwards.&lt;/p&gt;&lt;p&gt;Although I still use the keyboard, that response no longer seems sufficient. Now that I’m managing developers and not writing a ton of code, what are my current “piano scales” that I practice to get better at leading teams? It’s a puzzling question for my present role.&lt;/p&gt;&lt;p&gt;As my obsession persisted, I started presenting Tyler’s question to various folks that I interact with regularly to see how they answer it. I started by giving my team of developers a few days to prepare before we discussed it in our weekly meeting. I asked my good friend Dallas, a successful high-end custom jeweler; the eccentric CEO that I report to at Trade-Ideas; the co-founder and trading coach of a proprietary trading firm; a partner in the private equity space; the lead engineer at a sports technology company; and, of course, I asked Tyler Cowen himself. The responses were as varied as they were interesting.&lt;/p&gt;&lt;h2&gt;Tyler Cowen&lt;/h2&gt;&lt;p&gt;In classic fashion, Tyler Cowen responded to my email within a couple of hours. “Writing every day. Debating arguments every day. Shooting basketball when the weather allows!” Having followed Tyler’s work for some time I could have guessed the first two, but shooting baskets was a surprise. He said basketball was physical activity and a way to clear his head, but “it also teaches me that I can be doing something for a long time and still be bad at it!”&lt;/p&gt;&lt;h2&gt;Dallas Pridgen&lt;/h2&gt;&lt;p&gt;I was particularly looking forward to hearing Dallas’ response. Although he downplays his success, &lt;a href=&quot;https://dallaspridgenjewelry.com/&quot;&gt;Dallas Pridgen Jewelry&lt;/a&gt; is well known and he often is commissioned to make custom pieces for movie productions where a trinket plays an important role in the plot. His response to the question was immediate and confident: “I don’t do anything like that: I just do it.” At first, I thought he was skirting the question - surely he practiced countless hours over the years to master his craft. The more I talked to him and thought about the unique projects he’s told me about over the years, I realized that the real value that Dallas provides is not the literal metalworking in making a piece of jewelry - it’s his original design for each piece that uniquely commemorates a moment or relationship. The “piano scales” for Dallas’ work is the process itself and the experience of designing each project continually expands his capacity for future designs.&lt;/p&gt;&lt;h2&gt;Joan Mabe&lt;/h2&gt;&lt;p&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Joan_Nesbit&quot;&gt;My wife&lt;/a&gt; is a vigorously competitive person having coached herself to a long career as a professional runner culminating in an Olympic team. She’s now a &lt;a href=&quot;https://nc.milesplit.com/articles/317125/chapel-hills-coach-mabe-wins-nchsaa-coach-of-the-year-award&quot;&gt;prominent high school coach&lt;/a&gt; in Chapel Hill with multiple state titles. I was particularly interested in her unique “piano scales” during her time as a competitive runner. She quickly responded with “a running log with the red miles highlighted.” What she described was very different than the modern, automated process of tracking runs with a GPS watch on Strava. Each day she kept precise details of all aspects of her hard workout days and easy recovery runs. The “red miles” were the intentionally hard miles - an interval workout or race - and were tallied separately. The real meat of the log, though, was recording how her body responded to the red miles, constantly gauging the tradeoff between maximal fitness and injury. She credits her extreme attention to her body’s reaction to workouts to her long, injury-free, successful running career.&lt;/p&gt;&lt;h2&gt;The Development Staff at Trade-Ideas&lt;/h2&gt;&lt;p&gt;Programming software lends itself well to the piano scales question so I was looking forward to this discussion at our team meeting. Phil, the most senior developer in the group, described doing small programming tasks using newer languages that he wanted to be more proficient with. He regularly creates small demos for no other purpose than his own practice and learning. For example, he created a Javascript demo of a ball bouncing around in a room in three dimensions. Another developer, Tim, enjoys “pair programming” where one developer partners with another to share screens and simultaneously code in the same file. Seeing how another proficient developer tackles a technical problem is often very enlightening and the learning goes both ways even when one programmer in the pair is significantly less experienced. Ron, an experienced developer, regularly enters programming contests online to keep his skills current and sharp.&lt;/p&gt;&lt;h2&gt;Todd Bolon&lt;/h2&gt;&lt;p&gt;My friend Todd is a partner at a private equity firm. He took an uncharacteristically long time to respond to my email - further evidence of the difficulty of the question.&lt;/p&gt;&lt;p&gt;“I think I don&amp;#039;t like to practice - I like to learn by doing and will do the minimum of practice (e.g., school) to get where I want to be.  Maybe that has influenced where I have gone with my career - things that you can get good at by doing is where I ended up.”&lt;/p&gt;&lt;p&gt;Although Todd has deep technical experience, he has long since leveled up to consulting with leaders of companies who are managing technical organizations. This is several layers removed from a specific craft that would lend itself to improvement by the direct, deliberate practice of piano scales.&lt;/p&gt;&lt;h2&gt;Mike Bellafiore&lt;/h2&gt;&lt;p&gt;Mike is the founder of &lt;a href=&quot;https://smbcap.com/&quot;&gt;SMB Capital&lt;/a&gt;, a successful proprietary trading firm in NYC. I know from my years as an automated strategy trader that if there is ONE group that has internalized deliberate practice as a requirement for success, it’s traders. Having mentored many traders over the years in his firm, Mike made an interesting observation:&lt;/p&gt;&lt;p&gt;“The scales probably should be different based on experience. Experienced traders would have a shorter list of scales that take less time. Newer traders would need to do more thorough scales and more of them until they build more skill.”&lt;/p&gt;&lt;p&gt;I can confirm this idea as I think back on my improvement arc as a trader over the years. I’ve &lt;a href=&quot;https://davemabe.com/make-your-journal-compound-your-trading/&quot;&gt;kept a thorough trading journal&lt;/a&gt; to keep score of my trading strategies for years and it’s been critical for success. Mike also rattled off several other routine practices he recommends for new traders: pre-market prep, a daily report card, categorizing trades by style, mindfulness training, optimizing workflows with technology, and collaborating with other traders.&lt;/p&gt;&lt;h2&gt;Brett Steenbarger&lt;/h2&gt;&lt;p&gt;&lt;a href=&quot;http://traderfeed.blogspot.com/&quot;&gt;Brett&lt;/a&gt; is a long-time trader and trading coach and has worked with some of the biggest names on the street. He’s written several popular books on trading performance, all of which easily made the cut for keeping as I culled my bookshelf recently (it was a high bar!). For traders, he recommends reviewing the trading day with not just a simple summary but a bar-by-bar replay. Similar to a football team reviewing game film, he suggests recording your screen and replaying it after hours. You’ll discover things you didn’t notice in the heat of the moment and you’ll start to understand ways you can improve that just aren’t possible without this extremely detailed approach.&lt;/p&gt;&lt;h2&gt;Hans Weber&lt;/h2&gt;&lt;p&gt;Hans is the VP of Research and Development at &lt;a href=&quot;https://www.smt.com/&quot;&gt;SMT&lt;/a&gt;, a sports technology company in Durham, NC. Although it took him a while to respond, his answer resonated with me. He makes a point at least twice a year to sit alongside each person involved in the company’s product flow. As he does this he’ll mentor people, see how interactions with clients might be changing, and understand how various workflows are working and if there are opportunities to improve them. Becoming truly in tune with all the pain points in the organization allows him to create ways for R&amp;amp;D to make things more efficient and enjoyable for everyone in the company.&lt;/p&gt;&lt;h2&gt;Anonymous CIO&lt;/h2&gt;&lt;p&gt;I asked a CIO of a large software development firm in the Research Triangle. She leads an organization of over 1000 software developers. When I asked her about her piano scales, she paused for a few seconds to think of an answer. She decisively responded that the most important part of managing a large organization is listening and having empathy. Having realized this early on, she focuses on this skill every day to cultivate and improve it in herself and the people that work for her.&lt;/p&gt;&lt;h2&gt;What Should MINE Be?&lt;/h2&gt;&lt;p&gt;I love this question because, like me, so many feel like they should have an immediate and ideal answer but the more you think about it the more puzzling it becomes. Asking others has helped me examine my own systems of improvement in different ways than I otherwise would have.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Should you EVER take Partial Profits? (Scale Out)</title>
        <link href="https://davemabe.com/should-you-ever-take-partials"/>
        <id>https://davemabe.com/should-you-ever-take-partials</id>
        <published>2020-11-02T15:14:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;h2&gt;What is a Partial Profit or Scaling Out?&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Taking a partial profit&lt;/strong&gt; or &lt;strong&gt;scaling out of a trade&lt;/strong&gt; is to exit some portion (but not all) of a profitable position. It is typically used as a sort of compromise: the trader wants to capture some profit but still wants to participate if the position becomes even more profitable in the future.&lt;/p&gt;&lt;h2&gt;What a Partial Profit Prevents&lt;/h2&gt;&lt;p&gt;You had a plan, you sized your position appropriately, you entered the trade at the right time, and your prediction was quickly realized by the trade heading in your direction.  The inspirational sports movie theme music starts playing in your background.  Ah the emotional satisfaction of being right!  (Cue the music stopping abruptly.)  Then the trade pulls back and you&amp;#039;re at breakeven.  That&amp;#039;s ok - probably just a pullback.  You have the will power to tolerate pullbacks like these.  Then your stop gets hit and a nicely profitable trade turns into a loss.  A very different theme music now plays in your background.  You did everything right and still took a loss.  If only you would have exited the trade while it was still in the green.&lt;/p&gt;&lt;p&gt;This is an especially difficult situation that all traders have experienced.  Traders of all levels go through this routinely.&lt;/p&gt;&lt;h2&gt;The &amp;quot;Great&amp;quot; Compromise&lt;/h2&gt;&lt;p&gt;You&amp;#039;re in another profitable trade.  You&amp;#039;ve done everything right and once again you find yourself with a tidy profit - but now you&amp;#039;re remembering the earlier trade that was in the exact same situation only to be stopped out for a loss.  You know that exiting the trade now would be bad in long run, but you don&amp;#039;t want to suffer a similar loss when the trade has come this far.  What do you do?&lt;/p&gt;&lt;p&gt;Early on in your trading career, someone made the very reasonable sounding suggestion that you should take half of your position off and let the remainder ride.  Now you&amp;#039;re playing with &amp;quot;house money&amp;quot; as they say.&lt;/p&gt;&lt;p&gt;What an amazing compromise.  The best of both worlds!  Take a little here by taking &lt;strong&gt;a partial profit&lt;/strong&gt; and let the rest ride.  So sensible!  Right?&lt;/p&gt;&lt;h2&gt;Partial Profits Cost You More Than You Think&lt;/h2&gt;&lt;p&gt;With any trading decision you make there are trade-offs.  When you take a partial profit in a trade and it eventually hits your target you&amp;#039;ll have &lt;strong&gt;less size in the trade&lt;/strong&gt; and therefore smaller profits relative to not taking a partial.&lt;/p&gt;&lt;p&gt;At what point do you take a partial profit?  Is half of the position the right amount?  Maybe you just do what feels right in the moment or maybe you have a solid plan to follow.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to look at a single stock chart for a trade and imagine what strategy would make the most money, but it&amp;#039;s much harder to determine what works in aggregate across a lot of your trades.  Any single trade is irrelevant - the big picture is far more important.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a backtest for one of the strategies I trade.  I ran two backtests - one with no partial profits (the red line) and one with exiting 50% of the position when the trade reached a certain level of profit.&lt;/p&gt;&lt;p&gt;For this particular strategy taking a partial profit results in almost half of the total profit evaporating!  This is a devastating chunk of your profits.  All trading strategies are unique so they&amp;#039;ll be affected differently by including partial profits at different levels - but almost all of them will result in lower total profits. So does this alone put the nail in the coffin of a partial profit strategy? Not necessarily.&lt;/p&gt;&lt;p&gt;Those partial profits are buying you something of value: &lt;strong&gt;peace of mind&lt;/strong&gt;.  The psychological comfort of experiencing fewer of the difficult trading outcomes described earlier definitely has SOME value.  How much &lt;strong&gt;do you value&lt;/strong&gt; that peace of mind?&lt;/p&gt;&lt;h2&gt;Psychological Comfort Has Value - But How Much?&lt;/h2&gt;&lt;p&gt;Each trader is different and everyone has a different risk profile.  Taking on risk is a personal decision - what makes sense for you might seem insanely reckless to another trader.&lt;/p&gt;&lt;p&gt;How should you think about the value of the emotional comfort of taking partial profits? Let&amp;#039;s look at the most common reason: you don&amp;#039;t want a profitable trade to turn into a loss.&lt;/p&gt;&lt;p&gt;As traders we love being right - sometimes even to the detriment of making money in the long run.  There&amp;#039;s something valuable about making SOME money - literally anything above zero - even $0.01 - on a trade.  This is somewhat irrational the more you think about it.  The profit you make or lose on a trade is a continuous variable - that is, there&amp;#039;s a whole range of profit you could end up with.  Of course, as traders, we&amp;#039;re trying to &lt;strong&gt;maximize this number&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;When we reduce that continuous outcome to a binary - was there a profit or a loss on the trade - we lose the accuracy of that variable.  You&amp;#039;re treating a $0.01 profit the same as a $1000 profit - both of these outcomes make the exact same contribution to &amp;quot;win rate.&amp;quot;  Shouldn&amp;#039;t we treat the $1000 winning trade differently than the $0.01 winning trade?  Your tendency to take frequent partial profits says you&amp;#039;re assigning the same value to a $0.01 trade versus a $1000 trade.&lt;/p&gt;&lt;p&gt;In fact, most strategies for taking partial profits are aiming for creating a worst case scenario of the trade ending up just barely profitable, precisely so the trade ultimately contributes (just barely!) to your &lt;strike&gt;being right&lt;/strike&gt; win rate.&lt;/p&gt;&lt;p&gt;When you rely too much on partial profits, you&amp;#039;re &lt;strong&gt;optimizing on the wrong variable&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;When Partial Profits Make Sense&lt;/h2&gt;&lt;p&gt;Even when you realize that you&amp;#039;re optimizing for the wrong variable by taking partial profits, it &lt;strong&gt;still might make a lot of sense to take them&lt;/strong&gt;.  Here are some scenarios where it might make sense to value the comfort from partial profits more highly on the margins:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;You&amp;#039;re trading a strategy that has &lt;strong&gt;longer hold times&lt;/strong&gt; - the longer the hold times the more likely you&amp;#039;ll be in a profitable trade that eventually pulls back&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You trade with size that&amp;#039;s large enough to &lt;strong&gt;substantially move the market&lt;/strong&gt;, so exiting all at once is difficult&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You&amp;#039;re currently in a drawdown and you really prefer to avoid more losing trades even if they&amp;#039;re just barely profitable&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;You trade at a proprietary trading firm and you settle up each month&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Any of these situations would make you value peace of mind more highly.&lt;/p&gt;&lt;h2&gt;Reversals Will Still Happen&lt;/h2&gt;&lt;p&gt;It&amp;#039;s important to note that taking partial profits doesn&amp;#039;t allow you to completely avoid the situation where a profitable trade turns into a loss.  Even when you&amp;#039;ve carefully chosen your partials strategy by looking at a large number of your trades, you&amp;#039;re guaranteed to still experience some of these.&lt;/p&gt;&lt;p&gt;With your partial profits strategy in place, you&amp;#039;ll still have profitable trades that &lt;em&gt;almost &lt;/em&gt;reach the point where you&amp;#039;re taking partial profits only to reverse into a losing trade.  It&amp;#039;s a situation that you can&amp;#039;t completely avoid.&lt;/p&gt;&lt;h2&gt;How Frequently Should You Take Partial Profits?&lt;/h2&gt;&lt;p&gt;Are you taking partials frequently or even &lt;strong&gt;every time&lt;/strong&gt; a trade is profitable?  If this is the case then it suggests to me that maybe your &lt;strong&gt;target is too far away&lt;/strong&gt;.  How would the aggregate numbers look if you moved your target closer?&lt;/p&gt;&lt;p&gt;If you can calibrate your target well you get the best of both worlds - trades that hit your target at full position size.&lt;/p&gt;&lt;h2&gt;Discretionary Partial Profits&lt;/h2&gt;&lt;p&gt;There are some very experienced traders out there that have an excellent intuitive sense of where to take partial profits in the heat of the moment.  If you think you are one of these gifted traders there&amp;#039;s a way to verify this.  Go back and look at trades that you&amp;#039;ve manually intervened in and compare those in the aggregate to your system.  Was there improvement from your manual discretionary exits?&lt;/p&gt;&lt;p&gt;This takes some effort but it&amp;#039;s worth it.  But beware: if you&amp;#039;re like me you&amp;#039;ll find that your shrewd trading discretion isn&amp;#039;t quite as shrewd as you think it is.&lt;/p&gt;&lt;h2&gt;Bottom Line&lt;/h2&gt;&lt;p&gt;A strategy to take partial profits is likely to cost you significantly more than you might think. The peace of mind you&amp;#039;re buying with them could very well be worth it, but it&amp;#039;s important that you analyze why you&amp;#039;re taking them and be honest about how valuable it is given the surprising cost in profits.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Make your Journal Compound your Trading</title>
        <link href="https://davemabe.com/make-your-journal-compound-your-trading"/>
        <id>https://davemabe.com/make-your-journal-compound-your-trading</id>
        <published>2020-08-17T15:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;As some of you know I coach high school cross country with my wife Joan.  At first glance you&amp;#039;d think that running and trading don&amp;#039;t have a lot in common, but as with many performance activities &lt;a href=&quot;https://www.davemabe.com/can-traders-learn-anything-from-poker/&quot;&gt;there are lessons to be learned&lt;/a&gt; from each.&lt;/p&gt;&lt;p&gt;Today the team did one of the tougher workouts of the year (safely socially distanced, mind you) at one of my favorite running venues, &lt;a href=&quot;https://www.triangleland.org/explore/nature-preserves/brumley-forest-nature-preserve&quot;&gt;Brumley Forest Preserve&lt;/a&gt;. The workout is 4 intervals around a 1000m loop (or 3 for the freshman).  The pace is steady, steady, fast, then back to steady for each interval. This is one of the 8-10 quintessential team workouts that serve as anchors for us to determine if we&amp;#039;re on track to meet our season goals for the team.&lt;/p&gt;&lt;p&gt;We keep meticulous records for these important workouts. I record each time for each interval for each kid in a grid on a sheet of paper along with some notes. These really important workouts we only do once per season, so as the kids progress through high school it becomes more and more important to refer back to previous years&amp;#039; results to track their improvement.  This provides a great perspective for, say, a senior who feels like they didn&amp;#039;t have the best workout today to go back and see &lt;em&gt;just how much&lt;/em&gt; they&amp;#039;ve improved over the years. Maybe the workout didn&amp;#039;t go as badly as they thought it did. It&amp;#039;s not only upperclassmen - even the freshmen get a taste by comparing their times to freshmen of previous years.&lt;/p&gt;&lt;p&gt;What we&amp;#039;ve realized over time that as valuable as the times for the intervals themselves are, the notes about the intangibles turn out to be perhaps even more valuable. For example, on the interval loop there is a small section of clay that you run through. We&amp;#039;d never really taken much notice of it but today it played an oddly important role. It had rained the previous night and the clay ended up having a perfectly sticky texture and caked on the bottom of the runners&amp;#039; shoes on each interval.  So at the halfway point of the interval - where the loop bottoms out and gets harder for the rest of the way - the kids&amp;#039; shoes were probably a pound or so heavier over the next 50-100 meters as the clay came off.&lt;/p&gt;&lt;p&gt;It was also oppressively humid today, but not so hot. This is another detail I keep track of on the sheet. And of course each individual runner has significant things going on today that might affect their mindset.  Some have just dropped an older sibling off at college for the first time and they&amp;#039;re suddenly an only child.  Another just had a zoom recruiting call with a division 1 program the evening before and was particularly fired up.&lt;/p&gt;&lt;p&gt;Of course there are a thousand things we COULD keep track of - but what&amp;#039;s important?&lt;/p&gt;&lt;p&gt;What&amp;#039;s true for high school cross country is also true for your trading.&lt;/p&gt;&lt;h2&gt;What&amp;#039;s Important Enough to Keep Track Of?&lt;/h2&gt;&lt;p&gt;In your trading journal the most important thing is to record the profit from each trade plus the entry and exit time so you can go back to a chart and overlay your trade on the chart.  This is the bare minimum and should be your starting point.&lt;/p&gt;&lt;p&gt;Once you &lt;a href=&quot;https://www.davemabe.com/the-best-way-to-become-a-stronger-trader/&quot;&gt;start trading multiple strategies&lt;/a&gt; (you are or are working towards that, right?), the next essential thing to record in your journal is the &lt;strong&gt;strategy that the trade came from&lt;/strong&gt;. This is really critically important.&lt;/p&gt;&lt;p&gt;It&amp;#039;s really hard to over emphasize this point. It&amp;#039;s probably the single most important data point in my trading journal. There&amp;#039;s really no question in my mind that my trading profits would be FAR less if I didn&amp;#039;t track the strategy.  Tracking it allows me to:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;Your daily P&amp;amp;L - that single number - &lt;strong&gt;hides so many details&lt;/strong&gt; about how your trading is really going and yet that&amp;#039;s the only number that the vast majority of traders look at when evaluating their performance if they evaluate it at all. If you have multiple strategies that you&amp;#039;re trading with different sizing, then you overall P&amp;amp;L is going to be woefully inadequate for measuring your trading performance.&lt;/p&gt;&lt;h2&gt;Beyond the Basics&lt;/h2&gt;&lt;p&gt;What are the important intangibles you should keep track of like the weather or the sticky clay in the interval workout today? There is no one size fits all solution - it&amp;#039;s going to depend on the strategies you trade and what&amp;#039;s likely to have an effect on them.&lt;/p&gt;&lt;p&gt;It&amp;#039;s probably not going to be immediately apparent on day one what additional parameters you should be keeping track of.  What you should be doing over time is getting better and better at discovering what will be valuable to look back on in the future.&lt;/p&gt;&lt;p&gt;Here are some concrete examples of things I started keeping track of in my journal that turned out to be extremely valuable. These things are very likely irrelevant to the strategies you trade, but should give you some ideas.&lt;/p&gt;&lt;h3&gt;Trade Timeframe&lt;/h3&gt;&lt;p&gt;When I &lt;a href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot;&gt;first started trading gaps&lt;/a&gt;, I traded off the 30 minute bars. After some success, I decided to trade the same system off the 15 minutes bars where there are more opportunities.  When I started taking these additional trades, I started keeping track of the timeframe that I took the trade off of.  In addition to the strategy, I added a timeframe field and used &lt;strong&gt;30 minute bars&lt;/strong&gt; or &lt;strong&gt;15 minute bars&lt;/strong&gt; depending on the timeframe I took the trade off of.&lt;/p&gt;&lt;p&gt;Although it&amp;#039;s been several years now I remember distinctly how this benefited me. Right away I had a couple really big winners off the 15 minute bars.  After 2-3 months though, I looked back at my journal and realized that the trades I was taking off the 15 minutes bars, in aggregate, were performing pretty poorly. This was a shock to me as those initial winner weighed heavily in my mind - I assumed that timeframe was really profitable for me. At that point I quickly took a step back and reevaluated that new timeframe entirely.&lt;/p&gt;&lt;h3&gt;Re-entering Trades&lt;/h3&gt;&lt;p&gt;With one particular strategy I trade, there could be a trade in a particular stock that I take that stops out pretty quickly, but then another setup materializes in the same symbol.  Do you take that trade?  It&amp;#039;s a question I&amp;#039;ve thought a lot about (&lt;a href=&quot;https://www.davemabe.com/should-you-re-enter-trades-that-have-stopped-out/&quot;&gt;here&amp;#039;s a specific example&lt;/a&gt;).&lt;/p&gt;&lt;p&gt;Re-entering trades is a really good example of something you should be keeping track of.  Was this trade the first attempt of the trade or a subsequent attempt? It&amp;#039;s easy to try to draw conclusions from a trade or two but the aggregate is all that matters. Looking back over my journal I see that taking these second or third opportunities actually play out pretty well in this particular strategy.&lt;/p&gt;&lt;h3&gt;Is Every Trader Watching This Symbol Today?&lt;/h3&gt;&lt;p&gt;Every trading day is different. Some days there&amp;#039;s been nothing on my trading radar while other days there&amp;#039;s literally been 600 stocks that, &lt;em&gt;technically&lt;/em&gt;, fit my criteria. That context is really important.  Imagine a trade that&amp;#039;s gapping an average amount.  If there&amp;#039;s 30 stocks that day that are gapping the same amount or higher that stock is less unusual than if there are just 1 or 2 stocks gapping a similar amount.&lt;/p&gt;&lt;p&gt;If there are a lot of stocks to choose from then a particular trade you&amp;#039;re making doesn&amp;#039;t have every traders&amp;#039; eyeballs on it.  If it&amp;#039;s the &lt;strong&gt;only&lt;/strong&gt; thing moving then you know that it probably has the focus of almost every trader. Those are &lt;strong&gt;very different&lt;/strong&gt; situations and something I wanted to start keeping track of.  I started labeling my trades from this strategy with &amp;quot;Premier&amp;quot; if the stock was close to one of the few symbols in the universe that day. Over time I could evaluate performance on these Premier plays separately from other trades in the same strategy. This is insight that just isn&amp;#039;t possible without keeping track this way.&lt;/p&gt;&lt;h3&gt;Keep Track of Changes to your Trading System&lt;/h3&gt;&lt;p&gt;One of the most important things to record is when you make alterations to your system.  For example, you increase trading size, change a rule in your system to take more or fewer trades, etc. It always seems in the moment like I&amp;#039;d never forget making a change like this, but it doesn&amp;#039;t take long to forget these things. Wait - what day did I make that change to the system? That is a really important thing to keep track of and I used to overlook it.&lt;/p&gt;&lt;h2&gt;What is NOT Worth Keeping Track Of?&lt;/h2&gt;&lt;p&gt;There is no limit to what you can keep track of - the amount of data is endless. I often think that trading is mostly about figuring out what you can comfortably ignore. Your trading journal is only going to be valuable if you put thought into it and track things that have &lt;strong&gt;a good chance of being important&lt;/strong&gt;.  If it becomes a chore to track a lot of data points that end up being unimportant then you&amp;#039;re going to be less motivated to go through the effort.&lt;/p&gt;&lt;p&gt;Here are some things that I purposely don&amp;#039;t record in my journal because they didn&amp;#039;t turn out to be valuable to me.&lt;/p&gt;&lt;h3&gt;Any Data Point You Can Easily Recreate Later&lt;/h3&gt;&lt;p&gt;There&amp;#039;s really no point of keeping track of data that you&amp;#039;ll &lt;strong&gt;easily have access to in the future&lt;/strong&gt;.  For example, the amount a stock is gapping, while important, isn&amp;#039;t a data point you should devote a lot of keystrokes to recording for each trade since you can easily retrieve this value in the future from any number of data sources. It&amp;#039;s great if you can automatically capture it, but if it takes any effort at all I skip data points like this one.  Again, it&amp;#039;s not because I think they&amp;#039;re unimportant - they certainly are - it&amp;#039;s that it requires so little effort later to recreate them.&lt;/p&gt;&lt;h3&gt;Your Feelings, Mood, Sleep, What you Ate, etc&lt;/h3&gt;&lt;p&gt;I know a lot of traders are big on these characteristics of yourself in the moment. Some traders even wear &lt;a href=&quot;https://ouraring.com/&quot;&gt;Oura Rings&lt;/a&gt; to systematically record sleep patterns and vital health statistics. I like the idea of automatically recording these things, but I&amp;#039;ve found that any effort to manually record this stuff just doesn&amp;#039;t turn out to be very valuable.&lt;/p&gt;&lt;p&gt;The precision with which you&amp;#039;d need to record these feelings and such just doesn&amp;#039;t seem possible and even if you could, in my experience, there seems to be little if any correlation with my trading performance. There&amp;#039;s just a lot of other things that have actual tangible correlation with a trading strategy that should have priority over this.&lt;/p&gt;&lt;h3&gt;Anything that Likely Won&amp;#039;t Be Important Later&lt;/h3&gt;&lt;p&gt;There are a lot of things that seem really important in the moment in a given trade, but in a month when you&amp;#039;re looking back over several trades will not be important. Spend time thinking about what you&amp;#039;re likely to want to look back on in the future and just don&amp;#039;t bother with the other stuff.&lt;/p&gt;&lt;p&gt;What are some things that you track in your trading journal?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: John Burns</title>
        <link href="https://davemabe.com/trader-interview-john-burns"/>
        <id>https://davemabe.com/trader-interview-john-burns</id>
        <published>2020-07-08T12:50:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in &lt;a href=&quot;https://www.davemabe.com/category/trading-interview/&quot;&gt;the series&lt;/a&gt; is with John Burns (&lt;a href=&quot;https://twitter.com/JPBJR800&quot;&gt;twitter&lt;/a&gt;).  John Burns is Senior Consultant and Performance Advisor for the ReThink Group with clients including hedge fund managers, portfolio managers, and traders, as well as Hendrick Motor Sports NASCAR #9, #88, development pit crews. Prior to this role he worked as a floor trader on the Chicago Mercantile Exchange for 17 years. John has traded futures, options on futures, equities, ETF’s on most exchanges worldwide. He has experience with mechanical, discretionary and algorithmic trading styles.  Learn more about John through the &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://therethinkgroup.net/our-team/#john&quot;&gt;ReThink Group website &lt;/a&gt; and follow him on Twitter &lt;a href=&quot;https://twitter.com/JPBJR800&quot;&gt;@JPBJR800&lt;/a&gt;.&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt;Take the emotion out of trading. Research shows that we can’t make a decision without&lt;br&gt;emotion. As many of us have experienced the more we try to become emotionless the more&lt;br&gt;chatter and uncertainty clutter our thoughts. Emotions have energy that needs to be&lt;br&gt;recognized and vented. The most effective way to vent the energy is to simply say what you&lt;br&gt;are feeling and why. When this is done and the words accurately describe the feelings the&lt;br&gt;energy/intensity of the feelings will dissipate. As the energy of feelings dissipates so does&lt;br&gt;the manic chatter of our inner voice. When we get good at understanding what we are&lt;br&gt;feeling we are able to see the markets as they are rather than how we want them to be.&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt;Use emotions, especially &amp;quot;negative&amp;quot; emotions as information. Our feelings have a&lt;br&gt;productive purpose. Understanding how we feel and why can unlock the power of&lt;br&gt;unconscious pattern recognition. When we understand patterns of thoughts and feelings&lt;br&gt;and put them in the context of trading setups and exits we can really start to dive into the&lt;br&gt;art of trading. When the flow of the market is our guide rather than our demands and&lt;br&gt;expectations of what the market should do, or what we feel the markets owe us, we can&lt;br&gt;really trade the market as it is rather than seeing the markets through a lens that is distorted&lt;br&gt;with the baggage of the past experiences. As we are able to embrace and understand how&lt;br&gt;we feel and why we are able to be more present and in the moment, therefore being able to&lt;br&gt;hear and feel what the market is telling us.&lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt;&lt;br&gt;I have two for you. The first has helped me a ton on my coaching journey. &lt;a href=&quot;https://www.amazon.com/gp/product/1138220817/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1138220817&amp;amp;linkCode=as2&amp;amp;tag=davemabe02-20&amp;amp;linkId=acd6c1c9f9e8f8f74b14dce9a7432a46&quot;&gt;The Making of a&lt;br&gt;Psychoanalyst&lt;/a&gt; by Claudia Luiz. The second is a great book about how we can use our&lt;br&gt;bodies to help us understand what we are feeling. &lt;a href=&quot;https://www.amazon.com/gp/product/0999368109/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0999368109&amp;amp;linkCode=as2&amp;amp;tag=davemabe02-20&amp;amp;linkId=f1695089bdcba76e2abe555aa515beeb&quot;&gt;Your Body is Your Brain&lt;/a&gt; by Amanda&lt;br&gt;Blake.&lt;/p&gt;&lt;p&gt;Questions for John? &lt;a href=&quot;https://twitter.com/JPBJR800&quot;&gt;Hit him up on Twitter.&lt;/a&gt;&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee? Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Day Trading or Swing Trading?</title>
        <link href="https://davemabe.com/day-trading-or-swing-trading"/>
        <id>https://davemabe.com/day-trading-or-swing-trading</id>
        <published>2020-06-04T11:50:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Is it better to &lt;strong&gt;Day Trade&lt;/strong&gt; or &lt;strong&gt;Swing Trade&lt;/strong&gt;?  This is one of those eternal questions that every trader has an opinion on.  I&amp;#039;ve thought about this a lot over the years and heard a lot of traders opine about it.  There are &lt;strong&gt;a lot of reasons&lt;/strong&gt; to choose one or the other, but I think a lot of it boils down to your initial reaction when you see a chart like this:&lt;/p&gt;&lt;p&gt;Is your initial gut reaction one of hope and optimism that you could be on the right side of this overnight gap when it occurs?  Or do you bristle with fear at the thought of being on the wrong end of this when you open your trading screens in the morning? (Personally, it makes me terrified and for a very good reason...)&lt;/p&gt;&lt;h2&gt;What is Day Trading?&lt;/h2&gt;&lt;p&gt;The definition of day trading is really very simple: when you end you&amp;#039;re trading day your account is 100% cash. There might be a whole variety of trades that happen throughout the day for all sorts of different reasons, but you&amp;#039;re only day trading if you&amp;#039;re flat at the end of the day by design.&lt;/p&gt;&lt;h2&gt;What is Swing Trading?&lt;/h2&gt;&lt;p&gt;Swing trading is taking trades with the intent of capturing &lt;strong&gt;at least one overnight move&lt;/strong&gt;.  The intended hold time can be just one day or many days.  What if you&amp;#039;re intending to hold for a year? Is that a swing trade? No that&amp;#039;s an &amp;quot;investment&amp;quot;, though there is no real cutoff for when a &amp;quot;swing trade&amp;quot; held long enough becomes an &amp;quot;investment.&amp;quot;&lt;/p&gt;&lt;h2&gt;Swing Trading Pros/Cons&lt;/h2&gt;&lt;h3&gt;More time to capture the move&lt;/h3&gt;&lt;p&gt;Since you&amp;#039;re aiming to hold at least one overnight, you&amp;#039;ll be in these trades for a lot more time than a day trade. Sometimes you&amp;#039;re looking for an explosive move and you might be right about the direction of a trade but wrong about the timing.  Swing trading gives your trades more of a chance to capture that move that you&amp;#039;re anticipating.&lt;/p&gt;&lt;h3&gt;Capture the overnight gaps - for better or worse!&lt;/h3&gt;&lt;p&gt;Since you&amp;#039;ll be holding overnight there&amp;#039;s a chance you&amp;#039;ll be riding some really profitable overnight gaps. Of course, these gaps can go against you but if you&amp;#039;ve done your homework you should be on the winning side of most of these gaps in the long run.  This is the main advantage and in fact the entire point of swing trading. The overnight gaps are hard for a lot of traders to handle though.&lt;/p&gt;&lt;h3&gt;Take advantage of the overall market long bias&lt;/h3&gt;&lt;p&gt;One glance at a chart of the SPY for the last decade and it&amp;#039;s not hard to recognize that there&amp;#039;s a general long bias in the stock market.  Swing trading allows you the opportunity to capture some of that natural drift upward.&lt;/p&gt;&lt;h3&gt;Less buying power available&lt;/h3&gt;&lt;p&gt;You&amp;#039;ll get less buying power even at full margin when swing trading. This could be a positive but I view it as a negative since I try to &lt;a href=&quot;https://www.davemabe.com/is-running-out-of-buying-power-a-good-thing/&quot;&gt;efficiently use my buying power&lt;/a&gt;.&lt;/p&gt;&lt;h2&gt;Day Trading Pros/Cons&lt;/h2&gt;&lt;p&gt;(If you know me well enough you&amp;#039;ll know that I feel pretty strongly that day trading is superior at least for my situation.  I&amp;#039;m going to list one con and then the rest are overwhelming pros.)&lt;/p&gt;&lt;h3&gt;Small accounts in the US are pretty much out of luck&lt;/h3&gt;&lt;p&gt;If your account is less than $25k and you&amp;#039;re in the US, your day trading options are very limited due to the &lt;a href=&quot;https://www.investopedia.com/terms/p/patterndaytrader.asp&quot;&gt;Pattern Day Trader rule&lt;/a&gt; or PDT (you know, for your own good).  It can be done but it&amp;#039;s definitely a hassle. If this is the case then the scales tip strongly in favor of swing trading.&lt;/p&gt;&lt;h3&gt;More buying power via day trading&lt;/h3&gt;&lt;p&gt;If you&amp;#039;re interested in &lt;a href=&quot;https://www.davemabe.com/is-running-out-of-buying-power-a-good-thing/&quot;&gt;optimizing your buying power&lt;/a&gt;, then there&amp;#039;s no argument here: day trading wins hands down. You get twice the buying power from your broker trading intraday than you can hold positions overnight for swing trading.&lt;/p&gt;&lt;h3&gt;Get paid on overnight interest versus paying the broker for margin&lt;/h3&gt;&lt;p&gt;Not only do you get more buying power, but you essentially &lt;em&gt;get paid to use it&lt;/em&gt; versus having to &lt;em&gt;pay interest&lt;/em&gt; on margin balances held overnight. When you use &lt;strong&gt;margin overnight&lt;/strong&gt;, you have to pay interest on it. Brokerages compete on that interest rate.  It currently ranges from just under 2% (Interactive Brokers) to well over 9% (TD Ameritrade).  Again this is the rate that you pay your broker for the privilege of holding overnight using margin.&lt;/p&gt;&lt;p&gt;When you are 100% cash each night (day trading) you &lt;strong&gt;get paid interest&lt;/strong&gt; on your cash balance, like a checking or savings account.  Now, the interest rate you get paid isn&amp;#039;t what it used to be.  When I started trading years ago with a broker called CyberTrader, I was getting paid over 5% on the balance.  Today&amp;#039;s interest rates are, of course, much less than that.  If you check your statements, though, you&amp;#039;ll see that it&amp;#039;s not zero.&lt;/p&gt;&lt;p&gt;A friend of mine told me the other day: &amp;quot;There are two types of people in the world, those who pay interest and those who get paid interest.&amp;quot;&lt;/p&gt;&lt;p&gt;As a cycling enthusiast, there&amp;#039;s a good analogy here.  Day trading is like riding with a slight tailwind while swing trading is like riding with an annoying headwind.  You can ride fast with either a headwind or a tailwind, but the longer you ride the more and more the direction of the wind will add up.  Over even a single ride of a few miles, this can be the difference in many minutes of time.  For a visualization of how substantial this is, here&amp;#039;s a video of a cyclist using a position that very efficiently cuts through the wind.&lt;/p&gt;&lt;p&gt;Your trading account is similar.  The difference might not be substantial for a single day or a few days, but over the long run, this will add up to something significant.  That&amp;#039;s one reason I choose to trade with a tailwind instead of a headwind.&lt;/p&gt;&lt;h3&gt;News comes out overnight&lt;/h3&gt;&lt;p&gt;Most of the time the substantial news items that will drastically affect the price of stocks you&amp;#039;re holding are released outside of the trading day. Of course, this is not always true, but when news (or a certain politically powerful person&amp;#039;s tweets) come out during the trading day there will typically be far more liquidity available to react.&lt;/p&gt;&lt;p&gt;When news is usually released there will be little to no liquidity available, so if you need to get out of a trade you literally will not have that choice.&lt;/p&gt;&lt;h3&gt;Freedom to take the day off on a whim&lt;/h3&gt;&lt;p&gt;This is one of the huge benefits for me for day trading.  Since you&amp;#039;re 100% cash at the beginning of every day by design, you can literally just take any day off whenever something comes up.  This is extremely liberating as often things in life come up that take your attention away from the market.  If you&amp;#039;re holding positions overnight you&amp;#039;ll have far less freedom to make last-minute adjustments to your schedule.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll also just sleep better knowing you&amp;#039;re in cash and not holding a large position where news has just been released and wondering if you&amp;#039;re going to be on the right side of a big impending gap up or down.&lt;/p&gt;&lt;h3&gt;Longer the timeframe, the less predictive a model will be&lt;/h3&gt;&lt;p&gt;The longer your hold time, the more risk you&amp;#039;re taking.  Your money is only at risk when you&amp;#039;re holding a position.  Anything can happen.  The stock can be halted, news can come out, any number of substantial (albeit unlikely) events can occur.  The longer your hold time the more likely you are to experience one of these events.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re trading a system, this means that the longer the hold time the less predictive the model will be over a large number of trades.  Trading is essentially predicting the future and it turns out that&amp;#039;s really hard.  There&amp;#039;s enough uncertainty within the trading day, but when you hold overnight that uncertainty is multiplied many times over.&lt;/p&gt;&lt;h3&gt;It&amp;#039;s easier to short intraday&lt;/h3&gt;&lt;p&gt;As I mentioned above, the market has a long bias when you zoom out to a large enough timeframe.  This means that the longer your timeframe the easier it will be to trade a long strategy, but the harder it will be to use a short strategy.  Selling short is scary for a lot of new traders but I know many short-term trader who make the vast majority of their profits trading short. There&amp;#039;s an old expression: stocks take the stairs up but the elevator down.  Successful traders understand this.&lt;/p&gt;&lt;p&gt;By limiting yourself to swing trading, you&amp;#039;re giving yourself fewer chances to trade strategies that sell short.&lt;/p&gt;&lt;h3&gt;Day trading is finite, swing trades can turn infinite&lt;/h3&gt;&lt;p&gt;We all have heard this very typical scenario for beginning trades: they enter a trade for one reason, the stock goes against them, and then that reason evolves into &amp;quot;I&amp;#039;m holding this as an investment.&amp;quot;  There&amp;#039;s a strong tendency in humans to want to be right - to sell at a profit even if the numbers say that&amp;#039;s the least long-term profitable thing to do.&lt;/p&gt;&lt;p&gt;With day trading, you have a natural limit on the amount of time you can hold a trade: the end of the trading day.  You can&amp;#039;t talk yourself into turning a &amp;quot;trade&amp;quot; into an &amp;quot;investment&amp;quot; since you need to exit before the market closes.  Day trading enforces this discipline in your trading.&lt;/p&gt;&lt;h3&gt;The market will give you feedback more quickly&lt;/h3&gt;&lt;p&gt;The shorter your timeframe the more quickly you can get valuable feedback from the market.  If your trades take 5 days to play out (swing trading) versus 5 hours (day trading) then by definition you are going to get a lot of feedback much more quickly than swing trading.  Over the course of just a month, this can be many, many more trades taken - all of which are learning opportunities.  How fast do you want to learn?&lt;/p&gt;&lt;h3&gt;The math is different now - commissions are zero&lt;/h3&gt;&lt;p&gt;When I made my first trade I think I paid about $10 per side. Even at that point commissions had dropped dramatically but now they&amp;#039;ve literally dropped to zero at all the major brokerages.   I remember telling people I day traded and they&amp;#039;d say &amp;quot;I bet you&amp;#039;re broker likes you!&amp;quot;  With commissions at zero now that math looks substantially better when compared to swing trading. Does that mean your total trading costs are zero? Not by a long shot.  I still pay my normal rate at Interactive Brokers for a variety of reasons, one of which is I feel like I&amp;#039;m getting what I pay for.&lt;/p&gt;&lt;p&gt;So although commissions are free, those costs are still born by you in some way - they&amp;#039;re just harder to see.  But there&amp;#039;s little doubt that total trading costs have also gone down in this recent industry shift.  Another reason to day trade versus swing trade - the math keeps getting easier.&lt;/p&gt;&lt;h3&gt;Which is more profitable? Has to be day trading&lt;/h3&gt;&lt;p&gt;Your goal as a trader should be to find a profitable system (&lt;a href=&quot;https://www.davemabe.com/the-best-way-to-become-a-stronger-trader/&quot;&gt;preferably more than one&lt;/a&gt;) and trade it as often as possible.  The smaller the timeframe the more trades you&amp;#039;ll be able to make with the buying power you have.  This coupled with the fact that you&amp;#039;ll have access to more buying power, it&amp;#039;s easy to see that day trading has the potential to be far more profitable.&lt;/p&gt;&lt;p&gt;Can you think of other good reasons that should be added to the list? &lt;a href=&quot;https://twitter.com/davemabe&quot;&gt;Contact me on Twitter&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">My Favorite Trading Strategy Indicators</title>
        <link href="https://davemabe.com/indicators"/>
        <id>https://davemabe.com/indicators</id>
        <published>2020-05-28T12:32:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Too many trading indicators on a chart is a sign of mediocrity. Your charts should be nice and clean showing you exactly what you need to see to make your pre-planned decisions and no more.&lt;/p&gt;&lt;p&gt;Many traders take this to heart and have simple charts that aren&amp;#039;t littered with indicators, but too many draw the wrong conclusion at this point: &lt;strong&gt;that all indicators are worthless&lt;/strong&gt;. A trader&amp;#039;s clean chart is not a recognition that all indicators are garbage - it should represent that the trader has gone through the thorough and painstaking work of determining which indicators are most important to their trading and why.  It should represent countless ideas of what indicators make their trading tick and lots of decisions about the trade-offs of including or excluding certain ones. A simple chart should represent the quantifiable tests that have gone into determining which indicators contribute to profit.&lt;/p&gt;&lt;p&gt;Traders spend a lot of time focusing on the event that occurs to initiate a trade (for example, a new high).  In Trade-Ideas we call these Alerts.  What traders quickly realize, though, is that the filters you use to determine which new highs to actually trade and which ones to ignore are &lt;strong&gt;the most important part&lt;/strong&gt; of a trading strategy.&lt;/p&gt;&lt;p&gt;A lot of traders trade stocks that reach new highs, but nobody trades ALL of them. Most of your time will be determining under which circumstances you take the trade and which ones you skip. This is the meat of your trading strategy and where you should spend the vast majority of your research time.&lt;/p&gt;&lt;p&gt;If you had to choose just one thing to improve in your trading process, it should be your routine for selecting filters.  Improving your skills in filtering will compound over time and you&amp;#039;ll become better and better the more you do it.  Your routine will become more efficient and you&amp;#039;ll quickly be able to get from a rough trading idea to an actual strategy that you&amp;#039;re ready to risk money with.&lt;/p&gt;&lt;h2&gt;The Indicators I Use in Every Strategy I Trade&lt;/h2&gt;&lt;p&gt;I have a consistent routine for evaluating and improving trading strategies. The most important part of this routine and where I think most of my personal edge as a trader comes from is determining which indicators to use in a strategy.&lt;/p&gt;&lt;p&gt;If you look across every strategy I&amp;#039;ve ever traded you&amp;#039;ll see lots of different indicators in use. You&amp;#039;ll also see some of the same ones appearing in a lot of them - some appear in every single one.  Here&amp;#039;s the list of indicators (a.k.a. filters) most commonly appear in my strategies.  When improving my models, these are the ones I look at first.&lt;/p&gt;&lt;h3&gt;&lt;a href=&quot;https://lddy.no/mfoq&quot;&gt;Volatility&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;Although some treat it as a generic term for movement, volatility has &lt;a href=&quot;https://lddy.no/mfoq&quot;&gt;a very specific meaning&lt;/a&gt; at Trade-Ideas. It&amp;#039;s the amount the stock &lt;em&gt;typically &lt;/em&gt;moves in a 15-minute period.  Does it really matter what a stock does on a NORMAL day when strategies are typically looking for ABNORMAL activity?  It turns out it has a big effect.  Unusual activity with a stock eventually reverts back to its normal behavior and sometimes that can happen quickly.  You&amp;#039;ll find that stocks that move more on normal days also move more on unusual days.  If movement is what you&amp;#039;re looking for you should be looking at &lt;a href=&quot;https://lddy.no/mfoq&quot;&gt;Volatility&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Take the two charts above.  At first glance, these charts seem pretty similar, but when you look at Volatility, Novavax (NVAX) simply moves significantly more than ZTO Express (ZTO).&lt;/p&gt;&lt;h3&gt;&lt;a href=&quot;https://lddy.no/mfpa&quot;&gt;Relative Volume&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;&lt;a href=&quot;https://lddy.no/mfpa&quot;&gt;Relative Volume&lt;/a&gt; is perhaps the most important filter of them all.  Let&amp;#039;s say two stocks have traded a million shares so far today.  If stock A normally trades 200,000 shares at this point in the day but stock B typically has traded 5,000,000 shares, stock A has a lot more interest from market participants than stock B, &lt;em&gt;relative to what it normally trades&lt;/em&gt;. This is, of course, critically important to your trading system.&lt;/p&gt;&lt;p&gt;For stock A a continuation strategy probably makes perfect sense given the volume is unusually &lt;em&gt;large&lt;/em&gt;, but for stock B the same amount of volume is unusually &lt;em&gt;small&lt;/em&gt;.  These are two completely different situations even though the shares traded are equal for the day for these two stocks. The &lt;a href=&quot;https://lddy.no/mfpa&quot;&gt;value for Relative Volume&lt;/a&gt; alone could be the determining factor for choosing the direction you want to trade a stock.&lt;/p&gt;&lt;p&gt;Take the above two charts.  They both have almost the same shares traded on the same day, but the relative volume for BNTX is 0.8 while the relative volume for SKYS is 24.  The calculation for Relative Volume at Trade-Ideas is perfect because it is aware of how many shares a stock trades throughout the day.  For example, if a stock has an average daily volume of 500,000 shares and by 9:45 am it&amp;#039;s already traded 400,000 shares, the Relative Volume value recognizes that this is more significant than if the stock reaches 400,000 shares at 3:45 pm.  You can read more about &lt;a href=&quot;https://lddy.no/mfpa&quot;&gt;exactly how this indicator works here&lt;/a&gt;.&lt;/p&gt;&lt;h3&gt;&lt;a href=&quot;https://lddy.no/mfpd&quot;&gt;Gap %&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;A lot of traders trade gapping stocks (&lt;a href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot;&gt;including me&lt;/a&gt;).  Stocks that have the potential for movement have very often gapped up or down at the open.  But not all gaps are equal.  Take this gap in TSLA yesterday.  It&amp;#039;s over $18 but you hardly even notice it on the chart.&lt;/p&gt;&lt;p&gt;But then take a look at this gap in EVFM.  It&amp;#039;s less than $2 but very significant when you look at the &lt;a href=&quot;https://lddy.no/mfpd&quot;&gt;Gap percent&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve backtested gaps for a long time and the value that keeps popping up as a good one to use as a starting point is 3.5 percent.  When looking for gaps up, I start with a minimum &lt;a href=&quot;https://lddy.no/mfpd&quot;&gt;Gap Percent&lt;/a&gt; of 3.5, and when looking for gaps down I use -3.5.&lt;/p&gt;&lt;h3&gt;&lt;a href=&quot;https://lddy.no/mfpe&quot;&gt;Average True Range (ATR)&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;The Average True Range (ATR) of a stock has a &lt;a href=&quot;https://lddy.no/mfpe&quot;&gt;very specific definition&lt;/a&gt;.  Like Volatility above, it captures typical price movement.  So why do I have two indicators for price movement? They are highly correlated, so surely we can just choose one and simplify things, right?&lt;/p&gt;&lt;p&gt;It turns out there is a subtle difference between the two measures that is quite important for trading systems.  The Average True Range is measuring the &lt;a href=&quot;https://lddy.no/mfpe&quot;&gt;daily movement of a stock&lt;/a&gt;, while the Volatility is measuring the average &lt;a href=&quot;https://lddy.no/mfoq&quot;&gt;movement during a 15 minute period&lt;/a&gt;.  These numbers are highly correlated, but you do see stocks that have higher or lower volatility numbers relative to their ATRs and vice versa.&lt;/p&gt;&lt;p&gt;All things equal, the Average True Range will be a better indicator when applied to a trend type strategy where you&amp;#039;re holding a lot of the day or overnight.  The Volatility indicator will be better when you&amp;#039;re trying to capture a shorter move on an intraday timeframe.  I always look at both of these indicators when designing strategies.  I&amp;#039;d encourage you to look closely at the definitions and understand what both of them represent.&lt;/p&gt;&lt;h3&gt;&lt;a href=&quot;https://lddy.no/mfpg&quot;&gt;Earnings Date&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;There are a lot of news items that can move a stock: upgrades, downgrades, share offerings, splits, etc. None are more consistently important than &lt;a href=&quot;https://www.davemabe.com/earnings-season-how-to-use-it-in-your-trading/&quot;&gt;earnings announcements&lt;/a&gt;.  Both investors and technical traders are focused on earnings so it&amp;#039;s bound to have an impact on your trading system.  All things equal, stock movement due to recent earnings is more significant than movement for other reasons.&lt;/p&gt;&lt;p&gt;Trade-Ideas has a fantastic way to &lt;a href=&quot;https://lddy.no/mfpg&quot;&gt;filter on Earnings Dates&lt;/a&gt;.  I use it to determine which stocks are moving due to earnings and which ones are not.  I also have scans that show me stocks that are reporting earnings after the close or the next morning.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s the cloud link for the &lt;a href=&quot;https://www.trade-ideas.com/Cloud.html?code=6710c393d030943c99378546fcff07d8&quot;&gt;Volume Leaders Reporting Soon&lt;/a&gt; top list I use and for the &lt;a href=&quot;https://www.trade-ideas.com/Cloud.html?code=adc68ae70564d76c04021b0df5239eb7&quot;&gt;Volume Leaders Just Reported&lt;/a&gt; top list.&lt;/p&gt;&lt;h3&gt;&lt;a href=&quot;https://lddy.no/mfpi&quot;&gt;Position in Range&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;A stock&amp;#039;s position in its recent range has a huge impact on its future movement.  Take a look at Morgan Stanley (MS).&lt;/p&gt;&lt;p&gt;It gapped up above its recent range.  But look at SL Green Realty Corp (SLG):&lt;/p&gt;&lt;p&gt;These are comparable gaps, but these stocks are in very different situations.  MS gapped up well &lt;strong&gt;above &lt;/strong&gt;its recent range but SLG is still very much at the &lt;strong&gt;bottom&lt;/strong&gt; of its recent range.  The recent trading range is very important to a stock&amp;#039;s future price movement and I always look at the &lt;a href=&quot;https://lddy.no/mfpi&quot;&gt;Position in Range&lt;/a&gt; indicator when evaluating my trading systems.  The time period for the range will vary based on the timeframe for your system.  For an intraday trading system you should start with the &lt;a href=&quot;https://lddy.no/mfpi&quot;&gt;position in today&amp;#039;s range&lt;/a&gt; but for longer term systems the &lt;a href=&quot;https://lddy.no/mh3v&quot;&gt;position in yearly range&lt;/a&gt; might be more appropriate.&lt;/p&gt;&lt;p&gt;While I don&amp;#039;t use all these filters in each strategy I trade, these are definitely the ones I examine first when researching a new strategy.  What are your go-to indicators for your trading systems?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: Brian Lee @BrianLeeTrades</title>
        <link href="https://davemabe.com/brian-lee"/>
        <id>https://davemabe.com/brian-lee</id>
        <published>2020-05-19T14:00:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in &lt;a href=&quot;https://www.davemabe.com/category/trading-interview/&quot;&gt;the series&lt;/a&gt; is with Brian Lee (&lt;a href=&quot;https://medium.com/@BrianLeeTrades&quot;&gt;web site&lt;/a&gt;, &lt;a href=&quot;https://twitter.com/brianleetrades&quot;&gt;twitter&lt;/a&gt;, &lt;a href=&quot;https://www.youtube.com/brianleetrades&quot;&gt;YouTube&lt;/a&gt;).  Brian is an interesting guy - a former professional gamer who&amp;#039;s been trading full time for 3 years now. He&amp;#039;s a systems trader that focuses on small caps and uses risk/reward and R in his trading.&lt;/p&gt;&lt;p&gt;I like how Brian is an open book - he is eager to share his experiences and what he&amp;#039;s learned. He&amp;#039;s a great example of someone who does really well trading a system with a low win rate (about 30%).&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt;There are so many but I think the most overrated advice is always the kind that is unactionable. It always irks me when I see advice being given where it sounds irrefutably true, but it leaves the recipient with more questions than answers. An example might be &amp;quot;let winners run&amp;quot;. So the question becomes HOW? What underlying systems are the reason you can do so? Be it an indicator, technical setup or simply removing yourself from the equation with trailing. Anything remotely specific would help a trader take action, learn from their experience and make a decision to ultimately let go or work with it.&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt;Again, there are so many to pick from. I would ultimately say it has to do with the simple mathematics behind a successful and profitable system. Traders often overlook what information their accumulated averages can provide in forecasting their success or failure. What if your system is ultimately unprofitable over the course of 1000 trades and you were working hard each and everyday to improve your executions fruitlessly? I think being able to translate what you&amp;#039;ve done and then make the necessary adjustments is key. Sometimes the profitable route is not the most comfortable, would you sacrifice win rate in order to succeed? I think a lot of traders want to win above all else and sacrifice their entire expectancy as a result.&lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt;Just because it&amp;#039;s THAT important, it would have to be &lt;a href=&quot;https://amzn.to/2ZxISbx&quot;&gt;Atomic Habits by James Clear&lt;/a&gt; despite having read that a year ago or so. Atomic habits works beautifully in tandem with &lt;a href=&quot;https://amzn.to/2zinPP8&quot;&gt;The Compound Effect by Darren Hardy&lt;/a&gt;. Acknowledging that the little things you do each day can add up massively over the course of a lifetime is a perspective shock like none other. We all know these simple truths intellectually, but to get it drilled into your psyche is a powerful thing. Nearly all of the little efficiencies in my life were a direct result of these books and those habits continue to prove their worth each and every day.&lt;/p&gt;&lt;p&gt;Questions for Brian? &lt;a href=&quot;http://twitter.com/brianleetrades&quot;&gt;Hit him up on Twitter.&lt;/a&gt;&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee? Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Risk Management a Trading Super Power?</title>
        <link href="https://davemabe.com/is-risk-management-a-trading-super-power"/>
        <id>https://davemabe.com/is-risk-management-a-trading-super-power</id>
        <published>2020-05-07T09:33:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Every once in a while you&amp;#039;ll hear someone make a seductive claim. It goes something like this:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;As long as you have good risk management and size your positions properly you can make money with even random trading entries.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Once you start looking you see various forms of this concept everywhere - it&amp;#039;s even mentioned at least once in the well known Market Wizard books by Jack Schwager. For the first part of my trading career I believed this. In fact, I made this argument to several people over the years.&lt;/p&gt;&lt;p&gt;After more experience and &lt;a href=&quot;https://www.davemabe.com/the-best-way-to-become-a-stronger-trader/&quot;&gt;trading multiple strategies&lt;/a&gt;, I no longer believe this to be the case.  First some background.&lt;/p&gt;&lt;h2&gt;The First Trading Lesson I Learned&lt;/h2&gt;&lt;p&gt;My first trading light bulb moment was about risk.  When you make a trade you have a certain amount of capital at work, but what I realized was that entire amount wasn&amp;#039;t really at risk. Of course, yes, technically it is &amp;quot;at risk&amp;quot;, but as you are probably aware if you&amp;#039;re reading this, that&amp;#039;s not the best way to think about risk when trading.&lt;/p&gt;&lt;p&gt;What you really have &amp;quot;at risk&amp;quot; during your trade is your maximum loss you&amp;#039;re willing to take on the trade, not the total amount of capital at play during your trade.&lt;/p&gt;&lt;p&gt;Luckily I internalized this concept before I took my first trade. It&amp;#039;s a fundamental building block of every strategy I trade.&lt;/p&gt;&lt;h2&gt;My First Trading Strategy&lt;/h2&gt;&lt;p&gt;I think a lot about the first strategy I ever traded. I studied very closely &lt;a href=&quot;http://www.maoxian.com&quot;&gt;Maoxian&lt;/a&gt;&amp;#039;s dummy trading lessons. There was a lot of valuable information in those trade reviews. (It&amp;#039;s no longer on his site but he tells me that he has located an archive that he will be restoring when he gets to it.)&lt;/p&gt;&lt;p&gt;I went to Atlanta to visit my sister-in-law and while I was there I contacted &lt;a href=&quot;http://michaelseneadza.com/&quot;&gt;Trader Mike&lt;/a&gt;, a well known trading blogger at the time who lives in Atlanta, to see if I could look over his shoulder while he traded one day. He agreed and I watched him trade the open and then we went to lunch and I soaked up every minute with him. He was very open and helpful and encouraging. The one idea that stuck out at me was risk management and proper position sizing.&lt;/p&gt;&lt;p&gt;I went back home and within a few days I started making some trades using this strategy. While I wasn&amp;#039;t wildly successful right away, I was mostly profitable those first few months.&lt;/p&gt;&lt;p&gt;I have made major modifications to that core strategy over the years, but it&amp;#039;s essentially the same theory and I&amp;#039;ve traded it continuously for almost 15 years now.&lt;/p&gt;&lt;p&gt;At the time I assumed that risk management was the key to that early success. It was just a matter of time before I could apply proper position sizing to another strategy and it would be successful too.&lt;/p&gt;&lt;h2&gt;I Was Just Lucky&lt;/h2&gt;&lt;p&gt;I started branching out into additional trading strategies. How hard is it to come up with a random trading idea? Not hard - just come up with any idea and apply proper position sizing to it and it should work - so the theory goes.&lt;/p&gt;&lt;p&gt;After taking this approach with a variety of strategies, I began to realize slowly over time (too slowly!) that proper position sizing wasn&amp;#039;t a strategy in itself that could cure any trading idea no matter how bad it is.&lt;/p&gt;&lt;p&gt;I realized that I didn&amp;#039;t have some sort of natural, innate ability to be a trader: I was just naively lucky when I started!  That first strategy I traded just happened to be one with a solid theory that was pretty stable over time and I just happened to have come across it. What would have happened if the strategy I first traded was, like most strategies, pretty mediocre?  To be honest I have no idea what I would be doing now.&lt;/p&gt;&lt;h2&gt;It&amp;#039;s the Strategy&lt;/h2&gt;&lt;p&gt;This point might be obvious to most traders and indeed it does feel weird to even type it: the strategy you trade is &lt;strong&gt;really, really important&lt;/strong&gt;. That first strategy I traded was way better than I thought it was at the time.&lt;/p&gt;&lt;p&gt;The idea that you can take ANY RANDOM entry and simply apply good money management and position sizing and have it be profitable is one of the &lt;strong&gt;most common trading myths&lt;/strong&gt; I see.&lt;/p&gt;&lt;p&gt;Good position sizing is extremely important but it&amp;#039;s not going to save a crappy strategy. It is certainly a fundamental requirement for good trading but it is not the strategy itself!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Worst Market Indicator</title>
        <link href="https://davemabe.com/the-worst-market-indicator"/>
        <id>https://davemabe.com/the-worst-market-indicator</id>
        <published>2020-04-28T11:38:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary type="text">&lt;p&gt;Breaking down a strategy by day of the week almost always shows some days outperforming others. Is it meaningful?&lt;/p&gt;</summary>
        <content type="html">&lt;p&gt;A trader friend of mine was attending a webinar this week and sent me this chart from one of the slides that was being presented.&lt;/p&gt;&lt;p&gt;The chart clearly shows that there is a wide variety of resulting performance based simply on the day of the week that the trades were initiated on.  The data doesn&amp;#039;t lie, right? Of course the data isn&amp;#039;t outright LYING but it is certainly setting a trap that is easy to fall into.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why the day of the week data trick is so tempting but ultimately meaningless.&lt;/p&gt;&lt;h2&gt;The &amp;quot;Data Doesn&amp;#039;t Lie&amp;quot; Stage of Trader Development&lt;/h2&gt;&lt;p&gt;When you first start trading with a statistical perspective it really seems like a super power and in a lot of ways it is.  You can predict the future in some sense.  Your backtester is a powerful bullshit detector - a huge time saver when you&amp;#039;re honing your trading strategies.&lt;/p&gt;&lt;p&gt;This approach gives you the ability to quickly prove to yourself whether a strategy works or not. It&amp;#039;s a quantum leap forward in trader development and very few traders have the ability to even consider getting to this point.&lt;/p&gt;&lt;p&gt;However, at this stage there is a trap that most traders at this level fall into and can never get out of. I call this the &lt;strong&gt;Data Doesn&amp;#039;t Lie Trap&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I was in this trap for several months many years ago. Having so much data at your fingertips is very powerful, but it&amp;#039;s easy to become enamored of the data itself.  When a backtest is telling you something, there&amp;#039;s a strong tendency to believe it.  The data doesn&amp;#039;t lie!&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what is difficult about this stage: you have to become intelligently skeptical of what the data is telling you. What most traders never fully realize is that while the data doesn&amp;#039;t lie, it presents all sorts of false positives that &lt;em&gt;appear &lt;/em&gt;to dramatically affect your trading system but are actually completely meaningless.&lt;/p&gt;&lt;p&gt;The problem with the day of the week indicator is that it&amp;#039;s very easy to come up with a story to convince yourself that it&amp;#039;s meaningful. My system doesn&amp;#039;t trade well on Fridays? I bet I&amp;#039;m looking forward to the weekend and a little bit tired compared to other days of the week.  My Mondays look like they&amp;#039;re underperforming?  It&amp;#039;s got to be because I&amp;#039;m tired from the weekend and a little irritable.&lt;/p&gt;&lt;p&gt;See how easy it is to fool yourself into thinking the day of the week is super meaningful?&lt;/p&gt;&lt;h2&gt;Look at a Random Filter&lt;/h2&gt;&lt;p&gt;The day of the week filter is perfectly set up to be one of these false positives.  To demonstrate it, let&amp;#039;s look at some equity curves from one of my trading systems.  For this example I assigned a completely random value between 0 and 1 to each trade in the backtest. It&amp;#039;s a random value, so there&amp;#039;s &lt;strong&gt;literally no reason&lt;/strong&gt; to expect it to have any impact on the trading system.&lt;/p&gt;&lt;p&gt;But what do we find?&lt;/p&gt;&lt;p&gt;When we look at equity curves based on 5 segments of the random value, you see that one segment seems to be dramatically better than the other segments. Values between 0.39 and 0.60 of our random filter outperform all other values of this filter.&lt;/p&gt;&lt;p&gt;The data doesn&amp;#039;t lie, right?&lt;/p&gt;&lt;p&gt;Of course, I chose 5 different segments for a reason - there are five trading days in a week. If you compare the curves from the random value with the curves from the day of the week chart you see that they don&amp;#039;t look that much different.&lt;/p&gt;&lt;p&gt;It&amp;#039;s very likely that the day of the week filter is just as random as our arbitrarily chosen values in our random filter. But looking at either chart it&amp;#039;s VERY TEMPTING to blindly follow the data and draw conclusions from it.&lt;/p&gt;&lt;p&gt;The day of the week indicator is perfectly set up to yield false positives precisely because there are exactly five trading days in a week.  If you segmented almost any system into five buckets it would be surprising if you DIDN&amp;#039;T see random variation.&lt;/p&gt;&lt;h2&gt;Can Day of the Week Ever Be Valid?&lt;/h2&gt;&lt;p&gt;I can imagine some trading strategies that might be influenced by the day of the week.  For example, a strategy could be affected by options expiration dates which occur on Fridays. I also suspect that earnings announcements are clustered around certain days of the week which &lt;em&gt;could &lt;/em&gt;affect a strategy.&lt;/p&gt;&lt;p&gt;For most strategies, though, including the ones represented in the charts above, the relationship with day of the week will be meaningless.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s think about it more precisely though.  The relationship might not be completely meaningless, but that&amp;#039;s not really the question.  The real question is how MUCH of an effect does it have on your trading system?  Is the affect strong enough to make trading decisions based on it?&lt;/p&gt;&lt;p&gt;And the even MORE important question is how big is the effect &lt;em&gt;relative to other filters&lt;/em&gt; we might want to use in our trading systems?&lt;/p&gt;&lt;p&gt;You can imagine a filter that shows a consistent relationship across time with your trading system, but the effect might be so tiny as to be worthless.&lt;/p&gt;&lt;p&gt;In the chart above, I concocted a hypothetical example to demonstrate.  The blue line represents trades that have a &lt;em&gt;slightly stronger&lt;/em&gt; edge than the red line using a fake indicator I created with values between 0 and 1. The blue line is very consistently stronger than the red line, but the edge is very slight. Despite the perfect consistency, this indicator would not be a good candidate for creating a rule for our trading system because it just doesn&amp;#039;t provide much value since the edge is so small.&lt;/p&gt;&lt;h2&gt;How to Make Sure You&amp;#039;re Not Fooled by Data&lt;/h2&gt;&lt;blockquote&gt;&lt;p&gt;The first principle is that you must not fool yourself and you are the easiest person to fool.&lt;/p&gt;&lt;p&gt;&lt;br&gt;Richard Feynman&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;The above quote by Richard Feynman is one of my all time favorite trading quotes despite the fact that he was not a trader.&lt;/p&gt;&lt;p&gt;The point is you never really know if you&amp;#039;re being fooled by the data! There&amp;#039;s no test you can run to make 100% certain that you&amp;#039;re making the correct choices in designing your trading system.&lt;/p&gt;&lt;p&gt;Definitely a scary thought! The way I think about it, though, is that it&amp;#039;s actually good to have a little bit of doubt in your mind about your trading. A healthy level of humility is actually quite motivating and encourages you to continue to learn and improve your trading. This little bit of worry is the fuel for studying your systems and digging deeper than the average trader thinks is sufficient.&lt;/p&gt;&lt;p&gt;Most people have trouble thinking clearly about uncertainty and risk in general.  Understanding and accepting this uncertainty and trading well in spite of it is what will separate you from even the good traders.&lt;/p&gt;&lt;h2&gt;What&amp;#039;s Your Vote for the Worst?&lt;/h2&gt;&lt;p&gt;Do you have a market indicator that you think is totally overrated?  Let me know.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Best Way to Become a Stronger Trader</title>
        <link href="https://davemabe.com/the-best-way-to-become-a-stronger-trader"/>
        <id>https://davemabe.com/the-best-way-to-become-a-stronger-trader</id>
        <published>2020-04-21T11:18:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You&amp;#039;re trading a strategy that works. Your trading profits are becoming more and more consistent, drawdowns aren&amp;#039;t too brutal, and you&amp;#039;re proud of what you&amp;#039;ve created. Congratulations! You&amp;#039;ve accomplished what untold numbers of traders could not.&lt;/p&gt;&lt;p&gt;This should be one of the most satisfying feelings you feel as a trader. What you might not realize, though, is that this feeling of satisfaction can turn to despair in an instant. The market can change quickly and it doesn&amp;#039;t care how much work you&amp;#039;ve put in to developing your strategy or how long it&amp;#039;s been profitable.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re trading a single strategy, your trading is vulnerable - no matter how good the strategy is. In order to be successful in the long run you&amp;#039;re going to need to &lt;strong&gt;trade multiple strategies&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;A couple weeks ago I noticed one of my main trading strategies was performing really poorly. It&amp;#039;s a short strategy and I would have thought it would be killing it in March 2020 but surprisingly it didn&amp;#039;t. After researching for two solid days and trying to figure out a way to adjust it, I ended up abandoning it (at least temporarily).&lt;/p&gt;&lt;p&gt;This was my very first profitable trading strategy that I created all on my own. I&amp;#039;ve traded some form of this strategy for 13 years! This strategy has put my daughters through college and sent us on family vacations over the years. It allowed us to move houses and has given us freedom.&lt;/p&gt;&lt;p&gt;I hate to see it go, but what would have been devastating is if this was still my ONLY strategy. If this would have happened in 2015 or 2016 when it was by far my main strategy and I had not yet gotten other strategies off the ground it would have been soul crushing.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s why.&lt;/p&gt;&lt;h2&gt;Don&amp;#039;t Fall in Love with your Strategy&lt;/h2&gt;&lt;p&gt;When you create your first profitable trading strategy it is strong source of pride. You&amp;#039;ve literally invented something that creates money! This is fantastic.&lt;/p&gt;&lt;p&gt;The problem is that immense pride in your strategy will eventually make you cling to this strategy &lt;strong&gt;longer than you should&lt;/strong&gt;. There will come a time when your strategy will require major work to continue to be profitable. It might even become completely worthless. It could be happening right now and you don&amp;#039;t even realize it.&lt;/p&gt;&lt;p&gt;When it happens, there won&amp;#039;t be anyone telling you &amp;quot;it&amp;#039;s time! this strategy needs a major overhaul&amp;quot; or &amp;quot;you should scale back your size on this strategy now.&amp;quot; It likely won&amp;#039;t happen quickly and obviously - it will happen slowly and subtly over time. The change will sneak up on you and the warning signs will be small and easy to explain away.&lt;/p&gt;&lt;p&gt;That pride you have in your creation will be a serious vulnerability. It will be difficult to abandon your strategy or admit that it has become flawed because it has become part of your trading identity. To abandon it will mean on some level that you&amp;#039;re giving up on yourself as a trader.&lt;/p&gt;&lt;h2&gt;Going from One to Two Strategies is Huge&lt;/h2&gt;&lt;p&gt;I think the biggest step a trader can make is to go from one successful trading strategy to two. Because of the psychological issues mentioned above, this step is even harder than creating your very first strategy! As you solidify that first strategy it becomes part of who you are. You start thinking &amp;quot;I&amp;#039;m the kind of trader that trades X.&amp;quot;&lt;/p&gt;&lt;p&gt;Once you do that it becomes harder to create a strategy that trades Y.&lt;/p&gt;&lt;p&gt;But the benefits from having now TWO truly distinct strategies are immense. All at once your trading becomes much more resilient to drawdowns since most of them will be more shallow. See these lines in the chart below. You can see the combined equity curve of both strategies together is a dramatic improvement from either of the two strategies alone.&lt;/p&gt;&lt;p&gt;The more subtle benefit, though, is that you&amp;#039;ll become less married to your strategies. Instead of having a lot of emotional investment tied up in them, you become a little bit removed.&lt;/p&gt;&lt;p&gt;You become a much more objective observer of your strategies - they need to constantly prove their worth to YOU instead of the other way around. You&amp;#039;ve got options now!&lt;/p&gt;&lt;p&gt;This step took me 7-8 years to truly achieve.&lt;/p&gt;&lt;h2&gt;Your Trading Intuition Improves&lt;/h2&gt;&lt;p&gt;Once you are able to get a second trading strategy online, your trading intuition will be far better.  There are a lot of trading strategies out there - you can&amp;#039;t trade all of them. At this point you&amp;#039;ll be much better at evaluating them and figuring out which ideas to pursue with your finite amount of time.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll recognize some of the subtleties of what happens when you start trading a strategy live versus a backtest or paper trading. You&amp;#039;ll be much more prepared to come up with your third, fourth, or fifth strategy. You&amp;#039;ll waste less time on trading ideas that don&amp;#039;t pan out because you&amp;#039;ll have developed the experience to recognize bad ideas and good ones.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll become more like a general manager of a baseball team, having a broader picture about what&amp;#039;s best for the long term health of your trading team, identifying strengths and weaknesses and addressing them.&lt;/p&gt;&lt;p&gt;Your trading will be &lt;strong&gt;far more robust&lt;/strong&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Backtesting the Closing Range Trading System</title>
        <link href="https://davemabe.com/backtesting-the-closing-range-trading-system"/>
        <id>https://davemabe.com/backtesting-the-closing-range-trading-system</id>
        <published>2020-04-07T11:38:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last week I posted a &lt;a href=&quot;https://www.davemabe.com/ken-calhouns-closing-range-breakout-system/&quot;&gt;description of Ken Calhoun&amp;#039;s Closing Range&lt;/a&gt; trading system. Now I&amp;#039;ll go through the process of backtesting the system itself and comparing my theories about what data points would affect its profitability.&lt;/p&gt;&lt;p&gt;A brief overview of the system itself.  It looks for a breakout in the first 15 minutes above the closing 30-minute range from the prior day and uses a stop at the bottom of the closing range.  Pretty simple:&lt;/p&gt;&lt;p&gt;As I suspected, the system puts out a LOT of trades.  Including &lt;strong&gt;all these trades&lt;/strong&gt; produces some pretty poor results, so the question becomes under what circumstances should you take trades.  That is, which trades from the system should you actually take and which ones should you ignore?&lt;/p&gt;&lt;p&gt;Is it even possible to find a profitable subset of trades from this system with an equity curve that looks that bad?  You might be surprised.  Let&amp;#039;s take a look.&lt;/p&gt;&lt;h2&gt;Which Filters to Use?&lt;/h2&gt;&lt;p&gt;I suggested in my last post that the filters that would make the most difference in this system would be:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;The height of the closing range&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Volatility&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The opening gap/immediate trading action&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;So let&amp;#039;s look at each of these.&lt;/p&gt;&lt;h3&gt;Height of Closing Range&lt;/h3&gt;&lt;p&gt;When you look at the height of the closing range you see that it has increasing profitability the larger the value is.  Here&amp;#039;s a chart of the equity curves for each range of values.&lt;/p&gt;&lt;p&gt;The purple line represents the trades with the highest closing range height values in the trade set.  The smaller the values, the worse the trades.&lt;/p&gt;&lt;h3&gt;Volatility&lt;/h3&gt;&lt;p&gt;One filter I look at in almost every system I examine is &lt;strong&gt;volatility&lt;/strong&gt;.  How much does this stock move &lt;em&gt;normally&lt;/em&gt;, outside of the day in question?  Stocks that typically move more, in general, are more profitable to trade.  But wait - we&amp;#039;re trading this event that&amp;#039;s already unusual by definition - does it really matter what it does on a &lt;em&gt;normal &lt;/em&gt;day?  Why?&lt;/p&gt;&lt;p&gt;Because stocks tend to revert back to their normal character, so even on unusual days this tendency will still exist.  Given the fact that this trading strategy has relatively few requirements for &amp;quot;unusualness&amp;quot; anyway, it will likely revert to normal even more so.  Here I use &lt;strong&gt;Average True Range&lt;/strong&gt; &lt;strong&gt;(ATR)&lt;/strong&gt; for my measure of volatility.&lt;/p&gt;&lt;p&gt;Notice that the highest levels of values for the Average True Range are the most profitable (the purple line).  All lower values tend to be grouped together.  Also, note that all these lines each represent the same number of trades.&lt;/p&gt;&lt;h3&gt;Opening Gap%&lt;/h3&gt;&lt;p&gt;I thought that the opening gap would be important for this trading system.  Imagine a large, meaningful gap down.  Just how important can the closing range from yesterday really be in that situation?  The more meaningful the gap, the less meaningful the closing range.&lt;/p&gt;&lt;p&gt;Sure enough, you see another strong correlation here.  Literally the bigger the gap the worse the trades perform.  The smaller gaps represented by the red line are actually starting to look like a system you could trade!&lt;/p&gt;&lt;h3&gt;What to Look at Next?&lt;/h3&gt;&lt;p&gt;There are other filters I&amp;#039;d want to look at next, but I believe the improvement gains from additional filters would be smaller and less obvious.&lt;/p&gt;&lt;p&gt;What other filters do you think would be worth examining?  &lt;strong&gt;Let me know in the comments&lt;/strong&gt; and I&amp;#039;ll try to test them and post an update.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Ken Calhoun's Closing Range Breakout System</title>
        <link href="https://davemabe.com/ken-calhouns-closing-range-breakout-system"/>
        <id>https://davemabe.com/ken-calhouns-closing-range-breakout-system</id>
        <published>2020-03-23T11:47:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In the April 2020 issue of Technical Analysis of Stocks and Commodities magazine, Ken Calhoun outlines his &lt;strong&gt;Closing Range Breakout&lt;/strong&gt; trading system. Ken is &lt;a href=&quot;https://twitter.com/kencalhoun&quot;&gt;on Twitter&lt;/a&gt; and tweeted this interestingly prescient market call on January 24:&lt;/p&gt;&lt;p&gt;Not bad actually.&lt;/p&gt;&lt;p&gt;In this post I&amp;#039;ll outline the &lt;strong&gt;Closing Range Breakout strategy&lt;/strong&gt;, provide some commentary, and offer some thoughts on how I would modify it if I was forced to trade it.&lt;/p&gt;&lt;h2&gt;The System Details&lt;/h2&gt;&lt;p&gt;This intraday system is based on two days of trading - it&amp;#039;s a combination of the range of the last 30 minutes of trading yesterday, plus a modest gap down today below that range.  If that occurs, then you&amp;#039;re looking for a breakout above the top of the range from the last 30 minutes yesterday and you&amp;#039;re placing a stop at the low of that range. Here&amp;#039;s a chart that is included in the article that makes it easy to see.&lt;/p&gt;&lt;p&gt;For this example, the closing range yesterday (2/7/2020) for AMD was $49.65 - $49.98.  The next day (2/10/2020) it gapped down slightly opening at $49.47.  It quickly went above the high of yesterday&amp;#039;s closing range ($49.98) so here is where you&amp;#039;d go long.  You&amp;#039;d put a stop underneath the low of the closing range at $49.64 or so.&lt;/p&gt;&lt;p&gt;There&amp;#039;s no mention of a target or a hold time in the article, but it seems reasonable to assume you&amp;#039;d be holding until at least the close.&lt;/p&gt;&lt;p&gt;Ken mentions that high-frequency algorithms typically use daily open/high/low/close values so this technique allows you to gain some &amp;quot;price improvement&amp;quot; by getting in before it hits the daily high.  He also mentions that he often uses an additional strategy to scale into this trade later.  (If you know me you know how skeptical I am when people mention how &lt;a href=&quot;https://www.davemabe.com/change-my-view-adding-to-positions-is-too-hard-and-most-traders-shouldnt-do-it/&quot;&gt;gracefully they scale into trades&lt;/a&gt;.)&lt;/p&gt;&lt;h2&gt;Is This Strategy Worth Pursuing?&lt;/h2&gt;&lt;p&gt;Most of the strategies I read about I&amp;#039;m highly suspicious of.  I actually think this one might be worth further study.  There are a lot of details missing (hold time?) and he does include some apparent rules with no detailed explanation.  For example, he actually uses $50.20 for the entry above and provides the arbitrary explanation that &amp;quot;$50.00 + $0.20 = $50.20&amp;quot;.  He also mentions that it is &amp;quot;best&amp;quot; if it takes less than 15 minutes for the range breakout to occur, but no mention of what he considers &amp;quot;too late&amp;quot; to take the trade.&lt;/p&gt;&lt;p&gt;Ken also mentions that this is a relative strength play, but the volume on the entry day is not particular strong compared to the previous day.  Here&amp;#039;s a daily chart of AMD with arrows pointing to the entry day.&lt;/p&gt;&lt;p&gt;Although a perfect description isn&amp;#039;t included, there are enough details to warrant researching this idea further.&lt;/p&gt;&lt;h2&gt;Next Steps for this Strategy&lt;/h2&gt;&lt;p&gt;It&amp;#039;s important to know your trading style and what is in the realm of possibility for you to trade.  The very first question I ask myself is how many trades per day does the system generate.  Without doing any backtesting my guess is that this system likely generates a lot of trades since the rules that were outlined are fairly loose, especially given the apparent lack of minimum volume requirements.&lt;/p&gt;&lt;p&gt;I&amp;#039;m looking for trading systems that, prior to any filtering, produce a lot of trades. There are &lt;a href=&quot;https://www.davemabe.com/what-frequency-of-trades-is-best-for-a-system/&quot;&gt;a variety of reasons for this&lt;/a&gt;, but it boils down to the fact that with many trades to start off with, I know I&amp;#039;ll be able to selectively filter the trades down to the most profitable ones and still have it trade frequently.&lt;/p&gt;&lt;p&gt;The good news is that this strategy should be pretty easy to generate a backtest for.  The rules are clear enough and not very complicated.&lt;/p&gt;&lt;p&gt;After generating the backtest I&amp;#039;d want to look at two different things right away:&lt;/p&gt;&lt;h3&gt;The Height of the Closing Range&lt;/h3&gt;&lt;p&gt;Because the closing range constitutes the entire setup of the trade, it will likely have a dramatic effect on the system.  Also, we&amp;#039;re not talking about the &lt;strong&gt;opening range&lt;/strong&gt; which is typically wide - sometimes these closing ranges can be really tight.  If that range is tight then any setup you enter the following morning is going to have a stop that&amp;#039;s really tight too.  There will be plenty where that distance is prohibitively tight.&lt;/p&gt;&lt;p&gt;There will also be stocks where that range is really wide - too wide to make a profitable trade since the risk/reward ratio will not be suitable.&lt;/p&gt;&lt;h3&gt;The Opening Gap and Immediate Trading Range&lt;/h3&gt;&lt;p&gt;The second aspect that will likely be very important to the profitability of the system is the opening gap and the first few minutes of trading prior to the trade signal.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Recency &lt;/strong&gt;is really important to think about when evaluating trading systems.  What do I mean by that?  In general, the more recent action is typically the most important.  For example, which is more relevant to your system: yesterday&amp;#039;s opening range or today&amp;#039;s opening range?  Of course today&amp;#039;s opening range because yesterday&amp;#039;s opening range is old news at this point.  This is true for a lot of indicators too.  Which is more important: the 50 day moving average or the 200 day moving average?  A lot of traders look at both but if I have to choose I&amp;#039;m going to concentrate on the 50 day since it describes more recent action.&lt;/p&gt;&lt;p&gt;The most recent action prior to the signal will give you the most clues about profitability.  The gap distance will be very important.  The gap would definitely need to be modest.  Defining what &amp;quot;modest&amp;quot; means for this system would be top priority.  A &lt;em&gt;large &lt;/em&gt;gap down followed by a breakout would mean price has covered a lot of distance in a short amount of time and I&amp;#039;d worry that the &amp;quot;move had been made&amp;quot; already.  Notice even in this well chosen example the trade comes close to stopping out after just a few minutes:&lt;/p&gt;&lt;h2&gt;Ponder the System&amp;#039;s &amp;quot;Theory&amp;quot;&lt;/h2&gt;&lt;p&gt;A big mistake that a lot of traders make is they don&amp;#039;t think deeply about the trading system &amp;quot;theory&amp;quot;.  When I first started backtesting I would often make this mistake.  It&amp;#039;s tempting to simply follow what the data tells you.  The data doesn&amp;#039;t lie, right?&lt;/p&gt;&lt;p&gt;What you realize with more experience is that while it&amp;#039;s true the data doesn&amp;#039;t outright &lt;em&gt;lie&lt;/em&gt;, it frequently &lt;em&gt;misleads&lt;/em&gt;.  Fast forward to the point where you&amp;#039;re trading this system and an inevitable drawdown comes.  You need to be able to believe thoroughly in the underlying theory of your system to trade through that drawdown.  If you don&amp;#039;t you&amp;#039;ll likely give up.&lt;/p&gt;&lt;p&gt;My biggest worry now about this particular trading system is the &lt;strong&gt;closing range&lt;/strong&gt; itself.  What&amp;#039;s the theory behind why that range is so important?  The system is really putting a lot of importance on it - after all the breakout and the stop is 100% defined by that closing range.  I know from experience that price does a lot of aimless drifting during the last half hour of trading.  You can &lt;em&gt;always&lt;/em&gt; optimistically concoct a story about why that range is important enough to create a trading system around it.  Right now I&amp;#039;m not convinced that there&amp;#039;s a compelling story.  I would spend a lot of my research time pondering this question with a very skeptical stance.&lt;/p&gt;&lt;h2&gt;Is it Tradeable?&lt;/h2&gt;&lt;p&gt;I&amp;#039;m not sure but it seems worth looking into.  Even if you don&amp;#039;t end up with a tradeable system, this type of research can be very valuable.  You&amp;#039;ll pick up some tendencies and notice some behavior trends that you can use to apply to other systems.&lt;/p&gt;&lt;p&gt;What other factors would you look at with this system?  Are there modifications you&amp;#039;d make to make it more profitable?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">3 Things You Can Do to Trade Profitably During CoronaVirus</title>
        <link href="https://davemabe.com/3-things-you-can-do-to-trade-profitably-during-coronavirus"/>
        <id>https://davemabe.com/3-things-you-can-do-to-trade-profitably-during-coronavirus</id>
        <published>2020-03-16T14:08:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The volatility we&amp;#039;re currently seeing in this market is enormous and marks a huge change from what feels like a very short time ago.  Just look at this chart of SPY and it&amp;#039;s easy to see how things have so dramatically changed.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve done tons of research into understanding how my trading systems work and knowing what factors affect them. When the market has changed so dramatically though, how valid can all that research really be?  How much weight do you place on the recent market action versus the market history up to that point?  Of course the market has changed - does that mean my trading systems have changed too?  By how much?&lt;/p&gt;&lt;p&gt;These are somewhat philosophical questions that every trader will handle differently.  Some trading systems are highly sensitive to the overall market while others are more resistant to it.  Here are some things I do after hours or on the weekends to prepare answer some of these questions.&lt;/p&gt;&lt;h2&gt;1. Update your Backtests with Recent Data&lt;/h2&gt;&lt;p&gt;Remember back when March Madness still existed?  Imagine filling out your bracket and trying to make the best predictions you can while &lt;strong&gt;only looking at the first half of the season&lt;/strong&gt;.  The most recent games are OF COURSE the most important!  Ignoring them would be insane.  That is what it&amp;#039;s like when you make trading decisions based on older data.&lt;/p&gt;&lt;p&gt;Now is the time to update your backtests so they contain the most up to date information including recent trades and various data points from the overall market that you think might be important to your systems.  I spent the weekend updating all the backtests for the systems that I trade.  This gives me as complete a picture as I can reasonably create.&lt;/p&gt;&lt;h2&gt;2. Compare Performance to Similar Historical Markets&lt;/h2&gt;&lt;p&gt;This is something I do routinely, but the change has been SO drastic that it&amp;#039;s hard to find ANY similar historical market.  If you look hard enough, though, you realize that literally every trading day is different.  Look at the candles identified by the blue arrow in the chart below.  Generally speaking the candles are similar - pretty small and mostly green.  Even during this period of what seems like consistency you&amp;#039;ll find lots of variation from one day to the next and one week to the next.  This should worry you during &amp;quot;normal&amp;quot; times but during times like this with high volatility it makes me worry a little less.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I do to compare to similar markets of the past even when no similar ones REALLY have occurred.&lt;/p&gt;&lt;h3&gt;Data Points that Describe the Current Market&lt;/h3&gt;&lt;p&gt;It&amp;#039;s tempting to look at a data point like Average True Range (ATR) - a popular indicator to determine volatility.  Here&amp;#039;s a ten period ATR for SPY with the values for each day plotted according to the year it occurred.  You come away with the impression that this market is roughly twice as volatile as even the 2008 market. No other market can even compare - yikes!&lt;/p&gt;&lt;p&gt;The true picture is more complicated though.  The SPY, of course, is much higher now than it was in 2008 so a 2 point swing in the market in 2020 is nothing but in 2005 there were hardly any days with that much range.  When you look by ATR &lt;em&gt;as a percent&lt;/em&gt; the data looks much different:&lt;/p&gt;&lt;p&gt;The market from 2008 and 2020 have now flipped!  2008 looks way more dramatic than the current market.  You&amp;#039;ll also notice that although there weren&amp;#039;t as many volatile days since 2008, there are still some useful periods in recent years to compare to.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve spent a good bit of time looking at my trades during the periods in 2015, 2016, 2018, and 2019 where the SPY ATR percent was greater than 2.  Some of my trading systems did well during these periods, others poorly, and for others the performance was about average. Going through this process gives me a much better perspective on the current market.  I can make decisions with more confidence.  For example, I know which of my trading systems I should be trading with bigger size now and which I trade smaller or not at all.&lt;/p&gt;&lt;p&gt;In addition to ATR percent, I&amp;#039;d suggest taking a look at the market&amp;#039;s position in its recent range and look for times where ATR percent was relatively high AND the market is very low in its recent range.&lt;/p&gt;&lt;h2&gt;3. Do as Much Prep as you can After Hours&lt;/h2&gt;&lt;p&gt;When you&amp;#039;re looking for unusual situations to trade - like stocks gapping up or down - what do you do when EVERYTHING is gapping up? These recent days have put me in exactly this situation and it&amp;#039;s something &lt;a href=&quot;https://www.davemabe.com/how-to-trade-when-the-entire-market-is-moving/&quot;&gt;I thought I was prepared for&lt;/a&gt;.  Last Wednesday I tweeted this:&lt;/p&gt;&lt;p&gt;Tomorrow there are going to be even MORE candidates for one of my trading systems.  How am I preparing for this so I&amp;#039;m not overwhelmed like the other day?  After all, if there are a lot of candidates on some days for your system, those are the days with a chance of being very, very profitable.  Plan for them since they don&amp;#039;t come very often!&lt;/p&gt;&lt;p&gt;Here&amp;#039;s what I do.  I know that there are certain factors that correlate highly with the profit of my systems.  Relative volume is a good example for one of my systems but for others that value is not as important.&lt;/p&gt;&lt;p&gt;Normally I&amp;#039;ll take all the trades that my system spits out, but on the rare days where there are more trades that I&amp;#039;ll be able to take I&amp;#039;ll only take trades that rank highly on the most important factors for that particular system.  For each of my strategies I have an alert window in Trade-Ideas.  Those are alert windows for &amp;quot;normal&amp;quot; days.  I also have prepared alternate windows for each of the strategies for &amp;quot;busy&amp;quot; days.  These busy day windows have more restrictive filters, so if I have to choose between trades I can quickly execute my pre-planned strategy for making that decision rather than having to make a decision I&amp;#039;m not prepared for.&lt;/p&gt;&lt;p&gt;In addition, I already know that tomorrow there will be a VERY LARGE number of candidates in one system.  Normally I look at the premarket action to determine what to trade which on regular days I have plenty of time to do.  There will not be nearly the amount of time necessary to do that when there&amp;#039;s 12 times the number of candidate though!&lt;/p&gt;&lt;p&gt;There are some factors I can look at NOW (on the weekend) to plan ahead though.  What I normally do just before the market open I&amp;#039;ll do this weekend - whittling the list down to a manageable number of candidates before the time comes.  This is a really valuable exercise not only because I won&amp;#039;t have to skip trading like I did on Wednesday.  It also forces me to learn more about this particular trading system.  For example, perhaps there are some trades in the system that I should &lt;strong&gt;exclude entirely&lt;/strong&gt; even on &amp;quot;normal&amp;quot; days.  Or conversely, maybe there are trades I should be &lt;strong&gt;trading with bigger size&lt;/strong&gt;.  Maybe I&amp;#039;ll find some trades that don&amp;#039;t quite meet the system&amp;#039;s criteria but with a small adjustment I could include them, adding more profit to the system overall.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">5 Simple Questions for Your EOD Trading Review</title>
        <link href="https://davemabe.com/5-questions-i-ask-myself-after-the-market-close"/>
        <id>https://davemabe.com/5-questions-i-ask-myself-after-the-market-close</id>
        <published>2020-03-11T10:49:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;You can prevent trading surprises by asking yourself 5 questions at the end of every trading day. But first some motivation for &lt;em&gt;why&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;It was pretty obvious just listening to it that we needed a new refrigerator. It sounded more like a clothes dryer than a fridge.  As if the loud boisterousness wasn&amp;#039;t enough, every few months I would find a puddle of water in front of the freezer.  I would roll my eyes knowing I had to clear the line from the freezer to the drain pan because it was clogged - again.&lt;/p&gt;&lt;p&gt;You would think that these subtle clues would have been enough to inspire us to replace it with a new one. When we&amp;#039;d settle on one I&amp;#039;d look at the reviews - not exactly confidence inspiring.  Literally every refrigerator on the market, no matter how good the average ranking is, has some absolute horror stories among the one star ratings.  We did, finally, take the plunge and got a new fridge a few days ago.  I didn&amp;#039;t realize it when I placed the order, but it turns out that was the &lt;strong&gt;best decision I made in a long time for a reason I was completely unaware of&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I showed the delivery guys in and pointed to the existing fridge although I could have just told them to use their ears and follow what sounds like an airplane taking off.  They pulled the fridge back from the wall to get it in position to remove and I heard one guy say &amp;quot;uh-oh - you&amp;#039;ve got a problem.&amp;quot;&lt;/p&gt;&lt;p&gt;Our fridge had been leaking from the water line for some time. Yikes!  The boards in our hardwood floor were starting to buckle and I worried that I would have to replace these like I &lt;a href=&quot;https://twitter.com/davemabe/status/1061311640094851072&quot;&gt;did in our bathroom about a year ago&lt;/a&gt;.  How unlucky!  As I looked closer and inspected the damage I realized that we weren&amp;#039;t unlucky at all but the decision to replace the fridge now was so much better than I initially thought for a reason I had no way of knowing at the time. Buying a new fridge now had &lt;strong&gt;allowed me to see this hidden issue before it became bad enough to require a major repair&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;The Fridge Teaches us a Trading Lesson&lt;/h2&gt;&lt;p&gt;What can we learn about trading from this &lt;em&gt;lucky &lt;/em&gt;refrigerator incident?  All of my trading strategies have various levels of automation.  I haven&amp;#039;t manually entered a trade in my brokerage platform in many years.  They&amp;#039;re all entered automatically with the correct size and all predefined stop orders and target orders eliminating my all-to-often human error.&lt;/p&gt;&lt;p&gt;The ease of trading this way gives you more &lt;strong&gt;capacity&lt;/strong&gt; as a trader.  Since you&amp;#039;re not calculating position size in your head and then fumbling around in a clumsy interface to enter orders, you free your valuable time to trade more profitable strategies.  The math is simple: if you can &lt;strong&gt;manually &lt;/strong&gt;initiate a trade every 30 seconds but since you can automatically (or semi-automatically) enter them every 5 seconds (or even 0 seconds) then you have more time to enter more trades in a small amount of time.&lt;/p&gt;&lt;p&gt;I highly recommend this approach and have spent the better part of a decade automating all my strategies to the fullest extent possible.&lt;/p&gt;&lt;p&gt;Remove discretion, eliminate mistakes, increase your trading capacity - what can go wrong? Sounds like nothing but positive outcomes can occur, right?  While this is mostly true, there is a hidden downside that you need to be aware of: &lt;strong&gt;increased risk of neglect&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;It&amp;#039;s easy to set up the automation and forget about it and that&amp;#039;s what many traders imagine automated trading to be.  But that&amp;#039;s not the case at all.  Trading strategies are not static because the market is always changing. For example, here&amp;#039;s a chart of SPY from fall 2019 to the current time - a great example of a stark change in the overall market.  Do you think your trading strategy behaves the same way in these two distinct market types?  Doubtful!&lt;/p&gt;&lt;p&gt;You should understand how your strategy performs in different market types and look for clues along the way to challenge and support your theories. The continually changing overall market is just one of the many things that can cause your strategy to change over time.  This most recent market change was obvious to everyone but a lot of changes can happen very slowly over time and, like my refrigerator leak, are barely noticeable at all.&lt;/p&gt;&lt;h2&gt;Find your Trading Leaks &lt;em&gt;Before&lt;/em&gt; they Become a Problem&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Automated trading is not automatic&lt;/strong&gt;.  It&amp;#039;s not like adding auto-pay to your monthly water bill and forgetting about it.  It&amp;#039;s more like adding auto-pay to the family cell phone bill with 7 teenagers without an unlimited data plan - it requires diligent monitoring.&lt;/p&gt;&lt;p&gt;I resist the urge to watch my profit and loss numbers throughout the day, but I religiously do a &lt;strong&gt;trading recap every day after the market close&lt;/strong&gt;. Here are a few of the items on my checklist:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;How did I trade today? (Note: a very different question than &amp;quot;How much money did I make today?&amp;quot;)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Did my strategies perform as expected? Better? Worse?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How does the backtest compare to the actual trades in my live account? Were there significant differences? Why?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Did I miss any trades that I should have taken? If so, can I make an adjustment to take those missed trades in the future?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Were there profitable trades that &lt;em&gt;almost &lt;/em&gt;met my criteria but didn&amp;#039;t? If so, can the strategy be adjusted to capture them in the future?&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Having a checklist of questions to go through at the end of every trading day will force you to keep tabs on your strategies and identify refrigerator leaks before they become a major problem. We have a tendency to look only at the top line P&amp;amp;L for the day but this hides a LOT of important details.  As a bonus, this daily review is also fertile ground for generating new trading ideas for research and continual trading improvement.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Running out of Buying Power - A Good Thing?</title>
        <link href="https://davemabe.com/is-running-out-of-buying-power-a-good-thing"/>
        <id>https://davemabe.com/is-running-out-of-buying-power-a-good-thing</id>
        <published>2020-03-05T15:12:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Just a few weeks ago my phone rang and I had a conversation that, unbeknownst to the caller, took me back 23 years ago to when I graduated from The University of North Carolina at Chapel Hill.  The caller was my daughter&amp;#039;s good friend who had just graduated from college last spring.  He had recently started a job in New York City and seeing as I&amp;#039;m the &amp;quot;finance guy&amp;quot; in our family, called to pepper me with some investing questions.  He wanted to get started off right.&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;These questions were eerily familiar.  I was happy to talk to him and impart what knowledge I could to a millennial who was not accustomed to using phones for actual conversations.  He was particularly interested in which brokerage I thought he should use and didn&amp;#039;t really like my first answer (&amp;quot;it doesn&amp;#039;t matter.&amp;quot;)  He insisted on pinning me down, so I recommended Schwab for his purposes.&lt;/p&gt;&lt;p&gt;After we hung up I had the bizarre feeling that I had been through this before - but on the opposite side.  In the spring of 1997, I was the one asking these &amp;quot;important&amp;quot; questions, getting advice from various people in my life to invest the tiny amount of money I&amp;#039;d somehow managed to cobble together.&lt;/p&gt;&lt;p&gt;Most of the memories of the investing &amp;quot;wisdom&amp;quot; I received is now very foggy and vague -  23 years of time will do that to memories (or even a much, much shorter amount of time if you ask my wife).  I do, however, vividly remember one piece of advice that was insistently repeated by multiple people I looked up to:   avoid at all costs, no matter what, the &lt;strong&gt;dreaded margin call&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Getting a margin call meant something had gone horribly wrong and you had been completely irresponsible to have let it happen.  A margin call was literally a scolding phone call from your broker and it meant that you were using margin and had run out of buying power in your account; it was time to either add more money or inconveniently sell some existing holdings.  Shame on you!&lt;/p&gt;&lt;p&gt;It took me several years of trading to come to the realization that this is &lt;strong&gt;exactly the wrong way&lt;/strong&gt; to think about buying power.  Here&amp;#039;s why.&lt;/p&gt;&lt;h2&gt;Efficient Use of your Capital&lt;/h2&gt;&lt;p&gt;First, let&amp;#039;s take a look at an extreme case.  Let&amp;#039;s say you have $250,000 in your brokerage account but you only bought 1 share of AAPL and held it for a year.  Apple is trading at $313 right now, so you have $313 at work in your account.  That leaves $249,687 of cash in your account ready to be somehow invested.  You&amp;#039;re using 0.12% of your capital in this account.  If you add margin to the mix it&amp;#039;s even less than that!&lt;/p&gt;&lt;p&gt;We can all agree that this scenario is a &lt;strong&gt;very inefficient use of your capital&lt;/strong&gt;.  You&amp;#039;re wasting most of the money in your account when you could be doing something else with it.&lt;/p&gt;&lt;h2&gt;Use as Much Buying Power as you Can&lt;/h2&gt;&lt;p&gt;You want to allocate your capital efficiently. Everyone likes efficiency, but what does that really mean for trading?  Efficient use would be using 100% of the buying power in your account at all times, including margin.  It turns out that &amp;quot;maximum efficiency&amp;quot; is also an extreme case - the exact opposite of our example above.  In practice you won&amp;#039;t be able to know what trades are coming your way so you won&amp;#039;t be able to allocate the &lt;strong&gt;precise &lt;/strong&gt;amount required to trade them.  You&amp;#039;ll need to come up with a decent approximation ahead of time.&lt;/p&gt;&lt;h2&gt;Estimate the Capital Required&lt;/h2&gt;&lt;p&gt;You should have &lt;em&gt;some &lt;/em&gt;idea of the types of trades you&amp;#039;ll be making.  This is the hard part for the vast majority of traders - coming up with the trading system you&amp;#039;ll trade.  Let&amp;#039;s assume though that you have a loosely defined trading system in mind.   In theory you could come up with a simple estimate by using this formula:&lt;/p&gt;&lt;p&gt;&lt;code&gt;max shares * max stock price * max trades per day = max buying power required&lt;/code&gt;&lt;/p&gt;&lt;p&gt;In reality, though, this calculation will overestimate the amount ACTUALLY required.  Why?  Because it&amp;#039;s highly unlikely that you&amp;#039;ll &lt;strong&gt;ever &lt;/strong&gt;run into the situation of using the max share size for all the trades on a day where you reach the max number of trades for the highest priced stocks that you&amp;#039;ll trade.  This is so rare that it&amp;#039;s not worth planning for anyway.  Think of the value for this calculation as the upper limit.&lt;/p&gt;&lt;p&gt;I hesitate to recommend winging it, but in this case a reasonable approach is just to make a guess and use that amount.&lt;/p&gt;&lt;h2&gt;How Do I Know if I&amp;#039;ve Run Out of Buying Power?&lt;/h2&gt;&lt;p&gt;I remember the first time I ran out of buying power when trading.  I was using the old Scottrade Elite for my trading platform at the time.  (Anyone here old enough to remember that platform?  Let me know in the comments!)  The status messages for orders were neatly tucked away making it very difficult to find out why an order didn&amp;#039;t execute.  I didn&amp;#039;t even notice until minutes later when I glanced at my P&amp;amp;L and I was still breakeven when I should have a tidy profit from the trade I had assumed I entered.  My first thought was there was an error with the platform but after calling support they told me I had run out of buying power.  I instantly remembered the financial advice from my college days and hung my head in shame.  How could it come to this!  By the time I realized this the profitable trade had already passed me by - &lt;a href=&quot;https://www.davemabe.com/you-missed-a-trade%e2%80%8a-%e2%80%8anow-what/&quot;&gt;even more frustrating&lt;/a&gt;!&lt;/p&gt;&lt;p&gt;It&amp;#039;s good practice to try to &lt;strong&gt;visualize this scenario&lt;/strong&gt; before it happens and come up with a plan for when it occurs.  You&amp;#039;ll need to make some split second decisions about what to do.  Here&amp;#039;s what happens in Trade-Ideas Brokerage+ when you run out of buying power.  Your order will be rejected and will have purple lettering.  Look for the Error Reason column - it will say &amp;quot;&lt;em&gt;Not enough buying power.&lt;/em&gt;&amp;quot;  In the example below I put in an order to buy 100,000 shares of AMZN and, of course, it was rejected due to insufficient buying power.  Note that this is another extreme example - luckily none of my trading strategies will ever call for buying this many shares of such a high priced stock!&lt;/p&gt;&lt;p&gt;Consider when you&amp;#039;re likely to run into this.  It&amp;#039;s not when you&amp;#039;re just casually monitoring your positions - this will happen exactly at the point where you&amp;#039;re eager to get into what could be a profitable trade.  Don&amp;#039;t take it personally! If you&amp;#039;re not prepared, it can easily create a situation where you&amp;#039;ll make a costly trading mistake - or even a few in a row.&lt;/p&gt;&lt;h2&gt;OK You&amp;#039;ve Run Out of Buying Power - Now What?&lt;/h2&gt;&lt;p&gt;When you actually do run out of buying power as you try to open a new position, you&amp;#039;ll have three options of what to do about it, each of which are perfectly valid choices.&lt;/p&gt;&lt;ol&gt;&lt;/ol&gt;&lt;p&gt;Doing nothing is probably the underrated choice here.  You&amp;#039;ll likely be pretty frustrated and ripe for making a costly error here.  Stop entering new trades for the day and just let your existing trades play out - a safe choice.&lt;/p&gt;&lt;p&gt;The next option is pretty simple - just reduce the size of the order you&amp;#039;re trying to enter.  For example, instead of buying 1000 shares use 500.  This has the advantage of taking your intended trade as planned.  It&amp;#039;s possible that doing this will allow you to slide just under your buying power limit.&lt;/p&gt;&lt;p&gt;The third option is the most time consuming and requires some quick decision making: exit or reduce size of an existing position.  It sounds simple but in the heat of the moment it&amp;#039;s really easy to make a mistake so it&amp;#039;s worth going through the motions and coming up with a plan outside market hours.&lt;/p&gt;&lt;p&gt;You&amp;#039;ll need to quickly determine which of your positions are contributing the most to your buying power consumption.  If you exit a position that isn&amp;#039;t consuming that much buying power it may not help at all.  I&amp;#039;ve had this happen before: I just started exiting my positions one by one until I got under the limit but I ended up exiting ones that contributed a negligible amount, so I ended up getting out too early from several profitable positions.&lt;/p&gt;&lt;p&gt;In my experience, there&amp;#039;s usually just one or two positions that contribute the overwhelming majority of the buying power.  Being able to quickly identify these positions can be the difference between getting into the profitable trade you&amp;#039;re trying to enter and missing out.  The trading platform I use (Trade-Ideas Brokerage+) includes a column called &amp;quot;Exposure&amp;quot; so I can sort my positions by how much buying power they&amp;#039;re consuming.  This feature allows me to quickly identify those positions and reduce size or exit them quickly.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://bit.ly/2yEy651&quot;&gt;Read more about Trade-Ideas Brokerage+&lt;/a&gt; and why I use it to enter all my trades.&lt;/p&gt;&lt;h2&gt;Monitoring your Buying Power&lt;/h2&gt;&lt;p&gt;The above graph shows my buying power available as a percent of total buying power over the course of 10 months of my trading.  Notice the red line doesn&amp;#039;t ever go to zero.  That doesn&amp;#039;t mean I&amp;#039;ve never run out of buying power.  The red line only needs to fall to the point where your next trade would consume more than what&amp;#039;s currently available.  So many of those downward spikes in the graph represent points where I was essentially &amp;quot;out of buying power&amp;quot; even though technically there was some level of buying power remaining in my account.&lt;/p&gt;&lt;p&gt;Note also that there will be plenty of points where you were &amp;quot;out of buying power&amp;quot; but you wouldn&amp;#039;t know it because there happened to not be another trade you were attempting to make that would have put you over the limit.  This graph gives me a long term picture of my buying power whether I had rejected orders that made it obvious to me at the time or not.&lt;/p&gt;&lt;p&gt;I WANT to run out of buying power occasionally - not every day of course but somewhat regularly.  It&amp;#039;s not something to dread - it&amp;#039;s a sign that you&amp;#039;re efficiently using your capital but also a gentle nudge suggesting there might be ways to slightly modify your strategies to use less capital.&lt;/p&gt;&lt;h2&gt;What if you *NEVER* Run out of Buying Power?&lt;/h2&gt;&lt;p&gt;If you&amp;#039;re &lt;em&gt;never &lt;/em&gt;run out of buying power, then that&amp;#039;s great!  Or is it?  Remember our extreme example above of buying 1 share of AAPL in a $250k account?  It&amp;#039;s not just sub-optimal but it&amp;#039;s actually quite risky.  The most basic unit of risk in trading is your account.  You can theoretically lose all the money &lt;strong&gt;in your account&lt;/strong&gt; but not more than that.&lt;/p&gt;&lt;p&gt;If you&amp;#039;re not running out of buying power even occasionally then you should consider that your account might be &lt;em&gt;too large&lt;/em&gt;. (A great problem to have, by the way!)  Think about it: if you&amp;#039;re not running out of buying power then by definition some percentage of your account is not required to execute your trades.  That excess money is only earning interest - but otherwise is not working on your behalf.  Is there something else you could do with that money that would be of better use to you?  I suspect there is.&lt;/p&gt;&lt;p&gt;I keep close tabs on my buying power consumption over time and if I DON&amp;#039;T run out of buying power routinely then I see that as a problem that needs to be addressed.   Here are three options you should consider if you&amp;#039;re in this situation:&lt;/p&gt;&lt;ol&gt;&lt;/ol&gt;&lt;p&gt;There is no right answer here - these are all personal decisions that are highly dependent on your current trading situation.&lt;/p&gt;&lt;p&gt;But - when you do run out of buying power, consider it a pat on the back rather than a scolding.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: High Patterns Chart Group @HCPG</title>
        <link href="https://davemabe.com/trader-interview-high-patterns-chart-group-hcpg"/>
        <id>https://davemabe.com/trader-interview-high-patterns-chart-group-hcpg</id>
        <published>2020-03-02T14:59:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in &lt;a href=&quot;https://www.davemabe.com/category/trading-interview/&quot;&gt;the series&lt;/a&gt; is with the High Patterns Chart Group (&lt;a href=&quot;https://highchartpatterns.com/&quot;&gt;web site&lt;/a&gt;, &lt;a href=&quot;https://twitter.com/HCPG&quot;&gt;twitter&lt;/a&gt;).  These guys have been around forever.  Their service has a unique blend of important daily points that coincide with intraday setups.  They will stalk particular setups in stocks for many weeks, patiently waiting for them to materialize.  They are unusually focused on trade execution.&lt;/p&gt;&lt;p&gt;I appreciate the &lt;a href=&quot;https://highchartpatterns.com/&quot;&gt;no frills quality of their web site&lt;/a&gt;. This post on &lt;a href=&quot;http://highchartpatterns.blogspot.com/2017/07/make-peace-with-not-catching-every-move.html&quot;&gt;not catching every trade&lt;/a&gt; provides a good window into their trading philosophy.&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt;Any vague advice like &amp;quot;You’ll never go broke taking profits&amp;quot;.&lt;/p&gt;&lt;p&gt;Yes, that’s true, but you’ll also never make any real money until you learn to sit on profitable swings and only sell when they fail the trend parameters from the original plan. If you look closely at trading aphorisms you will notice that they actually start to contradict each other at different points of the trading time-frame. Some advice is fantastic for short-term trading but terrible for position trading. Advice without specifics of time-frame has little value.&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt;Risk management is the most important trading advice we can think of but it’s not underrated - it gets a lot of love from every professional trader we have ever met. For most underrated trading advice we would say &amp;quot;&lt;strong&gt;Become a master of a few solid strategies and really get to know well a dozen liquid stocks&lt;/strong&gt;.&amp;quot; We often see new traders skip from one strategy to another becoming a jack of all trades and master of none. Trading is a ruthless business and to be a jack of all trades will not cut it in this profession. You need to have an edge; for us the edge is to stalk often the same set-ups for weeks and when they trigger use a handful of strategies we know very well and have used now for two decades.&lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt;I usually read non-fiction but was given a novel as a present a while back that I thought was exceptional: &lt;a href=&quot;https://amzn.to/2WqN5eU&quot;&gt;Station Eleven&lt;/a&gt; by Emily St. John Mandel. Story is set in a post-apocalyptic world in which a virus (the Georgian Flu) has wiped out most of humanity. It’s ultimately a text on human resilience and adaptability and how lives are intertwined across catastrophes. Well-written, poignant, and a joy to read.&lt;/p&gt;&lt;p&gt;Questions for HCGP? &lt;a href=&quot;https://twitter.com/HCPG&quot;&gt;Ask them on Twitter&lt;/a&gt;.&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee? Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: Sunrise Trader @SunriseTrader</title>
        <link href="https://davemabe.com/trader-interview-sunrise-trader-sunrisetrader"/>
        <id>https://davemabe.com/trader-interview-sunrise-trader-sunrisetrader</id>
        <published>2020-02-20T14:59:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in &lt;a href=&quot;https://www.davemabe.com/category/trading-interview/&quot;&gt;the series&lt;/a&gt; is with Sunrise Trader.  He&amp;#039;s one of the best traders to &lt;a href=&quot;https://twitter.com/SunriseTrader&quot;&gt;follow on Twitter&lt;/a&gt; and I highly recommend you check him out.  He summed up his Twitter purpose quite nicely just the other day:&lt;/p&gt;&lt;p&gt;Scroll through his feed and you&amp;#039;ll find a lot about his trading plan along with nicely marked up charts but also daily inspiration and quotes that make him a joy to follow.  I&amp;#039;m really pleased that he agreed to do an interview because I knew he&amp;#039;d give some excellent answers. I love his detailed and concise explanation about &lt;strong&gt;money management&lt;/strong&gt;, an absolutely critical skill for any trader.&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt;&amp;quot;Complexity/logic and the belief a trader needs to know it all.&amp;quot;&lt;/p&gt;&lt;p&gt;The market is not based on logic and complexity. It is based on human emotion and the current market participants&amp;#039; thoughts and actions.  A trader must keep in mind that it is not the news or earnings release that is important.  It is the reaction to the news or earnings release.  Reactions are often different than what logic might think. &lt;/p&gt;&lt;p&gt;Many want to know all things trading.  It is next to impossible.  What a trader should do is hone their skills to one or two types of setups and have the patience to wait for those setups to materialize.&lt;/p&gt;&lt;p&gt;Traders need to keep things simple.  Keep their trading plan, charts and methods simple.  Don’t overthink. Traders need to trust in their process. Once a trader finds a system that works for them, they need to wash, rinse, repeat over and over again.&lt;/p&gt;&lt;p&gt;I often say: Plan it, set an alert, see it, trade it.  See it first.  Use your eyes. &lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt;&amp;quot;Risk management&amp;quot;&lt;/p&gt;&lt;p&gt;Many come to the trading business thinking about all the money they want to make, when what they should learn right out of the gate is how much money can be lost and a formula for how many shares can be purchased. &lt;/p&gt;&lt;p&gt;As traders our #1 job is risk management/money management. If you take the time to learn money management, you will be ahead of 90+% of new traders in my opinion.&lt;/p&gt;&lt;p&gt;You need to ask yourself and plan with these primary questions in your mind each time you place a trade:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;Now for some math, you start with an account of $10,000 and you want to buy a stock that is trading at $50 per share. How many shares can you buy? Hint: it is not 200 shares. First, you need to decide how much per share you are willing to risk. Let’s say you settle on $10, really? $10 x 200 shares = a loss of $2k or 20% of your account. Do this just a few times and you will see an account balance of ZERO.&lt;/p&gt;&lt;p&gt;To find out how many shares you can buy, you must calculate using a % of your total account. Traders who are successful will often risk up to 2% of their total account on each trade. 2% of 10K = $200 dollars. You now decide, based on your stop, what the risk per share will be. For this example, your stop is $2 below the purchase price. You are willing to risk a total of $200 (2% of your total capital)/a stop of $2 means you can buy 100 shares. If your stop was $5 you could buy 40 shares. You may find that your risk tolerance is greater than 2%, maybe for you it is 5%. I implore you to do the math based on your personal risk tolerance.&lt;/p&gt;&lt;p&gt;I can tell you that trading takes time to learn, there is no holy grail and no perfect system. If you can spend time on learning a system, gaining an edge and perfecting money management/risk management you will be miles ahead in your trading career.&lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt; &lt;a href=&quot;https://amzn.to/2zvgmMG&quot;&gt;10% Happier&lt;/a&gt; by Dan Harris.  He makes a case for mindfulness and meditation.  It is a mix of true-life stories with research and wisdom.   You learn through practice to quiet the voices in your head and appreciate living in the moment.&lt;/p&gt;&lt;h2&gt;Questions for Sunrise?&lt;/h2&gt;&lt;p&gt;Ask him in the comments below or &lt;a href=&quot;https://twitter.com/SunriseTrader&quot;&gt;ask him on Twitter&lt;/a&gt;.  Thanks Sunrise!&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee?  Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Sever Your Market Tether on Vacation</title>
        <link href="https://davemabe.com/sever-your-market-tether-on-vacation"/>
        <id>https://davemabe.com/sever-your-market-tether-on-vacation</id>
        <published>2020-02-19T14:59:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When I first started trading it was very hard to go on vacation and spend time away while the markets were open.  I would reflexively check &lt;a href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot;&gt;what stocks were gapping&lt;/a&gt; and try to imagine how my trading day would be going if I were trading.  Honestly I just couldn&amp;#039;t enjoy vacation - I constantly felt like I was missing out on profitable market action but more importantly I worried I was losing time to improve as a trader.  What most traders don&amp;#039;t realize is that &lt;strong&gt;purposeful time away from the markets&lt;/strong&gt; is one of the most &lt;strong&gt;valuable long term investments you can make for your trading&lt;/strong&gt;. This post explains how to use vacation to improve your trading.&lt;/p&gt;&lt;h2&gt;Realization that Vacation is Long Term Profitable&lt;/h2&gt;&lt;p&gt;As a new trader years ago I would dread time off. Sometime over the course of the last 15 years of trading, though, I&amp;#039;ve become way more comfortable spending time away from the market.  Rather than being something to dread, I came &lt;strong&gt;to relish days off&lt;/strong&gt;.  I can&amp;#039;t pinpoint a particular moment in time when my thought process changed - it was a gradual change that occurred over time although I do remember a specific incident that accelerated it...&lt;/p&gt;&lt;h2&gt;My Worst Day was a Day I Shouldn&amp;#039;t Have Even Been Trading&lt;/h2&gt;&lt;p&gt;Many years ago my wife and I had planned to travel across the country to spend time with friends for the weekend.  We had purchased plane tickets, hotel, and the rental car.  We had been travelling a good amount prior to this trip so as the travel day approached we were not exactly looking forward to getting on another plane.&lt;/p&gt;&lt;p&gt;The day came and on our way to the airport very early that Friday morning, we both looked at each other and realized we &lt;em&gt;really &lt;/em&gt;didn&amp;#039;t want to go on the trip.  We just couldn&amp;#039;t get back on a plane and fly all the way across the country.  We decided to turn the car around and go home - one of those crazy decisions that we never make.  &amp;quot;Ah!&amp;quot;, I thought as we drove home, &amp;quot;I&amp;#039;ll be able to trade today.&amp;quot;  Was having to skip a trading day one of the reasons we turned around that morning?  Not consciously but looking back subconsciously it had to have been.&lt;/p&gt;&lt;p&gt;I traded that day as I normally would having skipped a vacation that we&amp;#039;d already paid for.  You can guess what happened - that ended up being my worst trading day up until that point.  I didn&amp;#039;t make any big mistakes - it was just dumb luck that this happened to be the day that my strategies performed REALLY, REALLY BADLY.  I&amp;#039;ve never forgotten that day - a very costly one at least partly due to the fact that I was uncomfortable being away from the market.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve recently thought a lot about my increasing comfort with time away from the trading desk and after seeing the results of this poll from &lt;a href=&quot;https://www.davemabe.com/trader-interview-brian-shannon-alphatrends/&quot;&gt;Brian Shannon&lt;/a&gt; from &lt;a href=&quot;https://alphatrends.net/&quot;&gt;Alphatrends&lt;/a&gt; where most traders said they &lt;em&gt;wanted the markets opened more&lt;/em&gt; I realized that most traders aren&amp;#039;t getting the most out of their time way from the market.&lt;/p&gt;&lt;h2&gt;Eliminate the Distracting &amp;quot;Market Tether&amp;quot;&lt;/h2&gt;&lt;p&gt;As traders we feel the need to be &amp;quot;in tune&amp;quot; with the market.  When we go on vacation there&amp;#039;s an underlying fear that we&amp;#039;ll lose that synchronicity - we&amp;#039;ll become out of touch with the market and when we return to trading it will take time to burrow back into the market&amp;#039;s current flow.&lt;/p&gt;&lt;p&gt;What I&amp;#039;ve come to realize is that this market tether is exactly what you need to cut on vacation to become a better trader over time. Doing this right will allow you to truly enjoy your time away from the markets AND improve your trading each time.  Here&amp;#039;s how.&lt;/p&gt;&lt;h2&gt;The Market Tether: Short Term Satisfaction but Long Term Closed Mindedness&lt;/h2&gt;&lt;p&gt;The vacation &amp;quot;market tether&amp;quot; is bad for traders for a couple of obvious reasons and a very important one that&amp;#039;s not apparent:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;The first two are obvious - if you&amp;#039;re distracted for any reason you&amp;#039;re not able to fully enjoy your current vacation activity.  &lt;strong&gt;You&amp;#039;re simply not getting the most out of vacation&lt;/strong&gt;.  Not only does this make the vacation less enjoyable than it should be, but you&amp;#039;ll ultimately be missing out on one of the most important long term benefits of time away.&lt;/p&gt;&lt;p&gt;This &amp;quot;market tether&amp;quot; can be conscious or subconscious.  Either way it&amp;#039;s satisfying a short term need at the expense of long term trading improvement.   The short term need is the desire to stay in tune with the market.  Less experienced traders might even be missing the thrill of market action like the feeling of a gambler who steps away from the slot machines.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re trading each day you &lt;em&gt;should be&lt;/em&gt; following your trading systems closely.  By definition you are burrowed down into your trading zone - ignoring all other distractions.  This includes even other clues for other ideas that could turn into profitable trading strategies.  Regularly letting yourself to come completely out of your &amp;quot;trading zone&amp;quot; - that is, severing your market tether however psychologically difficult - will ultimately allow you have a &lt;strong&gt;fresh perspective on the market itself&lt;/strong&gt; and &lt;strong&gt;your own trading&lt;/strong&gt;.  What I&amp;#039;ve found over the years is that this fresh perspective isn&amp;#039;t possible if you&amp;#039;re continuously burrowed into the trading zone you&amp;#039;ve created for yourself day in and day out.  You need to get completely out of your trading zone to be able to expand it and improve it.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Without occasionally severing your market tether you&amp;#039;ll always be the trader that trades the myopic zone that you&amp;#039;ve created for yourself&lt;/strong&gt;.  Many of my best trading ideas have come right &lt;em&gt;after &lt;/em&gt;time away from the markets.&lt;/p&gt;&lt;h2&gt;Take Vacation with Intention&lt;/h2&gt;&lt;p&gt;When you have this perspective it&amp;#039;s much, much easier to spend time away from your trading desk.  In fact, you should look forward to it and plan ahead to ensure that you&amp;#039;re getting ENOUGH time away from the markets to get better.&lt;/p&gt;&lt;p&gt;When planning vacation I always check &lt;a href=&quot;https://www.davemabe.com/earnings-season-how-to-use-it-in-your-trading/&quot;&gt;my earnings season tool&lt;/a&gt; to choose times that are likely not to see significant market action.  I know how my strategies are affected by earnings so I can plan to spend time away when my strategies are likely to not trade frequently anyway.  Because I day trade exclusively, I also have the flexibility to take an &lt;em&gt;unplanned &lt;/em&gt;vacation day on a whim since I have no overnight positions that I&amp;#039;m obligated to manage - one of the most underrated reasons to day trade.&lt;/p&gt;&lt;p&gt;When you&amp;#039;re on vacation, it&amp;#039;s much easier to enjoy when you realize that you&amp;#039;re literally becoming a better trader by not trading.  Ignore the markets while you&amp;#039;re away and you&amp;#039;ll be refreshed and in a position to see the markets in a different light when you come back.&lt;/p&gt;&lt;p&gt;Do you have strategies for taking market vacations?  I&amp;#039;d like to hear about them in the comments.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Earnings Season: How to use it in your Trading</title>
        <link href="https://davemabe.com/earnings-season-how-to-use-it-in-your-trading"/>
        <id>https://davemabe.com/earnings-season-how-to-use-it-in-your-trading</id>
        <published>2020-02-11T14:09:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Most traders and investors are familiar with the concept of &lt;strong&gt;earnings season&lt;/strong&gt;: the period of time where most public companies release their earnings and various other fundamental financial metrics (price/earnings, cash flow, debt, etc) as required by the SEC.   These company announcements very often trigger large moves in the stock price as the market responds and processes the the information about the company and establishes a new equilibrium.  The volatility around this response is often quite strong and is the focus for many trading strategies.  As I often say, I don&amp;#039;t attempt to trade the news but I trade the market&amp;#039;s reaction to the news.&lt;/p&gt;&lt;p&gt;Most traders think about earnings season in an inaccurate way.  This post explains why that is and suggests a much better way to think about earnings seasons.&lt;/p&gt;&lt;h2&gt;Why “season” makes no sense&lt;/h2&gt;&lt;p&gt;The word season implies that there’s a definite start and end date. Consider deer hunting season.  You have a definite start date where it is legal to shoot deer up until the end date of the season at which point it is illegal again.  Everyone knows the well defined dates of the season and almost everyone adheres to these rules. This is not at all the case with earnings releases. You can literally find companies reporting earnings on every trading day of the year.&lt;/p&gt;&lt;p&gt;There is also general disagreement about when earnings season starts and ends.  Traditionally it was thought that earnings season officially kicks off with the earnings release from one company: &lt;strong&gt;Alcoa (AA)&lt;/strong&gt;. Over the years as technology companies have become increasingly important this tradition seems to be fading somewhat.&lt;/p&gt;&lt;p&gt;I&amp;#039;ve noticed that traders often speak as if they are intimately familiar with earnings season but if you ask them to put the earnings season start and end dates on their calendar and you&amp;#039;ll end up with a variety of different dates chosen.&lt;/p&gt;&lt;p&gt;Does this make the entire concept of earnings season invalid? Of course not, but &lt;strong&gt;there is a much more useful way to think about the concept&lt;/strong&gt;. Different trading strategies perform differently depending on how many companies are reporting.  Some strategies depend entirely on earnings announcements and others AVOID earnings announcements specifically.  It&amp;#039;s important to think about how your trading strategy is affected by earnings announcements and earnings season - for example, when you&amp;#039;re planning time away from the market you probably want to schedule the time outside of earnings season.&lt;/p&gt;&lt;h2&gt;A better way to think about earnings&lt;/h2&gt;&lt;p&gt;Here&amp;#039;s how I&amp;#039;ve come to think about earnings season over the &lt;a href=&quot;https://davemabe.com/my-2019-trading-annual-review/&quot;&gt;course of over a decade of trading&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;First, when you look at the distribution of when companies report earnings, you definitely see a &lt;strong&gt;clustering&lt;/strong&gt; around certain times of the year. However you’ll also notice a lot of companies reporting &lt;strong&gt;outside those clusters&lt;/strong&gt;.   See the chart below.&lt;/p&gt;&lt;p&gt;The second thing that stands out from the chart: there are four earnings seasons throughout the year but &lt;strong&gt;the length of each of them varies widely&lt;/strong&gt;.  The first earnings season of the year is much more spread out than the rest of the earnings seasons.  Why?  Most companies&amp;#039; fiscal years align with the calendar year so these companies are reporting earnings for an entire year starting in mid January.  It takes longer to report annual earnings than quarterly earnings since you&amp;#039;re producing fancy, glossy reports and fulfilling additional requirements.&lt;/p&gt;&lt;p&gt;So what date makes sense to use as the start of a particular earnings season given the fact that companies report every trading day? Enough traders still respect the Alcoa earnings report as the start of the season to follow along.  When you plot those dates on the chart it does seem to mostly align pretty well with what most would consider the start of the earnings seasons.  Until some other method comes into vogue this seems logical.&lt;/p&gt;&lt;p&gt;What about the end date for each season?  You can&amp;#039;t simply add a certain amount of days to each start date since the season length varies so much.  A better way to think about it is for a given day calculate a percent of the way through that particular earnings season.  In other words, of the total number of companies reporting that season, what percent have reported as of a particular date?&lt;/p&gt;&lt;h2&gt;Dynamically Updating Chart Showing Earnings Big Picture&lt;/h2&gt;&lt;p&gt;The above chart is dynamically generated and shows the current day (or next trading day) and what percent through the current earnings season we are.  As of this writing it shows February 11th and that we&amp;#039;re 33.1% through the current earnings season.  Use this chart to determine when it&amp;#039;s best to take time away from the market. Because the earnings seasons have different lengths, this visualization is a much better way to think about earnings.&lt;/p&gt;&lt;h2&gt;Earnings Season is the Forest, now let&amp;#039;s look at the Trees&lt;/h2&gt;&lt;p&gt;Now that we&amp;#039;ve used an intelligent way to determine where we are within earnings season, let&amp;#039;s look at the best way to scan for individual companies that have reported recently or in the near future. There are a few different tools you can use for this purpose but we&amp;#039;ll look at two: Yahoo! Finance Earnings Calendar and the Trade-Ideas Top List.&lt;/p&gt;&lt;h3&gt;Yahoo! Finance Earnings Calendar&lt;/h3&gt;&lt;p&gt;The &lt;a href=&quot;https://finance.yahoo.com/calendar/earnings/&quot;&gt;Yahoo! Earnings Calendar&lt;/a&gt; is very popular and does a decent job of allowing you to see which companies are reporting on a given day. By default it shows all companies that are reporting today and you can click on adjacent dates in the header and see earnings announcements for these different days.&lt;/p&gt;&lt;p&gt;Because it shows all companies reporting earnings, the first thing you&amp;#039;re going to want to do is filter this list down.  On the date I&amp;#039;ve chosen here you can see there are 122 companies displayed.  That is going to be far too many to be able to process in a reasonable amount of time.  Most of these companies don&amp;#039;t have enough volume to trade anyway.  There are some filters you can apply to the list by clicking on the Event Filters link and at first glance the list seems substantial.  However when you look closer and try to apply a simple filter for Average Volume you quickly realize that it doesn&amp;#039;t contain this very elementary filter.&lt;/p&gt;&lt;p&gt;This alone makes the list unusable but on top of that there are only a couple fields available to display for each stock. As a trader you need to be able to view the appropriate fields right alongside the symbol in the list.  Looking them up for each symbol is time consuming and requires a ton of mouse clicks.  This could be the difference between catching the trade and being simply too late to catch the move.&lt;/p&gt;&lt;p&gt;The other major drawback of this calendar is the fact that all companies that are &lt;strong&gt;scheduled to report earnings today&lt;/strong&gt; are in the list.  This includes companies that are reporting &lt;strong&gt;before the close&lt;/strong&gt; as well as companies reporting &lt;strong&gt;after the market close&lt;/strong&gt;.  Why is important to make this distinction?  Imagine you&amp;#039;re looking at the list in the middle of the trading day.  A sizable number of companies in the list will have already reported prior to the market open but most of the rest will be reporting after the close.&lt;/p&gt;&lt;p&gt;These two categories of companies are dramatically different!  Companies reporting prior to the open will likely be quite volatile while the ones reporting after the close will still have relatively calm price action prior to their earnings release. Similarly when you look at yesterday&amp;#039;s earnings reports the one that reported before the close have already had a full day of trading to process the report while the ones that reported after hours have not.&lt;/p&gt;&lt;p&gt;Most companies report their earnings after the close but a significant number report before the open. Here&amp;#039;s the breakdown:&lt;/p&gt;&lt;p&gt;Why is this important? It&amp;#039;s good to understand what &lt;em&gt;the majority of companies&lt;/em&gt; do, but there&amp;#039;s another important difference.  When companies report after the close there&amp;#039;s the post market trading session, the overnight, plus the pre market session before the next normal trading session occurs.  There&amp;#039;s significantly more trading time plus clock time before the next trading day as compared to companies that report before the market open.  I definitely have strategies where this dynamic has a strong effect.  By the time the regular session rolls around, companies that reported yesterday after the close can be somewhat superseded by the companies that reported in the pre market.&lt;/p&gt;&lt;p&gt;Nasdaq has &lt;a href=&quot;https://www.nasdaq.com/market-activity/earnings&quot;&gt;a similar earnings page&lt;/a&gt; but it suffers from the same limitations as the Yahoo! earnings page.  These earnings views could be fine for a lot of investors but if you&amp;#039;re trading the markets you are definitely going to need more flexibility in your scan which ultimately saves time and effort and will allow you to take more profitable trades.&lt;/p&gt;&lt;h2&gt;A Much Better Earnings Scanner: Trade-Ideas&lt;/h2&gt;&lt;p&gt;Trade-Ideas is a scanner and artificial intelligence product that is the best way I know of to display &lt;strong&gt;recent and upcoming earnings announcements&lt;/strong&gt;.  It doesn&amp;#039;t have the filtering limitations that the Yahoo calendar has and you can display whatever fields you want for each symbol.  You can also quickly sort the list by any field and even paper trade any symbol using the Trade-Ideas simulated trading account that comes with every subscription.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s a view of my &lt;strong&gt;Recent Earnings Announcements&lt;/strong&gt; top list window in Trade-Ideas.  This list allows me to view &lt;strong&gt;only companies&lt;/strong&gt; that have &lt;strong&gt;reported earnings this morning before the open OR yesterday after the close&lt;/strong&gt;.  That is, only companies where the current trading day is the first trading session after the company&amp;#039;s earnings announcement.  I also have applied some basic filters to reduce the list of companies reporting earnings to just the ones that I&amp;#039;m likely to trade.  For example, I have a minimum value for daily average volume and a minimum price of $1 and a maximum price of $500.  I know that I won&amp;#039;t trade symbols outside of those thresholds so my list excludes them from the beginning.&lt;/p&gt;&lt;p&gt;This view is just not possible in other platforms.  Here&amp;#039;s the &lt;a href=&quot;https://www.trade-ideas.com/Cloud.html?code=d615786b56797514bbf7eb8758468087&quot;&gt;cloud link for this window&lt;/a&gt; so you can bring up this exact top list in your Trade-Ideas.&lt;/p&gt;&lt;p&gt;The second top list I frequently use in Trade-Ideas for earnings is my &lt;strong&gt;Upcoming Earnings Announcements&lt;/strong&gt; window.  I have it configured to show me all companies that are reporting earnings after the close today or at anytime over the following week.  This view has all my favorite columns to sort by including the Earnings Date field.  That allows me to quickly sort the list by when the company is releasing earnings relative to the current point in time.&lt;/p&gt;&lt;p&gt;So symbols will appear first on my Upcoming Earnings Announcements window and when the first trading session after their announcement comes around they&amp;#039;ll fall off that top list and appear on the Recent Earnings Announcements list that I use during the trading day.  Here is the &lt;a href=&quot;https://www.trade-ideas.com/Cloud.html?code=bcbe58f3f49f4236377e20f23091fcf3&quot;&gt;cloud link for my  Upcoming Earnings Announcements window&lt;/a&gt; so you can bring up this exact top list in your Trade-Ideas .&lt;/p&gt;&lt;p&gt;You can easily modify the Earnings Date filter for your own use and, for example, only show companies reporting earnings before the next session or fewer days.  To view only the companies reporting earnings in the next two days, change the value of 5.5 to 2.5:&lt;/p&gt;&lt;p&gt;These earnings scans are just one of many features that Trade-Ideas offers.  Click on the link below to learn more about Trade-Ideas.  Sign up and you can immediately start using the two windows I use to view Earnings Announcements that I mentioned above.&lt;/p&gt;&lt;h2&gt;&lt;a href=&quot;https://www.trade-ideas.com/referral.html?p=dmabe&amp;amp;w=pricelist&quot;&gt;Click Here to learn more about Trade-Ideas and use code &lt;strong&gt;DMABE15 &lt;/strong&gt;to get a 15% discount&lt;/a&gt;&lt;/h2&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Can Traders Learn *Anything* from Poker?</title>
        <link href="https://davemabe.com/can-traders-learn-anything-from-poker"/>
        <id>https://davemabe.com/can-traders-learn-anything-from-poker</id>
        <published>2020-02-03T15:25:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Several years ago I started playing poker as an intellectual pursuit with the intent of learning some lessons from the poker world that I could apply to my trading.  I thought as a trader that I had a healthy view of money that would give me an initial boost in poker.  Bankroll management?  That&amp;#039;s the basic skill of a trader and applying that to poker was second nature.  There are a lot of parallels with poker and trading and I thought that my trading experience would ultimately translate well into poker.&lt;/p&gt;&lt;p&gt;I have mostly abandoned &amp;quot;serious&amp;quot; poker at this point for a variety of reasons and this post will explain why.  I feel like I&amp;#039;ve gotten all I can get out of poker and while I&amp;#039;m mostly disappointed that I wasn&amp;#039;t able to apply more to my trading I did learn &lt;strong&gt;one very valuable lesson&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;My Initial Goals for Poker&lt;/h2&gt;&lt;p&gt;I set out with a handful of goals for my poker endeavor:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;h2&gt;My Poker Process&lt;/h2&gt;&lt;h3&gt;Live Poker in a Casino&lt;/h3&gt;&lt;p&gt;The nearest casino to where I live when I started playing was Harrah&amp;#039;s in Cherokee, NC which is about a four hour drive.  A good friend of mine has played poker somewhat seriously since college so we have organized a couple trips a year to either Cherokee, Las Vegas, the Hard Rock Casino in Tampa, and more recently the MGM at National Harbor after it opened a few years ago.&lt;/p&gt;&lt;p&gt;Live poker in a casino is a blast - if you haven&amp;#039;t played in a casino I&amp;#039;d highly encourage you to do so.  I thought it was going to be a seedy place with a bunch of low lifes but nothing could be further from the truth.  Although of course there are the occasional jerks, I have been consistently amazed at the friendliness and camaraderie at a poker table at a casino.  You see all sorts of people from all walks of life coming together to play an awesome game with a perfect blend of skill and luck.  I&amp;#039;ve played a lot of hours in casinos and I&amp;#039;d say that the average poker player is far more fun and friendly than the average person.&lt;/p&gt;&lt;h3&gt;Home Games&lt;/h3&gt;&lt;p&gt;My friend also hosts a home game 5-6 times a year so I got his advice for hosting my own game.  His game is always a tournament and I knew I wanted to play cash games, so I started hosting my own monthly home game.  These are extremely low stakes games that are mostly just fun.  Even the good players aren&amp;#039;t taking the game that seriously and the &amp;quot;cheap thrill&amp;quot; of poker at these stakes ends up being a very inexpensive form of entertainment.&lt;/p&gt;&lt;h3&gt;Playing Online&lt;/h3&gt;&lt;p&gt;I also played a bit online although it&amp;#039;s quite difficult to play now in the US and the competition even at the lowest stakes is very strong these days.  I like being able to use a tool like Poker Tracker to track performance over time.  I don&amp;#039;t play online anymore just because playing live is so much more fun.  Playing online does allow you to play a LOT of hands pretty quickly so in that regard it&amp;#039;s good to play online to advance past the basics.  After that I found it too tedious and just craved playing live.&lt;/p&gt;&lt;h2&gt;How are Poker and Trading Similar?&lt;/h2&gt;&lt;ol&gt;&lt;/ol&gt;&lt;h2&gt;How are Poker and Trading Different?&lt;/h2&gt;&lt;p&gt;In trading I have a few pre-defined trading strategies that I use.  I&amp;#039;ve researched them deeply and there&amp;#039;s no question how I should approach things during the trading day.  I know the odds that trades from different strategies will be profitable so during the day there&amp;#039;s really not a whole lot of discretion for me.&lt;/p&gt;&lt;p&gt;This was ultimately a very difficult thing for me to transfer to the poker table.  You can&amp;#039;t have planned for every situation at a poker table - there&amp;#039;s just too many factors to consider at any moment.  There&amp;#039;s a LOT of discretion and judgement calls to make that you just can&amp;#039;t plan for ahead of time.  You have to be able to study some general situations and then be able to apply a lot of different concepts in real time at a poker table when everyone at the table is anxious for you to play to keep the game going.  This takes a tremendous amount of experience and study away from the table to get good at.  It&amp;#039;s also one of the things that makes poker so great - talking about hands after the fact with other players.  In some situations you&amp;#039;ll might talk to 5 different players and get 5 completely different opinions about the best action to take in a certain spot.  This is one of the best things about poker that there&amp;#039;s not really an exact equivalent to in trading.  Sure you can talk about trades after you make them but there&amp;#039;s nowhere near the same level of analysis that you can do after a poker hand.&lt;/p&gt;&lt;p&gt;I realized pretty early on that it was not going to be possible for me to be able to play enough poker to get enough consistent and intentional practice to get very good. You can spend a lot of time studying away from the table but you have to also play a lot of live hands to implement what you&amp;#039;ve studied.&lt;/p&gt;&lt;h2&gt;So What Did I Learn about Trading from Poker?&lt;/h2&gt;&lt;p&gt;Beyond the basics of risk management and putting in time away from the table/markets is there ANYTHING that traders can learn from playing poker?  To be honest it was a good bit less than I was originally hoping for.  My main takeaway from poker, though, is I think a very important one.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;The best poker players can intuitively know when a situation arises where they have a strong edge and are able to exploit it as frequently and efficiently as possible&lt;/strong&gt;.  For example, recognizing when you&amp;#039;re very likely to have the best hand or when your opponent is likely to fold to a raise.  The ability to know when these situations arise is vitally important in poker and the actual cards in &lt;em&gt;your&lt;/em&gt; hand become less important - it&amp;#039;s more about determining what your opponent has.&lt;/p&gt;&lt;p&gt;In this case there is a definite parallel to trading: when you have a trading edge you should be able to recognize it and put on larger size.  I&amp;#039;ve spent the better part of a decade thinking about this and I think I&amp;#039;ve made some headway.  That&amp;#039;s my main goal for 2020 - trading with bigger size when I have an edge.  More about this in another post.&lt;/p&gt;&lt;h2&gt;My Poker Future&lt;/h2&gt;&lt;p&gt;So am I abandoning poker?  Not at all.  It&amp;#039;s such an awesome and underrated game.  I&amp;#039;ll continue my friendly home game and will continue making the occasional trip to a casino to play live when it&amp;#039;s convenient.  Hopefully more casinos get built within driving distance one day and I can play more frequently live in the future.  If you have never played poker I highly recommend you give it a shot!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: Brian Shannon @alphatrends</title>
        <link href="https://davemabe.com/trader-interview-brian-shannon-alphatrends"/>
        <id>https://davemabe.com/trader-interview-brian-shannon-alphatrends</id>
        <published>2020-01-31T15:45:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in the series is with Brian Shannon.  Brian has been trading for a LONG time and has developed the reputation as one of the best guys in the business.  His market commentary videos are well known for having a concise, no-nonsense approach.  His book &lt;a href=&quot;https://amzn.to/2WtFpbZ&quot;&gt;Technical Analysis Using Multiple Timeframes&lt;/a&gt; is excellent and widely reviewed and recommended.  Find out more about Brian at &lt;a href=&quot;https://alphatrends.net/&quot;&gt;his Alphatrends website&lt;/a&gt; and be sure and follow him &lt;a href=&quot;https://twitter.com/alphatrends&quot;&gt;on Twitter @alphatrends&lt;/a&gt;.&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt; &amp;quot;Winners take care of themselves.&amp;quot;  &lt;br&gt;Once you have your money in the market, you can never let your guard down, complacency is the silent equity thief.  Winners are clearly less stress, but accumulated profits are &lt;em&gt;your money.  &lt;/em&gt;Profits are not &amp;quot;house money&amp;quot; that you can be careless with.  Things can change quickly in the markets, without a plan to protect profits and manage your winners you will give back large gains and worse, allow them to turn into losers!&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt; People will mention they are &amp;quot;bullish or bearish&amp;quot; on a stock or the market, without any reference to a timeframe.   In order to add value, there needs to be some point of reference from a time perspective.  I might be bullish on a long term uptrend in the market when I look back a year or two, but there will be periods during that bullish trend where the best trades are on the short side.  Also,  being &amp;quot;bullish&amp;quot; might be from the reference of a purchase made two years ago, that doesn&amp;#039;t make it a good buy today.  &lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt;&lt;a href=&quot;https://amzn.to/3bo0clf&quot;&gt;The Impossible Climb&lt;/a&gt; - The story of Alex Honnold and his accomplishment of being the first person to free solo the 3,000 foot El Capitan, the largest cliff in Yosemite National Park.  The book chronicles the laser focus it takes to tackle a goal that was widely considered impossible, if not a suicide mission.&lt;/p&gt;&lt;h2&gt;Questions for Brian?&lt;/h2&gt;&lt;p&gt;Ask him in the comments below or &lt;a href=&quot;https://twitter.com/alphatrends&quot;&gt;ask him on Twitter&lt;/a&gt;.  Thanks Brian!&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee?  Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: Fred, Lone Stock Trader @lonestocktrader</title>
        <link href="https://davemabe.com/trader-interview-fred-lone-stock-trader-lonestocktrader"/>
        <id>https://davemabe.com/trader-interview-fred-lone-stock-trader-lonestocktrader</id>
        <published>2020-01-22T13:19:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in the series is with Fred, &lt;a href=&quot;http://www.lonestocktrader.com/&quot;&gt;the Lone Stock Trader&lt;/a&gt;.  Fred trades for a living and posts about it on his web site.  He&amp;#039;s written several excellent articles on his system and trading in general that are worth reading.  His &lt;a href=&quot;http://www.lonestocktrader.com/2019-review/&quot;&gt;2019 review&lt;/a&gt; is particularly good as well as his post about how he &lt;a href=&quot;http://www.lonestocktrader.com/how-i-shifted-my-focus-from-money-to-trading/&quot;&gt;transitioned from failed business to profitable trader&lt;/a&gt;.  I love the no-nonsense style of his writing and his openness about his trading.  I&amp;#039;m really happy to post his responses here.&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt;The most overrated trading advice is &amp;quot;get out when you&amp;#039;re wrong&amp;quot;. But don&amp;#039;t get me wrong (pun intended). The advice is sound.&lt;/p&gt;&lt;p&gt;I consider it overrated, because it reinforces the perspective that losing money on a trade means you were wrong, which is a wrong association in my opinion. If you&amp;#039;re following a trading strategy, losses are just part of the normal distribution of the strategy. The result of one trade is random. The result of one hundred trades is less random. Thinking that a loss (or ending the day/week/month in the red) automatically means you&amp;#039;ve done something wrong shows that you haven&amp;#039;t accepted the probabilistic nature of trading, and that you&amp;#039;re on the dead-end path of trying to win (&amp;quot;be right&amp;quot;) all the time, which often is at the root cause of why so many traders end up blowing their account.&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt;&amp;quot;Review your past trades&amp;quot;.&lt;br&gt;It&amp;#039;s something most traders know they should be doing. Yet I&amp;#039;m pretty sure very few actually do it. That&amp;#039;s the single exercise that turned my trading around years ago. I discovered my strengths, my weaknesses, and that if I had followed my strategy perfectly, I would have made money instead of losing consistently. The whole game then shifted from me trying to make money on every trade, to me focusing on following/executing my strategy perfectly. That&amp;#039;s when I started making money. That&amp;#039;s when I genuinely accepted that trading was probability game.&lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt;It might sound cliche, but &lt;a href=&quot;https://amzn.to/2LqB9Ug&quot;&gt;&amp;quot;Atomic Habits&amp;quot; by James Clear&lt;/a&gt; had a huge impact on my life. Motivation and discipline only lasts so long. Be it saving money, losing weight, being a successful trader, running a marathon or nurturing a healthy relationship, it&amp;#039;s not your discipline/motivation that will allow you to reach these goals. It&amp;#039;s your habits. This book explains and gives examples of how to form good habits and get rid of the bad ones.&lt;/p&gt;&lt;h2&gt;Questions for Fred?&lt;/h2&gt;&lt;p&gt;Ask him in the comments below or &lt;a href=&quot;https://twitter.com/lonestocktrader&quot;&gt;ask him on Twitter&lt;/a&gt;.  Thanks Fred!&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee?  Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">My 2019 Trading Annual Review</title>
        <link href="https://davemabe.com/my-2019-trading-annual-review"/>
        <id>https://davemabe.com/my-2019-trading-annual-review</id>
        <published>2020-01-21T13:55:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Last year I made some big changes in how I trade my main 3 strategies.  Each year I go back and review all the trades I took and see where I could improve.  Are there any adjustments I can make to get better?  Did any strategy perform poorly relative to what I expected?  This is a good time to reflect on the changes I made and see how they played out.&lt;/p&gt;&lt;p&gt;First of all, above you&amp;#039;ll find an equity curve (in R multiples) for the entire decade.  The total R for the decade was 2011.9.  This includes probably 10 strategies or so I&amp;#039;ve traded during that period.  Pretty good.  When you look at an equity curve zoomed out like this it looks smooth but when you zoom in you notice some drawdowns.  One of the great benefits of using R multiples to measure performance is that it normalizes performance no matter the risk amount you&amp;#039;re using for a particular strategy.  At any given point in time I may be at full risk in one strategy but a small fraction of that in another.  Here&amp;#039;s a &lt;a href=&quot;https://davemabe.com/my-approach-to-trading-with-bigger-size/&quot;&gt;post where I go into detail about my process for sizing up&lt;/a&gt;.&lt;/p&gt;&lt;h2&gt;My Gappers Strategy for 2019&lt;/h2&gt;&lt;p&gt;Although this curve looks ok by the end of the year, in March it looked terrible!  That is the time where I took a step back and reevaluated what I was doing with this strategy.  Keep in mind that the basic strategy is one that I&amp;#039;ve traded for over a decade now.  I&amp;#039;ve made some pretty drastic changes to the strategy over the years but the fundamental strategy is exactly the same.  So what did I do in March?&lt;/p&gt;&lt;p&gt;I started looking at my backtest in a completely different way.  I removed the stops!  (I know, I know - bear with me.)  My workflow from the backtest went as follows:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;The Filter Phase is the hardest part and the one that takes the most energy and experience to do well.  The set of trades that I end up actually trading turns out to be a pretty small percentage of the total backtest.  I realized that I was doing my filtering after the stop had been applied to the trade.  This has the affect of ignoring some valuable information for each trade.   Here&amp;#039;s my new workflow that I&amp;#039;m using now:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;Notice that the stops and targets are applied at the end instead of the very beginning.  Why does this matter?  The difference is subtle but turns out to be very important.&lt;/p&gt;&lt;p&gt;Let&amp;#039;s take two types of trades from the backtest.  They both end up stopping out but the first type stops out &lt;strong&gt;but just barely&lt;/strong&gt; and then continues in the desired direction. Here&amp;#039;s a theoretical example of the first type: LVGO from 1/14.  It barely hit the stop price of 28.99 only to continue on.&lt;/p&gt;&lt;p&gt;The second type stops out and then &lt;strong&gt;continues its plunge&lt;/strong&gt; finishing the day well below (assuming a long trade) the stop.  A good example of this is STT from 1/17.  It hit the stop of 83.32 and continued south for the remainder of the day.&lt;/p&gt;&lt;p&gt;In my original workflow, these two types of trades were considered equivalent and my filter phase would not notice any difference among them.  In fact they are very, very different!  My updated workflow accounts for this difference - I consider it like &lt;strong&gt;adding another full dimension&lt;/strong&gt; to my backtesting routine.&lt;/p&gt;&lt;p&gt;I&amp;#039;m hoping to continue sizing up this strategy in 2020.&lt;/p&gt;&lt;h2&gt;Strategy B&lt;/h2&gt;&lt;p&gt;My other main strategy I&amp;#039;ve been trading largely unchanged since 2015 or so.  Here&amp;#039;s the equity curve for 2019 for strategy B.&lt;/p&gt;&lt;p&gt;This doesn&amp;#039;t look great but when I zoom out and look at the chart from 2015 to present it looks fine having gained 400 R.  This strategy is actually quite flexible.  It&amp;#039;s designed to use variable position sizing based on the quality of the setup.  I haven&amp;#039;t implemented that yet (I use same size for each trade in the strategy) but I hope to do this in 2020 which I&amp;#039;ll write about in a future post.&lt;/p&gt;&lt;p&gt;I hope you traded well in 2019 and you trade even better in 2020!  If you have any questions feel free to contact me.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: Anne-Marie Baiynd @AnneMarieTrades</title>
        <link href="https://davemabe.com/trader-interview-anne-marie-baiynd-annemarietrades"/>
        <id>https://davemabe.com/trader-interview-anne-marie-baiynd-annemarietrades</id>
        <published>2020-01-16T16:52:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The next interview in the series is with Anne-Marie Baiynd, a long time trader, coach, and author of &lt;a href=&quot;https://thetradingbook.com/TTB/&quot;&gt;The Trading Book&lt;/a&gt; (&lt;a href=&quot;https://www.amazon.com/gp/product/0071766499/ref=dbs_a_def_rwt_bibl_vppi_i0&quot;&gt;Amazon link&lt;/a&gt;).  I haven&amp;#039;t yet met Anne-Marie in person but we&amp;#039;ve interacted on social media quite a bit and I think &lt;a href=&quot;https://twitter.com/AnneMarieTrades&quot;&gt;her Twitter presence&lt;/a&gt; is great.  I know several folks in the trading industry that have met her in person and have nothing but good things to say about her.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://thetradingbook.com/TTB/about-anne-marie/&quot;&gt;Her bio&lt;/a&gt; tells me she&amp;#039;s had a wide range of experiences before planting her trading roots: neuroscience, mathematics, econometrics, and recruiting - plus she&amp;#039;s started several companies along the way.&lt;/p&gt;&lt;p&gt;Here are her responses:&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;blockquote&gt;&lt;p&gt; &amp;quot;You&amp;#039;ve got to take the emotion out of trading&amp;quot;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Though people are becoming more sensible about this, I remember when I started almost two decades ago, this was all the rage.  The fact is that trading should be disciplined but humans cannot operate without emotion, so people end up trying to stifle their emotions only to see them explode in other aspects of their lives or their trading accounts.  Emotion has to be managed - but it cannot be squelched in the trading environment.&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;blockquote&gt;&lt;p&gt;&amp;quot;Learn to paper trade strategies properly before you trade in the live environment&amp;quot;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;Everyone wants to be in on the action before they actually know what to do.  Myself included.  Granted there are things you learn in the live trading space that can only be assessed there, but jumping in with real money before you establish proper risk protocol and strategy execution is like putting on slalom skis for the first time and getting dropped off atop an Olympic ski jump....with almost as disastrous results.  Learn to trade before you actually trade.&lt;/p&gt;&lt;h2&gt;What’s a non-trading related book that’s influenced you recently?&lt;/h2&gt;&lt;p&gt; &lt;a href=&quot;https://amzn.to/3fK5jzS&quot;&gt;&amp;quot;Thinking Fast and Slow&amp;quot; by Daniel Kahneman&lt;/a&gt;&lt;/p&gt;&lt;p&gt;An excellent study of the decision systems we have and how we war with them in the realms of our personal biases.  It helped so much in the understanding of the thought process that goes into the decision-making business of trading.&lt;/p&gt;&lt;h2&gt;Questions for Anne-Marie?&lt;/h2&gt;&lt;p&gt;Ask her in the comments below or &lt;a href=&quot;https://twitter.com/AnneMarieTrades&quot;&gt;ask her on Twitter&lt;/a&gt;.  Thanks Anne-Marie!&lt;/p&gt;&lt;p&gt; Do you know someone who you think would make a good interviewee?  Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trader Interview: Sean McLaughlin @chicagosean</title>
        <link href="https://davemabe.com/trader-interview-sean-mclaughlin-chicagosean"/>
        <id>https://davemabe.com/trader-interview-sean-mclaughlin-chicagosean</id>
        <published>2020-01-10T19:13:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I&amp;#039;m starting a trader interview series. The series will not be a long form, exhaustive list of questions about how and why the interviewee got into trading or how their upbringing did or did not contribute to their success.  There will be just three simple questions designed to reveal how the trader separates themselves from the trading herd.&lt;/p&gt;&lt;p&gt;There&amp;#039;s a lot of trading advice floating around out there.  Some of it&amp;#039;s great, some of it&amp;#039;s terrible, and a lot of it is so ingrained in the collective trader psyche that it becomes meaningless or cliche.  Some of it applies only to a certain type of trader (&amp;quot;sell in May and go away&amp;quot;) and some of it is so common that no one would dare question it (&amp;quot;add to your winners, cut your losers short&amp;quot;).&lt;/p&gt;&lt;p&gt;The first two questions apply to the collective trading advice that is present all around us.  What is the most overrated trading advice?  What is the most underrated trading advice?  I expect I&amp;#039;ll get some pretty contrarian takes on these questions even for the already contrarian bunch that traders are.&lt;/p&gt;&lt;p&gt;The last question is designed to bring out a learning suggestion - a book recommendation.  Not the same tired question (&amp;quot;what&amp;#039;s the best trading book to buy?&amp;quot; - it&amp;#039;s &lt;a href=&quot;https://amzn.to/3bv1kDP&quot;&gt;One Good Trade&lt;/a&gt; by the way) but a different and much more interesting question.  What&amp;#039;s a non trading book you&amp;#039;ve read recently that INDIRECTLY helped your trading?  In other words, a non trading book that you were surprised to find lessons that you could apply to your trading or just improved your life or understanding of the world in some way.&lt;/p&gt;&lt;h2&gt;Who is Sean McLaughlin?&lt;/h2&gt;&lt;p&gt;I appreciate my friend Sean McLaughlin (&lt;a href=&quot;https://www.twitter.com/@chicagosean&quot;&gt;@chicagosean&lt;/a&gt;) for agreeing to participate and being the inaugural interviewee.  I don&amp;#039;t remember the first time I actually met Sean but it feels like I&amp;#039;ve known him a long time.  He&amp;#039;s brutally honest about his trading and that comes out in &lt;a href=&quot;https://medium.com/@chicagosean&quot;&gt;his blog&lt;/a&gt; and his tweets.  Sean has a great voice and hosts at least &lt;a href=&quot;https://chicagoseantrades.com/podcast/&quot;&gt;two podcasts&lt;/a&gt; that are worth checking out. He hosts a Denver traders&amp;#039; meet up which I understand is awesome - I wish there was something like that in my area. Sean came to Trade-Ideas via StockTwits and he&amp;#039;s been an awesome addition. Here are Sean&amp;#039;s answers to the questions...&lt;/p&gt;&lt;h2&gt;What is the most overrated trading advice?&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Journaling&lt;/strong&gt;. Yeah. I said it. &lt;/p&gt;&lt;p&gt;Look, I journal. But I don&amp;#039;t do it every day. And I certainly don&amp;#039;t do it for every trade. I do it when I&amp;#039;m called to do it. I don&amp;#039;t set a timer, and I don&amp;#039;t force myself to eat spinach whenever I don&amp;#039;t journal. Deep introspection is important for traders. But the means in which we all get there varies widely. For some, its meditation. For others its exercise. I might like to hike. Or maybe inspiration hits you best when you&amp;#039;re in the shower or on long drives? Whatever works for you, do more of it. At the end of the day, we all need time to think and strategize and re-energize away from the screens. Whatever that means to you and however that works for you -- rock on with your Spirit Animal self.&lt;/p&gt;&lt;h2&gt;What is the most underrated trading advice?&lt;/h2&gt;&lt;p&gt;The X&amp;#039;s and O&amp;#039;s of trading are important, no question. But no matter how efficient you are at learning how to be a better trader, and no matter how quickly your assent to trading mastery, none of it will matter -- &lt;strong&gt;NONE OF IT&lt;/strong&gt; -- if you don&amp;#039;t &lt;strong&gt;get your personal financial house in order&lt;/strong&gt; and establish systems and best practices to systematically save money, minimize tax impacts, aggressively pay down and ultimately avoid debt, and live within your means with a sensible budget. No amount of income you might derive from the markets will matter if you don&amp;#039;t take care of this stuff first and make it a priority throughout your journey. Take it from me. I&amp;#039;ve lived the nightmare.&lt;/p&gt;&lt;h2&gt;What&amp;#039;s a non-trading related book that&amp;#039;s influenced you recently?&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;https://amzn.to/35WzY8D&quot;&gt;I TEACH YOU TO BE RICH&lt;/a&gt;, Ramit Sethi.&lt;/strong&gt; Terrible title, but life-changing approach to personal finances for me. The introduction to YNAB within this book alone was worth the $10 cost. This one book has opened my mind to so many new things to be aware of and be systematic about and can be directly linked to an ever-increasing positive slope to my personal net worth, self-esteem, productivity, health, family relationships around money, and ultimately my success as a trader. All these things are linked. The sooner we accept this, the sooner we thrive in all facets of our careers and life.&lt;/p&gt;&lt;h2&gt;Questions for Sean?&lt;/h2&gt;&lt;p&gt;Ask them in the comments or hit him up &lt;a href=&quot;https://www.twitter.com/@chicagosean&quot;&gt;on Twitter&lt;/a&gt;.  Thanks Sean!&lt;/p&gt;&lt;p&gt;Do you know someone who you think would make a good interviewee?  Contact me!&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">What Frequency of Trades is Best for a System?</title>
        <link href="https://davemabe.com/what-frequency-of-trades-is-best-for-a-system"/>
        <id>https://davemabe.com/what-frequency-of-trades-is-best-for-a-system</id>
        <published>2020-01-09T12:27:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;When evaluating trading systems, how do you decide what frequency of trades is best? It seems like an easy question but there are several factors to consider and many of these decisions can be the difference between a successful trading system and one that&amp;#039;s not worth your time.  Here&amp;#039;s my framework for determining the right number of trades for a model.&lt;/p&gt;&lt;h2&gt;As Often As Possible? Maybe!&lt;/h2&gt;&lt;p&gt;On one hand if your trading system has a significant edge then theoretically you should trade it as often as possible - no filtering at all, right? In practice though there is typically some filtering that needs to take place.&lt;/p&gt;&lt;p&gt;Consider the chart above. You have your trading idea, say, new highs on high relative volume.  Most trading systems should start out with a basic trading edge - a strong theory that is supported by looking at a large number of trades in a backtest.&lt;/p&gt;&lt;p&gt;When done properly, the more filtering you do to your trading system the &lt;strong&gt;higher the profit per trade&lt;/strong&gt; but the &lt;strong&gt;lower the total profit&lt;/strong&gt; from the system.  This is because proper filtering will &lt;strong&gt;filter out the worst trades&lt;/strong&gt; at each point along the x-axis.  (I estimate that 90% of my edge comes from my ability to choose filters that make sense - I&amp;#039;ll write about this soon.)&lt;/p&gt;&lt;p&gt;Imagine you can determine with decent accuracy which trades will be profitable and which will not.  If you were really concerned about the win rate (unhealthily so!) then you could reduce the system to just a single trade that was highly likely to be profitable.  But at what cost?  Total profit of course.  So you can see there&amp;#039;s a tension between total profit and profit per trade when you are able to meaningfully filter your trading system.&lt;/p&gt;&lt;h2&gt;What&amp;#039;s the Right Balance Between Total Profit and Profit Per Trade?&lt;/h2&gt;&lt;p&gt;This is the ultimate question and where most of your work occurs.  There is an art to coming up with the right balance and a lot of what you choose will come from experience.  Depending on your situation the more &lt;strong&gt;conservative approach would be to apply more filtering at first&lt;/strong&gt; - that is, choose a point nearer to the right side of the chart.  The more aggressive approach would be to choose a &lt;strong&gt;point nearer to the left side&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;There are good arguments to be made for either direction.  If you have more trading experience then the more aggressive approach can be quite valuable.  The more quickly you gather live feedback from the market the more quickly you&amp;#039;ll be able to iterate and understand more about how your trading system acts in the actual market and how that differs from your theoretical backtest.  Of course there are costs associated with this and as I&amp;#039;ve written before there&amp;#039;s &lt;a href=&quot;https://davemabe.com/my-approach-to-trading-with-bigger-size/&quot;&gt;always the real temptation to scale a trading system up too quickly&lt;/a&gt; (something I&amp;#039;ve done many times) since you&amp;#039;re typically overly optimistic at this point in the system development cycle.&lt;/p&gt;&lt;p&gt;If you choose a point towards the right of the chart you&amp;#039;ll have less risk but that comes with the cost of having to wait potentially a long time before the feedback comes (i.e. trade signals appear). Of course there is no &amp;quot;right&amp;quot; answer - you&amp;#039;ll have to gauge for yourself what makes sense given the nature of the strategy and your personal preferences.&lt;/p&gt;&lt;h2&gt;Other Important Factors to Consider&lt;/h2&gt;&lt;h3&gt;How will this affect the systems you&amp;#039;re already trading?&lt;/h3&gt;&lt;p&gt;If you already have a trading system that you&amp;#039;re trading how will these new trades affect it?  Will the trade times overlap?  Will this new system be a distraction?  Is the trade frequency of the new system dramatically different than your current one?  If so trading the new system might be a serious distraction from the trading you&amp;#039;re already doing.  If you&amp;#039;re mentally burrowed down trading in the zone in one system and then a signal from another comes along you might underestimate just how much of a distraction that can be.&lt;/p&gt;&lt;h3&gt;How fast is too fast?&lt;/h3&gt;&lt;p&gt;Like the video clip from I Love Lucy above implies, there&amp;#039;s a point where you&amp;#039;ll be overwhelmed by the number of trades.  There&amp;#039;s a wide variety of capacities among traders - some can easily handle more trades and others find it difficult.  This can be alleviated by &lt;strong&gt;automating your entries, your exits, or both&lt;/strong&gt; - something I highly recommend.  Also note that you should err on the side of fewer strategies if given the choice.  For example, would you prefer to take 10 trades from a single strategy or one trade from 10 different strategies?  It should be obvious that 10 trades from a single strategy is preferable.&lt;/p&gt;&lt;h3&gt;How slow is too slow?&lt;/h3&gt;&lt;p&gt;Another factor to consider is what&amp;#039;s your threshold for the lowest frequency?  I think about this in terms of &lt;strong&gt;trades per day&lt;/strong&gt;.  I try to keep my trading systems above 0.5 trades per day if possible.  Why?  I find that anything less than that and it&amp;#039;s not frequent enough to keep my attention.  I need to be focused on the strategies I trade - understanding fully why they should be successful.  There&amp;#039;s something about the repetition of trades in a system that keeps this focus in the forefront of your mind.  As the frequency of trades drops it&amp;#039;s harder and harder to recall that focus quickly.&lt;/p&gt;&lt;h3&gt;What about buying power?&lt;/h3&gt;&lt;p&gt;A non-obvious factor when you add a trading system is the buying power that is required.  The more trades in the system the more buying power needed.  Combine this with systems you&amp;#039;re already trading and this could become a problem quicker than you realize.&lt;/p&gt;&lt;p&gt;It&amp;#039;s quite frustrating to run out of buying power just before some winning trade signals materialize!  One thing I do is keep a &lt;strong&gt;log of buying power over time&lt;/strong&gt;.  This updates in real time as I&amp;#039;m trading.  I can go back and see when I had the least amount of buying power available over a period of time and I can plan accordingly.&lt;/p&gt;&lt;h3&gt;Which day had the most trades?&lt;/h3&gt;&lt;p&gt;Trades per day is a good benchmark, but that number hides a very important piece of information - what was the day with the highest number of trades?  This can vary dramatically between systems even with the same trades per day.  It&amp;#039;s really important to plan ahead and visualize what those days would have felt like.  Would you have been able to keep up with all the trades?  Would you have run out of buying power?&lt;/p&gt;&lt;h2&gt;It&amp;#039;s up to you!&lt;/h2&gt;&lt;p&gt;It&amp;#039;s clear that once you take all these factors into consideration the choice for trade frequency for a trading strategy is a very personal one and there will not be a one size fits all answer for every trader.&lt;/p&gt;&lt;p&gt;Do you approach things differently? Let me know in the comments.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Exiting Trades Too Early or Late? Here's Why...</title>
        <link href="https://davemabe.com/exiting-trades-too-early-or-late-heres-why"/>
        <id>https://davemabe.com/exiting-trades-too-early-or-late-heres-why</id>
        <published>2019-12-27T16:38:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I came across this question on the DayTrading subreddit the other day.&lt;/p&gt;&lt;p&gt;In this case the trader thinks he&amp;#039;s exiting early because he&amp;#039;s worried about a big loss. Big losses, of course, are uncomfortable.  You have to be able to tolerate them to catch the profitable trades.  The problem is not the occasional big loss - the most difficult part of trading is that you can&amp;#039;t predict when there will be a large concentration of losing trades (a drawdown).&lt;/p&gt;&lt;p&gt;If you find yourself deviating from your plan and exiting your positions too early or too late it could be one of two things that&amp;#039;s occurring:&lt;/p&gt;&lt;ol&gt;&lt;/ol&gt;&lt;p&gt;If the trader is mostly comfortable taking losses and is still worried about big losses then he should reduce his trading size to something where he can think more clearly about each trade.&lt;/p&gt;&lt;p&gt;Just as common a situation though is that the trader hasn&amp;#039;t put in the work and research required to understand their exit strategy. If you find yourself second guessing your plan and overriding your pre-planned exit then the best course of action is to test different exit scenarios and see which exit strategy works best over a large number of your trades.&lt;/p&gt;&lt;p&gt;If you don&amp;#039;t know which exit strategies work best for your strategy then you should drop what you&amp;#039;re doing and do the research required to come up with that answer.&lt;/p&gt;&lt;p&gt;Here&amp;#039;s an example from one of my trading strategies.  This strategy enters early in the day and holds the trades until the end of the trading day if a stop loss or target isn&amp;#039;t hit.  The result is a lot of waiting for positions to play out.  Any one trade looks erratic and obvious in hindsight but I know that if I exit earlier than the end of the day I will be leaving money on the table across a large number of trades.  There is no guesswork on my part - the numbers don&amp;#039;t lie.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Creating a SPY Trading System</title>
        <link href="https://davemabe.com/creating-spy-trading-system"/>
        <id>https://davemabe.com/creating-spy-trading-system</id>
        <published>2019-12-03T00:37:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content src="https://davemabe.com/creating-spy-trading-system" type="text/html"/>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How Do You Fix “Trading on Tilt”?</title>
        <link href="https://davemabe.com/how-do-you-fix-trading-on-tilt"/>
        <id>https://davemabe.com/how-do-you-fix-trading-on-tilt</id>
        <published>2019-11-07T17:04:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Mike Bellafiore asked this question on Twitter yesterday. It’s a great question that almost every trader deals with at some point.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://medium.com/media/264060af57a285bd5c6c798bb7566ec5/href&quot;&gt;https://medium.com/media/264060af57a285bd5c6c798bb7566ec5/href&lt;/a&gt;&lt;/p&gt;&lt;p&gt;There are a lot of thoughtful replies in that thread with some good advice: step away from your trading desk, &lt;a href=&quot;https://mobile.twitter.com/v_perfect/status/1192239003589738497&quot;&gt;trade with half your normal position size&lt;/a&gt;, &lt;a href=&quot;https://mobile.twitter.com/jholman1219/status/1192311977554542593&quot;&gt;stop and go exercise&lt;/a&gt;, etc. Of course these are all things you should do if you find yourself in this situation. All of these “solutions,” though, are temporary band-aids for a more permanent problem. If you don’t address the deeper problem you’re likely to &lt;strong&gt;continue to find yourself in these difficult trading situations&lt;/strong&gt;.&lt;/p&gt;&lt;h3&gt;The Deeper Problem and How to Fix It&lt;/h3&gt;&lt;p&gt;What is the root cause of trading on tilt? It’s really a symptom of a much deeper problem that you should try to solve: &lt;strong&gt;you don’t understand your trading system well enough&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you’re trading on tilt then it likely means that the market has put you in a situation that you didn’t realize could happen ahead of time. “I had no idea this many trades could go against me in one day!” or “Who knew that I could lose so much money in a single trade!” Having these thoughts in the middle of a trading day is a major flaw in your system that must be addressed immediately. How?&lt;/p&gt;&lt;p&gt;The fundamental problem is that you haven’t done enough work outside of the trading day to fully understand your trading system and &lt;strong&gt;why it works&lt;/strong&gt;. What are the best and worst days that your system is going to have? Under what types of markets does your system work well? When does it perform most poorly? You can’t predict the future but you can look in the past and get a really good idea about the range of performance you can reasonably expect from your system. If something surprises you during the trading day, it’s likely that you’ve skipped this arduous but critically important step in preparation.&lt;/p&gt;&lt;h3&gt;Peer into the Past&lt;/h3&gt;&lt;p&gt;Historical market data is really easy to get access to now. Go back and backtest your system for as long as you can go back. Look at the equity curves — are they smooth or do they have spikes? (And be careful, if you look over a large enough timeframe all curves look smooth!)&lt;/p&gt;&lt;p&gt;Here’s an important step that most traders skip — look at the performance &lt;strong&gt;by day&lt;/strong&gt; of your trading system. What were the best days? The worst days? What days did it trade the most? How many days are there with no trades? Look at the trades it took on those days and &lt;strong&gt;truly visualize what trading that day would have felt like with size&lt;/strong&gt;. Could you have kept up on the days where it traded a ton? What would you have done on the days with the biggest intraday drawdowns?&lt;/p&gt;&lt;p&gt;This is the hard work required to be prepared for any given trading day.&lt;/p&gt;&lt;h3&gt;Easy for you to Say, Dave — You’re an Automated Trader — I’m a Discretionary Trader!&lt;/h3&gt;&lt;p&gt;What about traders that trade with their instincts? “You can’t backtest my super-duper trading discretion. I trade with my extraordinary feel for the markets.”&lt;/p&gt;&lt;p&gt;I know plenty of traders like this and while it seems like these are fundamentally different styles, they’re really very similar: &lt;strong&gt;You get a signal where you’re confident you have a trading edge and you take the trade&lt;/strong&gt;. Sounds pretty simple and in a lot of ways it is.&lt;/p&gt;&lt;p&gt;How you attain that confidence in your edge varies from trader to trader. Confidence for a discretionary trader comes from experience and trading results over time. This is more valuable than any backtest but it takes time to develop that experience.&lt;/p&gt;&lt;p&gt;If you get into situations where you end up trading on tilt, then you’re probably trading with too much size and you should reduce your size until you gain more experience with your system.&lt;/p&gt;&lt;p&gt;Of course there are no easy answers but if it were easy everyone would do it!&lt;/p&gt;&lt;p&gt;(Like this post? &lt;a href=&quot;https://www.twitter.com/davemabe&quot;&gt;Follow me on Twitter&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why Trade-Ideas Paper Trading Is Such a Big Deal</title>
        <link href="https://davemabe.com/why-trade-ideas-paper-trading-is-such-a-big-deal"/>
        <id>https://davemabe.com/why-trade-ideas-paper-trading-is-such-a-big-deal</id>
        <published>2019-11-01T17:58:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content src="https://davemabe.com/why-trade-ideas-paper-trading-is-such-a-big-deal" type="text/html"/>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">American Presidents, the Stock Market, and Political Bias</title>
        <link href="https://davemabe.com/american-presidents-the-stock-market-and-political-bias"/>
        <id>https://davemabe.com/american-presidents-the-stock-market-and-political-bias</id>
        <published>2019-08-15T00:44:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content src="https://davemabe.com/american-presidents-the-stock-market-and-political-bias" type="text/html"/>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Should you re-enter trades that have stopped out?</title>
        <link href="https://davemabe.com/should-you-re-enter-trades-that-have-stopped-out"/>
        <id>https://davemabe.com/should-you-re-enter-trades-that-have-stopped-out</id>
        <published>2019-07-15T17:57:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here’s a difficult trading situation that often confounds new traders or even experienced ones that are experiencing a drawdown: a trade setup occurs, you take the trade according to plan and it quickly hits your stop — but then it immediately sets up again for the same type of trade.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2019/07/stopped_out_chart_now_what.jpg&quot;&gt;&lt;img src=&quot;https://davemabe.com/assets/articles/stopped_out_chart_now_what.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Do you take that second setup? On one hand a setup is a setup and not taking the trade would be a mistake. Though on the other hand the market has already told you you were wrong once — being told you’re wrong twice or three times just seems stupid.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2019/07/please_sir_may_I_have_some_more-1.jpg&quot;&gt;&lt;img src=&quot;https://davemabe.com/assets/articles/please_sir_may_i_have_some_more-1-1762538975.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Here are a couple methods you can use to increase your confidence level in this common situation. A large fraction of your trading confidence will come from your research outside of market hours and this situation is no different.&lt;/p&gt;&lt;h3&gt;Keep Track of These Situations To Evaluate the Big Picture&lt;/h3&gt;&lt;p&gt;As opportunities for re-entering trades occur it’s important to keep track of them to understand what &lt;a href=&quot;https://davemabe.com/an-optimistic-take-on-a-common-and-notoriously-frustrating-trading-occurrence/&quot;&gt;happens over a large number of occurrences&lt;/a&gt;. Any individual trade is unimportant — it’s the aggregate that matters.&lt;/p&gt;&lt;p&gt;If you’re having difficulty with this situation you probably are taking some of these re-entry trades and skipping others. That’s understandable but to really gain confidence in these you’ll need to keep track of every one of them. If you’re only trading some then your sample is incomplete and your mind will play tricks on you by easily recalling the big winners or losers but forgetting the bulk of the instances. This is common and why keeping track of all your trades is so important. Your psyche will lie to you but the numbers won’t.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2019/07/keeping_track_of_trades_in_journal.jpg&quot;&gt;&lt;img src=&quot;https://davemabe.com/assets/articles/keeping_track_of_trades_in_journal.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I suggest trading these subsequent setups but &lt;a href=&quot;https://davemabe.com/my-approach-to-trading-with-bigger-size/&quot;&gt;with really small size&lt;/a&gt;. This allows you to risk a small amount of money so the trade is real rather than theoretical which gives you skin in the game so you’re more likely to pay attention over time. As you trade these re-entries, it’s important to track them separately from the “normal” setup. Tagging your trades in a trading journal is a perfect way to handle these. The re-entries are a subset of the main strategy that these trades come from. For example, use a tag like “Strategy X” for all trades from this strategy whether they’re re-entries or not. For the re-entry trades, use an additional tag “ReEntry”. This allows you to track trades across the entire strategy but also filter on only the re-entry trades to measure their performance separately.&lt;/p&gt;&lt;p&gt;After I accumulated several trades using this method, I realized that the re-entry trades were actually performing better than the system overall. It absolutely made sense to trade these second chance setups — perhaps even with larger size.&lt;/p&gt;&lt;h3&gt;Backtest to Get the Longer Term Picture&lt;/h3&gt;&lt;p&gt;It takes time to wait to accumulate a lot of real-time trades to keep track of. You should absolutely do that but in the meantime you can do a backtest to understand what happened in similar situations before you started keeping track.&lt;/p&gt;&lt;p&gt;One approach to capture this situation is to have your backtest skip the first N opportunities in your strategy and trade the N+1th one. Of course, there will be fewer trades in the trade set since a lot of times there’s only a single setup, but you should be able to gather a lot of past instances of these re-entry trades to examine closely in a chart. You can start with N=1 and then run another with N=2, etc.&lt;/p&gt;&lt;p&gt;Every strategy is different but these two steps should give you a deeper understanding of your trading strategy overall but also give you confidence to trade the re-entries (or not!) knowing you have data to back you up.&lt;/p&gt;&lt;p&gt;If you liked this post, you&amp;#039;ll love my free newsletter where I teach how to come up with your own profitable trading strategies.  Sign up here -&amp;gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Takeaways from Mike Bellafiore’s Discussion on Stopped Out Trades</title>
        <link href="https://davemabe.com/takeaways-from-mike-bellafiores-discussion-on-stopped-out-trades"/>
        <id>https://davemabe.com/takeaways-from-mike-bellafiores-discussion-on-stopped-out-trades</id>
        <published>2019-03-01T22:25:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content src="https://davemabe.com/takeaways-from-mike-bellafiores-discussion-on-stopped-out-trades" type="text/html"/>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">My Approach to Trading with Bigger Size</title>
        <link href="https://davemabe.com/my-approach-to-trading-with-bigger-size"/>
        <id>https://davemabe.com/my-approach-to-trading-with-bigger-size</id>
        <published>2019-02-27T18:35:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content src="https://davemabe.com/my-approach-to-trading-with-bigger-size" type="text/html"/>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trade-Ideas SCoRe (Stock Composite Rating)</title>
        <link href="https://davemabe.com/trade-ideas-score-stock-composite-rating"/>
        <id>https://davemabe.com/trade-ideas-score-stock-composite-rating</id>
        <published>2019-02-15T21:51:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Here’s a good write up of &lt;a href=&quot;https://www.trade-ideas.com&quot;&gt;Trade-Ideas&lt;/a&gt; SCoRe or Stock Composite Rating. It blends our technical, fundamental, and non-structured data into a nice metric that can be used to assess a stock’s overall strength. Here’s the full description from Andy Lindloff who spearheaded the effort to create the metric.&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;The Trade Ideas’ SCoRe (Stock Composite Rating) is a proprietary formula that measures a stock’s strength along technical, fundamental, and non-structured dimensions. We employ over 17 such metrics to measure each SCoRe. A stock can have a SCoRe of 30 to 100, with 100 being the best score. Unlike the other rating systems, the SCoRe is dynamic, and will change in real-time during live market hours. This allows our clients to act swiftly to quickly changing price action. ScoRe incorporates both Technical and Fundamental metrics, with an emphasis on moving averages and the position in range on multiple time frames.&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;The Top-List above only looks for stocks with a SCoRe greater than 90. It has identified a stock that may be on the verge of breaking out to an all-time high. iRobot Corp. (IRBT) has a SCore of 98. They recently had earnings and the stock exploded to within cents of it’s all-time high set back in August of last year.&lt;/p&gt;&lt;/blockquote&gt;&lt;blockquote&gt;&lt;p&gt;With a huge short float (42%), a new all-time high above $118.75 could really get this thing going as many shorts will be scrambling to cover. The stock price has made a big move since earnings, so a pullback would not be a surprise and some may wish to use that weakness to enter a position at or near the rising 10 day SMA, should it get there.&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;You can view all the documentation for all our filters on the &lt;a href=&quot;https://www.trade-ideas.com/Help.html#WSF_MinSCR&quot;&gt;Alert and Filter Help page&lt;/a&gt;. You’ll need a &lt;a href=&quot;https://www.trade-ideas.com&quot;&gt;subscription to Trade-Ideas&lt;/a&gt; to use the SCoRe.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">You Missed a Trade - Now What?</title>
        <link href="https://davemabe.com/you-missed-a-trade-now-what"/>
        <id>https://davemabe.com/you-missed-a-trade-now-what</id>
        <published>2019-02-07T17:56:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;One of the most frustrating things that can occur as a trader is when you miss a profitable trade. You’ve gone through countless hours of diligent work and research to create and refine a trading strategy, you’ve paper traded it, you’ve double checked that you crossed your Ts and dotted your Is, and maybe even weathered a drawdown. Finally another trade setup comes along and — dang! — you miss it by either being a moment too late or, even worse, you have your entry order in place and you don’t get filled and the price blows by.&lt;/p&gt;&lt;p&gt;The price is now well into what &lt;em&gt;would &lt;/em&gt;have been profitable territory had you gotten in the trade, but now you’re left sitting on the sidelines wondering what might have been.&lt;/p&gt;&lt;p&gt;Like &lt;a href=&quot;https://davemabe.com/an-optimistic-take-on-a-common-and-notoriously-frustrating-trading-occurrence/&quot;&gt;getting barely stopped out of a profitable trade&lt;/a&gt;, this can be very frustrating for a trader. This can also lead to another situation that most traders don’t put a lot of thought into.&lt;/p&gt;&lt;h3&gt;Price Pulls Back to your Original Entry&lt;/h3&gt;&lt;p&gt;So you missed the original trade, but now the price has pulled back offering you another shot. Do you take it? Here’s a hypothetical but very realistic example in SYY from 2/4/2019.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://www.davemabe.com/wp-content/uploads/2019/02/SSY_missed_trade_chart.png&quot;&gt;&lt;img src=&quot;https://davemabe.com/assets/articles/ssy_missed_trade_chart-1762538991.png&quot;&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;There are two conflicting ideas in this scenario.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;You are being offered a second chance to take the trade &lt;strong&gt;at the original or perhaps even a better price&lt;/strong&gt;.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;However, if you take this trade you are guaranteed to take &lt;strong&gt;100% of the trades that end up hitting your stop&lt;/strong&gt; as this is exactly the behavior of trades that stop out.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;These two ways of thinking about this scenario are of course in stark contrast to each other. What is the best way to think about this scenario so that you have a plan when this all too common situation arises? I see two answers to this question, one very simple and one more complicated but complete answer.&lt;/p&gt;&lt;h3&gt;The Simple and Perfectly Valid Answer&lt;/h3&gt;&lt;p&gt;Your default answer should be this: if you hadn’t missed the original entry, is there any reason you wouldn’t still be in this trade? If not, then you should&lt;strong&gt; take the second entry&lt;/strong&gt; — after all, this is literally a second chance to execute your original plan for this trade.&lt;/p&gt;&lt;p&gt;This is a perfectly valid answer that gives you a stress-free way to respond to the situation. But…&lt;/p&gt;&lt;h3&gt;The Difficult but More Rewarding Answer&lt;/h3&gt;&lt;p&gt;The real crux of the situation is this: even if you establish that you would &lt;em&gt;still be in the trade if you took the original entry&lt;/em&gt;, you now have more information than you had prior. Has the stock exhibited any behavior that makes it more likely to end up a profitable or losing trade? If so, that should &lt;strong&gt;play heavily into your decision&lt;/strong&gt; about whether to take this second entry.&lt;/p&gt;&lt;p&gt;This leads us to a discussion of my favorite and commonly neglected trading topic: post-entry trade analysis. Every trader spends a lot of time thinking about pre-entry analysis, but very few spend the time required for the more rewarding topic: what happens &lt;em&gt;after &lt;/em&gt;you enter your trades.&lt;/p&gt;&lt;h3&gt;Post Trade Analysis — Where to Begin&lt;/h3&gt;&lt;p&gt;To start making a plan for our situation in SYY, we need to figure out where to focus. The first thing to do is review the charts for the trades you’ve taken. Focus on the trades that &lt;strong&gt;went in your direction initially&lt;/strong&gt; like SYY. Separate these charts into profitable trades and losing trades. Is there some behavior that some of the winning trades exhibited that some of the losing trades didn’t? If so, try to formulate a rule and keep score using a spreadsheet for as many previous trades as you can. As with any sort of analysis, it&amp;#039;s the aggregate that counts — any one particular trade in and of itself is meaningless.&lt;/p&gt;&lt;p&gt;This can be especially difficult since these are trades that you’ve taken and probably have some memory of (hindsight bias). Try to leave this emotional baggage at the door. As much as possible take on the role of a skeptical, neutral observer.&lt;/p&gt;&lt;p&gt;If you find a characteristic that shows promise it can have a dramatic effect on your results. We’re only discussing this missed trade scenario, but think about what this implies. If you can determine a statistically sound rule to use for this scenario, you can also apply it to different ones. For example, if you’re already in a trade that exhibits profitable behavior and then pulls back as SYY did, you can use this information to scale in and add to your position. Conversely, if it shows negative behavior you could exit your existing position at breakeven and avoid a loss entirely. This is hugely powerful information that can substantially raise your system’s profitability — and not by adding more trades, but by simply altering the trades you’re already making! As I alluded to in &lt;a href=&quot;https://davemabe.com/change-my-view-adding-to-positions-is-too-hard-and-most-traders-shouldnt-do-it/&quot;&gt;my post on scaling into trades&lt;/a&gt;, this is very difficult by has the potential to be highly rewarding.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Most Underrated Trading Platform Feature: Time Stops</title>
        <link href="https://davemabe.com/most-underrated-trading-platform-feature-time-stops"/>
        <id>https://davemabe.com/most-underrated-trading-platform-feature-time-stops</id>
        <published>2019-02-04T20:06:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content src="https://davemabe.com/most-underrated-trading-platform-feature-time-stops" type="text/html"/>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">SPY and Rising/Falling 200 Day Moving Average</title>
        <link href="https://davemabe.com/spy-and-rising-falling-200-day-moving-average"/>
        <id>https://davemabe.com/spy-and-rising-falling-200-day-moving-average</id>
        <published>2018-12-17T01:19:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;After Brian Shannon’s &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/alphatrends/status/1073769317999603712&quot;&gt;tweet the other day&lt;/a&gt; about new lows in markets below the 200-day moving average, I thought I’d start doing some research on the subject of moving averages in the overall market.&lt;/p&gt;&lt;h2&gt;Streaks of Rising vs. Falling 200 DMA&lt;/h2&gt;&lt;p&gt;First off, here’s a list of the longest streaks with a rising 200-day moving average in SPY. Notice how the second-longest streak just ended towards the end of October.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;08/15/2015: 665 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;10/23/2018: 607 days&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;10/14/2014: 367 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;11/19/2017: 351 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;08/08/2011: 231 days&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Here’s a list of the longest streaks with a &lt;strong&gt;falling &lt;/strong&gt;200-day moving average:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;07/27/2009: 392 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;04/29/2003: 315 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;01/07/2002: 230 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;04/14/2016: 75 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;01/27/2012: 60 days&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Notice the length of these two sets of streaks. The streaks with a falling MA are just so short compared to the streaks with a rising MA. Of course, there is a strong positive bias in the market, so this is exactly what you’d expect to see. It’s still striking to look at the numbers this way. The 75-day streak that ended on 04/14/2016 is fourth on the list! Most traders just don’t have much experience in a bear market.&lt;/p&gt;&lt;p&gt;Here’s another visualization that puts this in perspective:&lt;/p&gt;&lt;p&gt;The above chart shows every trading day since 2005. Green days indicate a rising 200-day moving average, and red days indicate a falling 200-day moving average. The darker the shading, the longer the current streak. There’s a lot of green there! Nothing of real significance in almost a decade. What percentage of current traders do you think have been trading longer than 9 years? It has to be low.&lt;/p&gt;&lt;h2&gt;The Edge with Rising/Falling 200 Day MA&lt;/h2&gt;&lt;p&gt;Is it really true that we’re more likely to make new lows when the price is below a falling 200 DMA as Brian says? Is it one of those market truisms that everybody says but doesn’t really stand up to scrutiny?&lt;/p&gt;&lt;p&gt;It turns out &lt;strong&gt;&lt;em&gt;that it IS true&lt;/em&gt;&lt;/strong&gt; — but how much? How strong is the effect?&lt;/p&gt;&lt;p&gt;When the price is below a falling 200 DMA, on average the next day’s low will be &lt;strong&gt;0.029% lower&lt;/strong&gt;. When the opposite is true — that is, the price is above a rising 200 DMA, on average the next day’s high will be &lt;strong&gt;0.049% higher&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;What About the 50-Day MA?&lt;/h2&gt;&lt;p&gt;The 50-day moving average is shorter, so it “catches up” quicker to the most recent price, so we’d expect the streaks of rising and falling MAs to be shorter. This is exactly what we see.&lt;/p&gt;&lt;p&gt;Longest streaks of rising 50-day MA in SPY:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;01/22/2010: 189 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;03/16/2011: 134 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;02/27/2007: 133 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;03/11/2004: 133 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;05/11/2017: 119 days&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;Longest streaks of falling 50-day MA in SPY:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;01/05/2009: 143 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;10/01/2002: 105 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;04/01/2008: 96 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;01/26/2001: 90 days&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;11/15/2001: 89 days&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;It’s easy to see how bad 2008 was in this chart — the two longest streaks of falling 50 DMA with most of the days in the same year.&lt;/p&gt;&lt;p&gt;What about the edge versus the 200 DMA? When the price is below a falling 50-day MA, the low on the next day is on average 0.045% lower than the previous day. When the price is above a rising 50-day MA, the high on the next day is on average 0.068% higher. The effect is even stronger with the 50 than with the 200. I’ll take a look at shorter moving averages in a future post.&lt;/p&gt;&lt;p&gt;(If you like this post, you’ll probably like &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/davemabe&quot;&gt;my Twitter feed&lt;/a&gt; where I post different SPY-related charts each day depending on the market situation in &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/hashtag/SpyWhatsNext?src=hash&quot;&gt;the #SpyWhatsNext hashtag&lt;/a&gt;.)&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Think about Trading Halts</title>
        <link href="https://davemabe.com/how-to-think-about-trading-halts"/>
        <id>https://davemabe.com/how-to-think-about-trading-halts</id>
        <published>2018-12-13T01:27:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The other day I noticed that one of the symbols on &lt;a href=&quot;https://medium.com/@davemabe/how-i-trade-gaps-8363a1e1811d&quot;&gt;my daily watchlist&lt;/a&gt; had halted in the middle of the day. It was TNXP on 12/7/18 and it was unavailable for trading from 10:20am until about 45 minutes…&lt;/p&gt;&lt;p&gt;Now available here: &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;http://www.davemabe.com/the-best-defense-against-trading-halts/&quot;&gt;http://www.davemabe.com/the-best-defense-against-trading-halts/&lt;/a&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">The Best Defense Against Trading Halts</title>
        <link href="https://davemabe.com/the-best-defense-against-trading-halts"/>
        <id>https://davemabe.com/the-best-defense-against-trading-halts</id>
        <published>2018-12-12T16:33:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;The other day I noticed that one of the symbols on &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://medium.com/@davemabe/how-i-trade-gaps-8363a1e1811d&quot;&gt;my daily watchlist&lt;/a&gt; had halted in the middle of the day. It was TNXP on 12/7/18 and it was unavailable for trading from 10:20am until about 45 minutes later at 11:05am ET.&lt;/p&gt;&lt;p&gt;Years ago I worried &lt;strong&gt;a lot&lt;/strong&gt; about halts. I had just read &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.amazon.com/Fooled-Randomness-Hidden-Markets-Incerto/dp/0812975219&quot;&gt;Fooled by Randomness&lt;/a&gt; by Nassim Taleb which had just recently been released and recommended to me by &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/TraderMike&quot;&gt;Trader Mike&lt;/a&gt;. (My Amazon account tells me I bought it in May 2006 which would have been less than a year after I started day trading.) That book has had a major impact on the world — the term “black swan” is now very common and people at least believe they understand the concept.&lt;/p&gt;&lt;p&gt;At that point in my trading career I was still a beginner. I had assumed all my life that day trading was risky and was still coming to grips with the fact that the vast majority of the risk was in holding overnight — which day trading specifically avoided. Being a risk averse person I still harbored the assumption that day trading was risky because everybody said it was. After reading Fooled by Randomness, I thought that trading halts were the black swans that I had ignored so I put a good bit of thought into them.&lt;/p&gt;&lt;h2&gt;Research&lt;/h2&gt;&lt;p&gt;Whenever I feel like I don’t understand something as well as I should, I do research on the topic until I’m comfortable with it. I wanted to at least get a sense of how big a problem trading halts might be. I downloaded all the trading halt history I could find on &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.nasdaqtrader.com/Trader.aspx?id=TradeHalts&quot;&gt;Nasdaq’s trading halt page&lt;/a&gt; and put them in a spreadsheet. The first thing I thought when looking at the data was that there are a lot more halts than you realize — there were 21 trading halts just on the one day that TNXP halted!&lt;/p&gt;&lt;p&gt;That seems scary but when you drill down you realize that most of them are thinly traded or just strange halts that aren’t likely to occur in most common trading situations.&lt;/p&gt;&lt;p&gt;What about the halts that do happen during common trading occurrences?&lt;/p&gt;&lt;h2&gt;You Will Experience Them&lt;/h2&gt;&lt;p&gt;If you trade for long enough, it is &lt;strong&gt;inevitable that you will experience a trading halt&lt;/strong&gt; in one of your trades, and I assure you, &lt;strong&gt;it will be scary&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;I’m pretty sure I’ve experienced 4 trading halts over the years, the longest of which went from Friday to the following Monday. That was not a very fun weekend!&lt;/p&gt;&lt;p&gt;One thing to remember, though, is that once trading resumes after a halt sometimes price is in your favor. That is, &lt;strong&gt;some trading halts will hurt you but some will benefit you&lt;/strong&gt;. As long as you have a healthy mix of long and short strategies, in the long run there’s a good chance that the halts you experience are going to be a wash. Here’s a chart of the first halt I experienced — HAR on 9/21/2007. This one ended up going in my favor for an over 8R win.&lt;/p&gt;&lt;h2&gt;The Best Defense Against Trading Halts&lt;/h2&gt;&lt;p&gt;Even though in the long run it should be a wash, you still need to do what you can to avoid being wiped out by a particular halt. &lt;strong&gt;The best way to minimize the damage is through proper position sizing&lt;/strong&gt;. It boils down to a simple concept — do you need the money you have at risk? If it was tied up for a day, a week, or even many months — how much pain would that cause you? Make sure you size your positions such that you’re putting on healthy size but not so much that a halt would wreck you. This sizing is a personal choice without a “correct” answer, but it’s important to go through this thought process knowing that there’s a small chance that the money you risk on a trade could be tied up for A LOT longer than you imagine. Plan for the worst case scenario you can think of.&lt;/p&gt;&lt;p&gt;The other main defense against trading halts is, perhaps counter intuitively, trading a lot. The more statistically profitable trades you put on, the less impact a trading halt will have when you step back and take a long term view on your trading. Even a large loss from a trading halt should be just a blip on your long term equity curve.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is the Market Really More Likely to Continue as Gap is Bigger?</title>
        <link href="https://davemabe.com/is-the-market-really-more-likely-to-continue-as-gap-is-bigger"/>
        <id>https://davemabe.com/is-the-market-really-more-likely-to-continue-as-gap-is-bigger</id>
        <published>2018-12-05T01:30:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;If you don’t follow &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/SJosephBurns&quot;&gt;Steve Burns on Twitter&lt;/a&gt;, you should. He tweets all sorts of interesting market-related stuff. This one, though, made me do a double take:&lt;/p&gt;&lt;p&gt;This is one of those market “truisms” that everybody nods their heads to knowingly but very few people bother to verify.&lt;/p&gt;&lt;p&gt;Well, I like to verify things and not in a way to prove people wrong. Rest assured my motives are entirely selfish — if this statement is true then &lt;strong&gt;there’s an edge to be traded profitably&lt;/strong&gt;. More often, though, by verifying things you end up learning something. Even if you can’t directly apply it to a trading strategy now, over years of research you’ll be able to pull from your growing library of market knowledge.&lt;/p&gt;&lt;p&gt;The reason I perked up at this particular tweet is because it runs counter to a lot of my research over the years on the behavior of the overall market. That is, there’s a LOT of &lt;strong&gt;mean reversion in SPY&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;For the tweet to be true, we’d need to see the price close higher than the open after large opening gaps up and close lower than the open on days where there are large openings gaps down. Does that happen? Let’s take a look.&lt;/p&gt;&lt;h2&gt;The Backtest&lt;/h2&gt;&lt;p&gt;I ran a very simple backtest for the SPY:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;When the opening gap is greater than 0, go long at the open and exit at the close.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;When the opening gap is less than 0, go short at the open and exit at the close.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;When the gap is exactly zero, do nothing.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I also capture the Gap % for each day which will let us determine the correlation. The first thing I notice is that this is not a profitable trading strategy which is not surprising. A profit factor of 0.96, win rate of 49%, and an average profit of -$1.84 per 100 shares traded. But that’s taking every trade — let’s look at the size of the gap.&lt;/p&gt;&lt;p&gt;A quick glance at the chart and you’ll see that the bars on either edge are the most extreme gaps — the red one of the left represents the largest down gaps and the green one on the right represents the largest up gaps. If our original statement is true, we’d see bars going in the &lt;strong&gt;opposite direction&lt;/strong&gt; on the ends of this chart — that is, they would extend above the zero line. We see literally the &lt;strong&gt;opposite of what the statement suggests we’d see&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;OK, but What About Correlation?&lt;/h2&gt;&lt;p&gt;When you work with enough backtests and statistical data, you quickly realize that you can be easily fooled by data. In fact, even in the chart above that the opening gap percent &lt;strong&gt;might&lt;/strong&gt; be &lt;em&gt;positively&lt;/em&gt; correlated with average profit per trade even though it appears as if it can’t possibly be. How?&lt;/p&gt;&lt;p&gt;We simplified our trade set by creating buckets for each level (range) of gap percent. When we do this we necessarily lose the full story. &lt;strong&gt;Correlations are strongly affected by extreme cases&lt;/strong&gt; — exactly the cases that were collapsed into the bars on the left and right edges of the chart.&lt;/p&gt;&lt;p&gt;To determine correlation you need to look at the entire trade set — not just the buckets summarized in the chart. When you do, though, you see that the size of the opening gap &lt;strong&gt;is, in fact, negatively correlated with average profit:&lt;/strong&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Correlation for gaps down: -0.033&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Correlation for gaps up: -0.016&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;What if we limit ourselves to only the more extreme gaps? In that case it gets even worse:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Correlation for bigger gaps down: -0.084&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Correlation for bigger gaps up: -0.095&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Again, we’d see positive numbers for these correlations if the original statement was really true — but we see the opposite.&lt;/p&gt;&lt;h2&gt;So What Did We Learn?&lt;/h2&gt;&lt;p&gt;By doing this, we learn a couple things. It reinforces the best advice I can possibly give any trader: don’t believe things at face value — do the work required to convince yourself it’s true.&lt;/p&gt;&lt;p&gt;The other takeaway is that while the correlations here aren’t strong enough to amount to a tradeable edge, they’re getting closer to that point. With some more work, this data suggests you could create a system that actually fades these strong opening gaps.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">My Take on Improving the Equity Curve</title>
        <link href="https://davemabe.com/my-take-on-improving-the-equity-curve"/>
        <id>https://davemabe.com/my-take-on-improving-the-equity-curve</id>
        <published>2018-11-29T01:35:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;We’re making excellent progress on Brokerage+ and I wanted to highlight a particular feature that I came up with several months ago. I’m calling it the “Profit Tracker” although I’m sure there’s a much better name someone can come up with for it. Here’s what I was hoping to accomplish with it.&lt;/p&gt;&lt;h2&gt;The Humble Equity Curve&lt;/h2&gt;&lt;p&gt;Every trader is familiar with an equity curve — basically a line or area chart of your profit (or loss) over some period of time. Here’s a screenshot of one that I just took from our Holly strategies window.&lt;/p&gt;&lt;p&gt;There’s a lot of information conveyed in an equity curve — this one shows the aggregate profit and loss from all positions throughout the day.&lt;/p&gt;&lt;h2&gt;What the Equity Curve Lacks&lt;/h2&gt;&lt;p&gt;Here are some questions that an equity curve DOES NOT answer:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;How many positions are contributing to the profit and loss?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How many of those positions are currently profitable?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;What portion of the total profit is each position contributing?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Is all the profit coming from a single out sized winner?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;How many of the positions are short versus long?&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;The equity curve is great because it’s easily understandable and it’s a simple and pleasing visualization (more pleasing when it’s more green no doubt!)&lt;/p&gt;&lt;p&gt;Trying to answer any of these questions makes the equity curve a lot more complex. You could add points to show when positions were initiated or make it a stacked area chart with each layer in the stack correspond to a position but by doing so you lose the simplicity and familiarity of the equity curve. I’m tempted to try a stacked area chart, but it would definitely have to be bigger to be able to zoom into the details — a simple equity curve can be very small and still convey the necessary information.&lt;/p&gt;&lt;h2&gt;A Different Way to Visualize Profit and Loss&lt;/h2&gt;&lt;p&gt;When I set out to try something different, I wanted to convey more information in less space by adding the ability to answer some of the questions that the equity curve does not. It should also be interesting to look at — for example looking at a chart is a lot more interesting than looking at a column of numbers in a spreadsheet.&lt;/p&gt;&lt;p&gt;Enter the Profit Tracker. It’s a profit and loss continuum with each position plotted on it, but also the total profit marked with the larger black triangle. Here’s another image highlighting some of the details conveyed.&lt;/p&gt;&lt;p&gt;It updates automatically each second so the symbols jump around a bit with each update as it reflects the current status. You can see a live example of the Profit Tracker in Dan’s video from earlier today. Notice the Profit Tracker in the top left of the video.&lt;/p&gt;&lt;p&gt;Also note that there are some positions on the top of the continuum while others are on the bottom. Why? By default the Profit Tracker places them on the bottom, but if it realizes there are symbols that need to be placed close together it puts them on the top to minimize the overlap and try to make all symbols visible.&lt;/p&gt;&lt;h2&gt;It’s Missing the Time Element from the Equity Curve — Or Is It?&lt;/h2&gt;&lt;p&gt;By adding position data to the visualization, we essentially remove an important part of the equity curve — the time element. You can quickly see what the profit and loss was throughout the day in the equity curve where the Profit Tracker operates more like a current snapshot.&lt;/p&gt;&lt;p&gt;While there is no x-axis with time on the Profit Tracker, an indirect subtle indication of time is still there. The scale of the continuum is automatically adjusted based on the maximum and minimum points of total profit throughout the day. Here’s an example from earlier today zoomed into the right hand side:&lt;/p&gt;&lt;p&gt;With only a quick glance you can see that our current profit is off the highs for the day. While this doesn’t convey the exact time of day it does give us some sense that we’re off the highs and by how much. You can in some sense think of this as conveying the same information that the vertical axis does in an equity curve.&lt;/p&gt;&lt;h2&gt;Where to Go From Here?&lt;/h2&gt;&lt;p&gt;While I think this is a pretty useful and unique view of a portfolio, I think it can be improved.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Use a gradient color for the symbol font based on some property such as profit level&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Vary the size of the font based on some aspect — recent profit movement for example&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Add a vertical mode that you decrease the overlap when displaying a lot of positions&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Display a tooltip with some information when you hovered over each position in the continuum&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;What do you think? Would you find it useful? Suggestions for improvement? Let me know in the comments and be sure and &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.twitter.com/davemabe&quot;&gt;follow me on Twitter&lt;/a&gt; if you don’t already.&lt;/p&gt;&lt;p&gt;(Also, Brokerage+ is coming out of beta really soon, but there are a limited number of licenses available. &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;http://bit.ly/2yEy651&quot;&gt;Click here to see how to secure your reservation&lt;/a&gt;.)&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Why I Ignore the Overall Market when I Trade</title>
        <link href="https://davemabe.com/why-i-ignore-the-overall-market-when-i-trade"/>
        <id>https://davemabe.com/why-i-ignore-the-overall-market-when-i-trade</id>
        <published>2018-11-26T21:58:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;Although I have a chart of the SPY open in my trading platform during the day, I am only mildly curious about what it’s doing. Even that might be overstating it. When the market gaps up strongly I don’t have a directional bias in &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot;&gt;my daily gap trades&lt;/a&gt; and neither when the market gaps down.&lt;/p&gt;&lt;p&gt;I realize that it sounds crazy to some traders to completely ignore the overall market, especially when you consider the fact that the &lt;strong&gt;movement of most stocks are correlated with it&lt;/strong&gt;. Given the fact that so many traders watch the overall market and use it to determine how they trade individual stocks, why in the world would I choose to ignore it?&lt;/p&gt;&lt;h2&gt;Benefits to Ignoring Overall Market&lt;/h2&gt;&lt;p&gt;I imagine most systems traders consider how to include the overall market as an input to their trading systems. I thought a lot about it as I designed the systems that I trade.&lt;/p&gt;&lt;p&gt;Here’s a list of reasons why I concluded that I should have no overall market inputs into my systems:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Is the Overall Market Really Highly Correlated with your System?&lt;/strong&gt;&lt;br&gt;Although most stocks are correlated with the overall market on a given day, is your trading system highly correlated with it? It may seem appealing if it’s true, but in my opinion this should be a &lt;em&gt;strike against&lt;/em&gt; the quality of your trading system. Why? What does it say about your trading system if it is so dependent on behavior in the overall market? To me it means your system really isn’t all that unique or statistically significant. A robust trading system SHOULDN’T be strongly correlated with the overall market.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A Market Input Reduces the Number of Trades in your System&lt;/strong&gt;&lt;br&gt;If you find an overall market input that is correlated enough to make a difference in your trading system’s performance, then including it will necessarily reduce the number of trades in your system. In fact, there might be entire days or even weeks where your trading system won’t take trades specifically because of your market filter. I’m trying to take as many profitable trades as I can so anything that reduces the number of trades I need to look at with a very critical eye to decide if it’s &lt;em&gt;really&lt;/em&gt; worth the trade off.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;The Overall Market is Finicky&lt;/strong&gt;&lt;br&gt;I’ve taken stabs over the years at developing systems to trade the overall market using the e-minis. What I quickly found is that when even with 20 years of 1 minute bars, the relatively profitable situations that repeat over time is fairly small. When you do find reliably repeatable opportunities they are relatively infrequent. If you loosen your standards a bit to find more frequent opportunities, the uniqueness of the situation is reduced. Another way to think about this is that each market day is unique — including such a finicky filter in a separate trading system seems risky and somewhat arbitrary to me.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;It Feels Like a Shortcut&lt;/strong&gt;&lt;br&gt;I’ve looked very closely at how the overall market affects some of my strategies. When determining filters to use, the ones that relate to the overall market usually correlate somewhat strongly. It’s always felt like a shortcut to use them though. I’ve always concluded that my systems should be able to stand on their own. If I can’t find other ways to improve a system I’m designing then I take that as a strong sign I should go back to the drawing board and think harder about what I’m trying to accomplish with the trading system.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;It’s a LOT Less Stressful&lt;/strong&gt;&lt;br&gt;Rather than including a lot of indicators and filters into your system, it’s always preferable to exclude as many as you can. There’s ALWAYS more data points you &lt;em&gt;could&lt;/em&gt; be looking at — the trick is having the confidence to ignore the data that’s unimportant. That takes time and work to research how indicators may or may not affect your system. If you don’t do that research, you’ll always have some doubt in the back of your mind that you cluelessly ignoring something important. This is especially true for the overall market which everyone on Twitter has an opinion about. It feels great to be able to confidently ignore that chatter. This reminds me of one of my favorite quotes from Albert Einstein:&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;“Everything should be made as simple as possible, but not simpler.” — Albert Einstein&lt;/p&gt;&lt;/blockquote&gt;&lt;h2&gt;Going Forward&lt;/h2&gt;&lt;p&gt;Even with all the reasons I’ve listed above, I haven’t given up on incorporating overall market filters. This is another benefit of having my systems ignore them — I can always introduce them in the future in a more intelligent way.&lt;/p&gt;&lt;p&gt;For example, to counteract the effect of reducing the number of trades, you could increase your position size since in aggregate each trade should be more profitable and you should be more comfortable scaling up size, all things being equal. I’m also working on a method that instead of a binary yes/no for if the overall market filter is satisfied or not I could use a confidence score from 0 to 100 based on the value of the current market filters. More on this general idea in a future post.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Is Getting Stopped Out of Profitable Trades - A Good Thing?</title>
        <link href="https://davemabe.com/an-optimistic-take-on-a-common-and-notoriously-frustrating-trading-occurrence"/>
        <id>https://davemabe.com/an-optimistic-take-on-a-common-and-notoriously-frustrating-trading-occurrence</id>
        <published>2018-11-19T22:45:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I came across the tweet from Mike Bellafiore the other day describing a typically very frustrating trading experience that I’m sure will resonate with a lot of traders.&lt;/p&gt;&lt;p&gt;So you make a trade with all your risk parameters set and you get stopped out, only to see the stock move strongly in your direction. When the dust settles, you stare at a beautiful chart — a quintessential move that is right up your alley — and you found a way to take a loss on the trade. This situation is not that uncommon if you’ve been trading for any length of time and, man it can be frustrating. Here’s a good example from Friday in KBH:&lt;/p&gt;&lt;p&gt;The article describes the situation as if the trader was fundamentally unprepared for this particular trading situation and how he should have done a little more homework to handle the trade differently once he was stopped out. I agree you should absolutely do as much as you can to prepare for the trading day well before the opening bell rings.&lt;/p&gt;&lt;h2&gt;Being Unprepared Isn’t The Reason&lt;/h2&gt;&lt;p&gt;The important thing to remember though is that you can do all the preparation in the world and this situation is &lt;strong&gt;guaranteed to still happen&lt;/strong&gt;. It would be statistically surprising if this DIDN’T happen pretty routinely.&lt;/p&gt;&lt;p&gt;The proper takeaway I’ve learned over the years is that a well-functioning trading plan will &lt;strong&gt;necessarily &lt;/strong&gt;have these trades occur with regularity. In fact, it’s actually a &lt;strong&gt;positive thing that they occur&lt;/strong&gt; — your general thesis is sound and your stop was placed almost perfectly.&lt;/p&gt;&lt;h2&gt;Any Single Trade Is Irrelevant&lt;/h2&gt;&lt;p&gt;Remember: any single trade is unimportant to the &lt;a href=&quot;https://www.davemabe.com/make-your-journal-compound-your-trading/&quot; title=&quot;Make your Journal Compound your Trading&quot;&gt;success of your trading system&lt;/a&gt;. If one trade can cause this type of meltdown, then you either need to trade with smaller size or redesign your trading system.&lt;/p&gt;&lt;p&gt;Don’t let this situation frustrate you. Handle it like a pro — recognize it and make a mental note. If it happens a lot, go back and backtest using a looser stop and see if there’s an improvement. Only make changes if &lt;strong&gt;you can prove to yourself&lt;/strong&gt; that an alteration will be more optimal over a large number of trades.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Scale In To Trades (with Examples)</title>
        <link href="https://davemabe.com/change-my-view-adding-to-positions-is-too-hard-and-most-traders-shouldnt-do-it"/>
        <id>https://davemabe.com/change-my-view-adding-to-positions-is-too-hard-and-most-traders-shouldnt-do-it</id>
        <published>2018-11-12T21:40:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I’ve been &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot;&gt;gap trading&lt;/a&gt; for over a decade. One thing I learned a long time ago was it’s human nature to obsess over getting into trades, but the real opportunity for improvement is what you do &lt;strong&gt;after you’re in the trade&lt;/strong&gt;. Once you wrap your head around the basics — sound position sizing, use stops properly, etc — you should come to realize that where you make and lose money is how you handle &lt;strong&gt;your big winning trades&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;What Is Scaling In?&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Scaling in to trades&lt;/strong&gt; is the process of adding more shares to an existing position to achieve higher profits, presumably after seeing a confirmation signal after your original starter position was taken.&lt;/p&gt;&lt;h2&gt;Trading is Simple — Just Add Size to Your Winning Trades!&lt;/h2&gt;&lt;p&gt;One thing that you’ll hear a lot of traders talking about &lt;strong&gt;scaling into your winning trades&lt;/strong&gt; — that is, adding size when a trade is going in your direction. To hear them talk about how gracefully they do it makes it seem seductively easy:&lt;/p&gt;&lt;p&gt;and&lt;/p&gt;&lt;p&gt;I’ve looked at scaling into trades a few times very closely with my own trading systems.&lt;/p&gt;&lt;p&gt;My conclusion: &lt;strong&gt;scaling into positions is too hard and most traders should not do it and focus on other easier areas to improve&lt;/strong&gt;. (I do have some caveats at the end of this post.)&lt;/p&gt;&lt;h2&gt;For Scaling In to Work, This Must Be True&lt;/h2&gt;&lt;p&gt;In order for scaling into positions to make any sense, you have to be able to recognize some profitable conditions &lt;strong&gt;AFTER &lt;/strong&gt;you’re in a trade that you &lt;strong&gt;COULD NOT&lt;/strong&gt; recognize at the time of your original entry. This seems subtle but obvious at the same time — if you could recognize the situation prior to the initial entry &lt;strong&gt;just put on more size to begin with&lt;/strong&gt;! (See caveat at end.)&lt;/p&gt;&lt;p&gt;So let’s say you’ve found a post trade entry situation where you believe you have an even greater edge than you did prior to your entry. It has to be a very unique situation because if your trade is already significantly profitable, then adding to the trade is going to raise your average price to an unacceptable level (let’s focus on long trades only.)&lt;/p&gt;&lt;p&gt;On the other hand, if the price is still close enough to your entry price that scaling in will change it only by an acceptable amount, then you’re more likely to be adding size to trades that will end up as losing trades (this is, of course, very bad.) See this example from a trade that Trade-Ideas Holly AI took in RRR on 11/8/18:&lt;/p&gt;&lt;h2&gt;What Happens To Your Original Stop Loss Order?&lt;/h2&gt;&lt;p&gt;Let’s say you’ve determined the price point where you think it’s profitable to add size to a trade when the price has gone in your direction. What do you do with your original stop order? Do you move it closer to your new average entry price? If you do, then you’ll be adding size to positions that some of which end up stopping out. If you leave it where your original stop was then you’ve simply increased your risk for this trade and made your average entry price worse.&lt;/p&gt;&lt;p&gt;Perhaps you look for another “setup” in the trade with its own entry price and stop price that is different from the stop price in the original entry. For example, this trade in URBN from 11/8/2018.&lt;/p&gt;&lt;p&gt;If you’re “scaling into” a trade but you’re using a completely different entry price and stop price &lt;strong&gt;you’re not really scaling in at all &lt;/strong&gt;— this is really a trade from a distinct “system” that happens to coincide with a symbol you’re already in. If that’s the case you should treat this as &lt;strong&gt;two distinct trading systems&lt;/strong&gt; and test, trade, and track performance completely independently from one another.&lt;/p&gt;&lt;h2&gt;Have a Plan For Managing Your Exit Orders&lt;/h2&gt;&lt;p&gt;In any of the scaling in situations I’ve described above, managing the orders in your trading platform is difficult and more prone to costly errors than normal. Imagine the URBN scenario where you’re managing two sets of exit orders from two different entry points. Now — which set corresponds to the first entry and which to the second? What size should the positions be? The additional orders alone add complexity to our position management.&lt;/p&gt;&lt;p&gt;Not only are there more orders to manage, but any mistake we make is &lt;strong&gt;magnified since we’re adding size&lt;/strong&gt;! No room for errors!&lt;/p&gt;&lt;h2&gt;There Are Much Easier Things To Do Than Scaling In&lt;/h2&gt;&lt;p&gt;Even with the extra complexity that scaling into positions introduces, I’m open to the possibility that it can be done profitably — it’s just nowhere near as easy as some would have you believe.&lt;/p&gt;&lt;p&gt;There’s a whole range of things traders could do to improve their trading that are easier than scaling in — for example, are you giving your winners enough room to trend? Should you use a target order? Should your stop be looser? Tighter?&lt;/p&gt;&lt;p&gt;A better approach to variable sizing would be to try to determine when a system’s edge is the strongest and use a larger trading size when that situation occurs and a smaller trading size when the edge is weaker. You could do this by assigning a score (0–10) to your trades prior to entry time based on some criteria that you’ve researched. This could serve as a “confidence score” and you could use a larger initial size for trades with a higher score.&lt;/p&gt;&lt;h2&gt;Conclusion and Caveats&lt;/h2&gt;&lt;p&gt;I feel that most traders are better served not scaling into trades. But, there are some important caveats that I want to mention.&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;You may have to trade with a large enough size that you simply can’t enter your entire position in one order — in this case look at IB’s &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.interactivebrokers.com/en/index.php?f=1223&quot;&gt;Accumulate/Distribute algorithmic order type&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Longer term overnight trading can give you more time and flexibility to scale in more profitably.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Do you scale into day trade positions systematically? I’d love for you to change my mind on this.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How to Visualize Your Stock Watchlist</title>
        <link href="https://davemabe.com/visualize-stock-watchlist"/>
        <id>https://davemabe.com/visualize-stock-watchlist</id>
        <published>2018-11-05T01:57:00-05:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I’ve been &lt;a href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot; title=&quot;How I Trade Gaps&quot;&gt;posting my watchlist&lt;/a&gt; to &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.twitter.com/davemabe&quot;&gt;my Twitter&lt;/a&gt; for some time now. In the olden days of Trade-Ideas, the only window type available was an alert window — a great tool for tracking specific events in real-time across the entire market. For example, you can have an alert window notify you when stocks reach a new 30 day high.&lt;/p&gt;&lt;p&gt;But what if you were looking for stocks that were gapping but weren’t near 30 day highs or lows? It’s nice to be able to rank the entire market by certain criteria even if stocks hadn’t broken new highs or lows yet. That’s why several years ago we added Top Lists to Trade-Ideas. It took a while for users to realize how powerful the top lists are, so uptake was initially slow. As I predicted, though, they’re closing in on being the &lt;em&gt;most popular window in Trade-Ideas&lt;/em&gt; now. Even with the increasing usage over time, &lt;strong&gt;I say they’re still undervalued&lt;/strong&gt;.&lt;/p&gt;&lt;h2&gt;Thinking of an Alternate View&lt;/h2&gt;&lt;p&gt;I spent a good bit of the last couple of weeks brainstorming ideas around the top list. The standard grid view is awesome, but when we look at a column of numbers it’s hard to get a real sense of the distribution of values contained in each row. Sure you can sort and even &lt;a href=&quot;https://www.davemabe.com/how-to-trade-when-the-entire-market-is-moving/&quot; title=&quot;How To Trade When The Entire Market is Moving&quot;&gt;apply custom colors to a column&lt;/a&gt; to make it pop, but it’s still confined to the grid view which makes it hard to visualize the range of numbers.&lt;/p&gt;&lt;p&gt;Take a look at this screenshot from my watchlist from yesterday:&lt;/p&gt;&lt;p&gt;The color coding helps but it’s hard to quickly recognize that the relative volume for GSKY was twice as high as any other value in the list and the top 4 values (GSKY, TWOU, AAC, VCEL) were vastly higher than any other value.&lt;/p&gt;&lt;h2&gt;My Initial Prototype&lt;/h2&gt;&lt;p&gt;I wanted to create a view that lets you see the magnitude of the differences and gauge the order of the values &lt;strong&gt;without having to sort the column&lt;/strong&gt;. Here was my first stab at a different top list view.&lt;/p&gt;&lt;p&gt;This is a scatter plot across two dimensions. In this case, the dimensions are Gap Bars and Relative Volume, two important values that I use in determining which stocks to trade and how to trade them. This view lets you &lt;strong&gt;visually see&lt;/strong&gt; the four highest values in relative volume at a glance but also how extreme they are in terms of the gap.&lt;/p&gt;&lt;p&gt;I chose Gap and Relative Volume for the X and Y axes, but you could choose any two columns from the top list. Here’s one with Price on the X axis and Volume on the Y axis:&lt;/p&gt;&lt;h2&gt;But We Can Do Better&lt;/h2&gt;&lt;p&gt;So far so good, but I think we can improve on this. We can add more dimensions to the view.&lt;/p&gt;&lt;p&gt;Here I’ve added a gradient color as the background of the labels &lt;strong&gt;based on the Float of the stock&lt;/strong&gt;. The darker blue the label, the smaller the float. The lighter the label, the higher the float. You can quickly see that GOGO has the highest float in the list and OUT, MYL, SPLK, MAR, ABC, and UNVR have low floats relative to the list. The point shares the same background color as the label.&lt;/p&gt;&lt;h2&gt;Final Prototype: A Four-Dimensional View&lt;/h2&gt;&lt;p&gt;There’s one more dimension we can add: the size of the label. Here I’ve added the Position in Range as a parameter in the view. &lt;strong&gt;The closer the stock is to its high of the day, the larger the label is&lt;/strong&gt;. For example, OUT is closer to its lows relative to VCEL which is closer to its highs.&lt;/p&gt;&lt;p&gt;What we end up with is a visually appealing view of our top list across &lt;strong&gt;four different and distinct dimensions — &lt;/strong&gt;completely customizable by using any combination of columns in the top list.&lt;/p&gt;&lt;p&gt;So what do you think? Any changes you would make? I’d love to hear from you.&lt;/p&gt;&lt;p&gt;&lt;em&gt;(If you like the content here&lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.twitter.com/davemabe&quot;&gt;,&lt;/a&gt;&lt;/em&gt; &lt;em&gt;you&amp;#039;ll love &lt;a href=&quot;https://www.davemabe.com/newsletter/&quot; title=&quot;Want to Improve your Trading? Sign Up Now&quot;&gt;my free newsletter&lt;/a&gt;&lt;/em&gt;.)&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">All Gaps Are Not Created Equally</title>
        <link href="https://davemabe.com/all-gaps-are-not-created-equally"/>
        <id>https://davemabe.com/all-gaps-are-not-created-equally</id>
        <published>2018-10-30T01:03:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;To trade intraday, you need to find stocks with the &lt;strong&gt;potential for movement&lt;/strong&gt;. Gaps are one of the best ways to identify stocks that have that potential. On any given day there are typically plenty of gapping stocks to choose from — sometimes there can be &lt;a href=&quot;https://www.davemabe.com/how-to-trade-when-the-entire-market-is-moving/&quot; title=&quot;How To Trade When The Entire Market is Moving&quot;&gt;an overwhelming number of them&lt;/a&gt;. We all have a finite amount of capital and time — how do you decide which gapping stocks are important?&lt;/p&gt;&lt;p&gt;You can use a filter for the dollar amount of the gap, say $2. This might work well for lower-priced stocks, but high-priced stocks like AMZN routinely gap $30 or more.&lt;/p&gt;&lt;p&gt;How about using a percentage of the previous close price? This is definitely a better approach and a common one that most traders make. (&lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.trade-ideas.com/Help.html#WSF_MinGUP&quot;&gt;Gap %&lt;/a&gt; is one of Trade-Ideas’ most popular filters used in just over 10% of strategies.)&lt;/p&gt;&lt;h2&gt;An Undervalued Approach to Gaps&lt;/h2&gt;&lt;p&gt;While most traders stop at using Gap %, this approach leaves out valuable information that can help you determine just how unusual the gap is in a particular stock.&lt;/p&gt;&lt;p&gt;Some stocks are what I call “gappy” — that is, they routinely show up on my gappers scan when I use percentage as a threshold. In other words, an opening gap for some stocks just isn’t all that special. When it’s not unusual, it doesn’t attract other traders&amp;#039; attention which is required for a stock’s price to move.&lt;/p&gt;&lt;p&gt;The next level for scanning for gaps is to use what is called &lt;strong&gt;Gap Bars&lt;/strong&gt;. This looks at the gap not in dollars or percentage terms, but in terms of the particular stock’s normal volatility — how much it normally moves on a routine day. At first glance, you’ll notice that Gap % and Gap Bars are highly correlated, but there are subtle and valuable differences.&lt;/p&gt;&lt;p&gt;Here’s a great example from last Friday from &lt;a href=&quot;https://www.davemabe.com/how-i-trade-gaps/&quot; title=&quot;How I Trade Gaps&quot;&gt;my daily gappers list&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;The first thing you notice is that these gaps look pretty similar. LSCC and SNAP were roughly the same price ($6.16 and $6.28) and the Gap % was in the same ballpark (-15.1% and -12.7%).&lt;/p&gt;&lt;p&gt;But when you look at Gap Bars they’re very, very different (-31.7 and -11.7).&lt;/p&gt;&lt;h2&gt;Look at the Charts&lt;/h2&gt;&lt;p&gt;A quick glance at the charts and you’ll notice the subtle difference. The chart in SNAP shows that the gap is more routine in the context of the market action over the most recent several days.&lt;/p&gt;&lt;p&gt;Compare this to the LSCC chart and it’s easy to see that the gap in LSCC is just far more significant. So even though the gaps are practically the same in terms of dollars and percent, when you include volatility the gap in LSCC stands out as &lt;strong&gt;far more unusual which is exactly what we’re looking for&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;If you like this post, you&amp;#039;ll love my free &lt;a href=&quot;https://www.davemabe.com/newsletter/&quot; title=&quot;Want to Improve your Trading? Sign Up Now&quot;&gt;email newsletter for active systems traders&lt;/a&gt;.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How To Trade When The Entire Market is Moving</title>
        <link href="https://davemabe.com/how-to-trade-when-the-entire-market-is-moving"/>
        <id>https://davemabe.com/how-to-trade-when-the-entire-market-is-moving</id>
        <published>2018-10-26T10:04:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt; I’ve been trading gaps since 2005 with &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://davemabe.com/how-i-trade-gaps/&quot;&gt;a statistical, data driven approach&lt;/a&gt;. I’ve put in a lot of quality time outside of trading hours backtesting, looking at charts, and developing software to carry out my trading plan. When you take trading seriously and instill a positive, improvement-focused attitude in yourself, once the market opens you should be executing a plan that you’re totally prepared for. You should essentially be following a script.&lt;/p&gt;&lt;h2&gt;My Trading Script&lt;/h2&gt;&lt;p&gt;I trade several strategies every day. My main set of strategies, though, follows this routine:&lt;/p&gt;&lt;ol&gt;&lt;/ol&gt;&lt;p&gt;Ha! I’m joking about #5 — once my trades are in I literally don’t watch them for the rest of the day — no kidding.&lt;/p&gt;&lt;p&gt;The vast majority of market days this works well. But what happens when every stock in the market looks “tradeable?”&lt;/p&gt;&lt;h2&gt;On Big Market Days, Everything is Moving&lt;/h2&gt;&lt;p&gt;On &amp;lt; 5% of market days, &lt;strong&gt;most every stock looks unusual!&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;These are the hardest types of days to deal with — there’s a lot of opportunity but you can’t realistically take every trade that looks unusual. It’s easy to get overwhelmed and become paralyzed on days like this. The problem is there is a lot of money to be made on these days so it’s good to prepare for them ahead of time. Here’s what I do.&lt;/p&gt;&lt;p&gt;Today there were 64 stocks on my top list for this strategy when there’s normally ~10–15. The first thing I do is look at this top list that looks at a single stock: SPY. (Here’s &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.trade-ideas.com/Cloud.html?code=dc0711a1486136a2644e8ac8a9c0f86f&quot;&gt;the cloud link&lt;/a&gt;.)&lt;/p&gt;&lt;p&gt; I see that the SPY which represents the S&amp;amp;P 500 is trading at 13.8 relative volume. If SPY was trading “normally” it would have a relative volume of 1.0, so this means the SPY is doing 13.8 times it’s normal volume at this time of day — &lt;strong&gt;that’s a lot&lt;/strong&gt;! Here’s what my unfiltered watch list looked like at the time (notice the vertical scroll bar!)&lt;/p&gt;&lt;p&gt;This top list also includes the relative volume column. If stocks have unusual activity but on lower relative volume than the overall market, &lt;strong&gt;then they’re not really that unusual even it a stock is doing 4 times its normal volume&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Here’s what the top list looks like after I’ve applied some custom coloring to the Relative Volume column:&lt;/p&gt;&lt;p&gt;The column comes alive showing you what is &lt;strong&gt;really &lt;/strong&gt;unusual today &lt;em&gt;compared to the overall market&lt;/em&gt;. Solid red shows me that it’s well below the threshold I’ve set. Darker blue tells me that the relative volume is unusual even on this market day. Lighter blue to white means it’s above the threshold but not by a ton.&lt;/p&gt;&lt;p&gt;This let’s me quickly see what is REALLY unusual given what the overall market is doing. I can very quickly and confidently narrow my list using data that I can rely on.&lt;/p&gt;&lt;h2&gt;&lt;a href=&quot;https://www.trade-ideas.com/referral.html?p=dmabe&amp;amp;w=products&quot;&gt;&lt;strong&gt;Try Trade-Ideas Now to Take Your Trading to the Next Level&lt;/strong&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;If you liked this post, &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.twitter.com/davemabe&quot;&gt;follow me on Twitter @davemabe&lt;/a&gt; to see my daily watchlist and links to future posts.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">How I Trade Gaps</title>
        <link href="https://davemabe.com/how-i-trade-gaps"/>
        <id>https://davemabe.com/how-i-trade-gaps</id>
        <published>2018-10-24T21:52:00-04:00</published>
        <updated>2025-11-09T06:55:16-05:00</updated>
        <summary/>
        <content type="html">&lt;p&gt; I’ve been trading gaps &lt;a href=&quot;https://www.davemabe.com/my-2019-trading-annual-review/&quot;&gt;for over a decade&lt;/a&gt;. Over the years I’ve refined my  trading routine using statistics and machine learning to figure out  what works for me and what doesn’t, determining which gapping stocks I  should trade and which ones I should ignore, how to best trade up gaps  and down gaps, and automating as much of my trading process as possible.&lt;/p&gt;&lt;h2&gt;Not all Gaps are Equal&lt;/h2&gt;&lt;p&gt;Gaps
up, gaps down, large gaps, small gaps, gaps with high volume, gaps with
low volume — there are all sorts of different types of gapping stocks
each day. How do you decide:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;Of  course these are not easy questions and it can take years of experience  to get closer to the answers. What you’re primarily trading to answer  is: will the stock have movement after the opening gap? If it is likely  to move, then it’s tradeable.&lt;/p&gt;&lt;h2&gt;My Daily Trading List&lt;/h2&gt;&lt;p&gt; Each day I post my curated list of stocks that are on my gap trading  radar for the day. This list mostly comes from my Trade-Ideas scan which  I’ve honed over years of trading to efficiently generate a list of gaps  which are worthy of &lt;em&gt;possibly &lt;/em&gt;trading that day. My Trade-Ideas top list looks like this:&lt;/p&gt;&lt;h2&gt;How I Use My Trade-Ideas Watchlist&lt;/h2&gt;&lt;p&gt; This one view of my watchlist in Trade-Ideas gives me a succinct view  into the data points I need to make trading decisions. It’s sorted by  the Gap% column so I can visually determine which stocks are gapping up  or down and by how much. Green background means gapping up, reddish  background means gapping down. The darker the green or red means the  bigger the gap.&lt;/p&gt;&lt;h2&gt;Other Important Columns Color Coded&lt;/h2&gt;&lt;p&gt; Other data points that I’ve statistically determined are important for  trading gaps are color coded. With just a quick glance I can see some  stocks are more tradeable than others and some should be considered a  priority gapper today.&lt;/p&gt;&lt;h2&gt;Stocks that Will Likely Move After the Opening Gap&lt;/h2&gt;&lt;p&gt; The list that I post each day has been curated by me to include only the stocks that have high likelihood to move &lt;strong&gt;after the opening gap&lt;/strong&gt;. I don’t determine the direction for the purposes of this list, but potential for movement = tradeable.&lt;/p&gt;&lt;p&gt; Only once I determine that the stock has a good chance of movement after the open will it make my daily tweet:&lt;/p&gt;&lt;h2&gt;How do I Trade These Gaps?&lt;/h2&gt;&lt;p&gt;I
use 4 different strategies to trade these gaps: 2 long and 2 short.
Over the years I’ve made the actual order execution as quick and
painless as possible. When I started trading over a decade ago, I
entered the trades manually. I quickly realized that there were two main
ways this was hurting me:&lt;/p&gt;&lt;ul&gt;&lt;/ul&gt;&lt;p&gt;I
eliminated both of these problems using software. I started developing
my own software to enter the trades. A combination of man and machine
helped me take more profitable trades and eliminate all my order entry
mistakes. I quickly learned that entering trades this way opened up lots
of new opportunities to trade profitably.&lt;/p&gt;&lt;p&gt;I’ve  gone through several iterations of the trading software over the years:  fine-tuning certain aspects and adding new features that over time I  discovered that I needed. That process has culminated in the Trade Client.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">SPY since 2000 - Overnight vs. Intraday</title>
        <link href="https://davemabe.com/spy-since-2000-overnight-vs-intraday"/>
        <id>https://davemabe.com/spy-since-2000-overnight-vs-intraday</id>
        <published>2018-07-28T19:17:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;In a recent post about the &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.davemabe.com/last-hour-trading-technique-by-ashwani-gujral/&quot;&gt;Last-Hour Trading Technique&lt;/a&gt;, I mentioned one of my assumptions about the overall market. I think I read somewhere that most of the gains in the SPY are from overnight gaps rather than intraday movement. If true, of course, this implies that there is a lot of money in the overnight gaps and suggests that some swing trading strategies should have a strong position in your trading arsenal.&lt;/p&gt;&lt;p&gt;But I was curious and being someone that likes to verify things rather than blindly follow what the crowd says I thought I’d test this theory to make sure.&lt;/p&gt;&lt;p&gt;What I found surprised me — it’s a little more complicated than a binary yes or no answer.&lt;/p&gt;&lt;p&gt;So I tweeted a poll to see what people thought:&lt;/p&gt;&lt;p&gt;Buy at the open, sell at the close (“intraday”) versus buy at the close, sell at the following open (“overnight”). The responses were pretty soundly in the overnight camp, but not overwhelmingly so.&lt;/p&gt;&lt;p&gt;When I ran some tests I initially thought they confirmed the overnight theory — the final overnight number was solid while the intraday number was basically unchanged. &lt;strong&gt;But&lt;/strong&gt; I decided to look at the equity curves and I see a more complex picture. The difference between the two are negligible since 2009 and, in fact, the intraday system outperformed the overnight system slightly.&lt;/p&gt;&lt;p&gt;Why would this be? I’m not sure, but my main theory is general efficiency argument — over time the markets are getting more efficient.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;I’d love to hear other theories in the comments&lt;/strong&gt;.&lt;/p&gt;&lt;p&gt;Another important takeaway for traders from this exercise: A picture shows so much more than a final number&lt;strong&gt; — Always look at the equity curve!&lt;/strong&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Last-Hour Trading Strategy by Ashwani Gujral</title>
        <link href="https://davemabe.com/last-hour-trading-technique-by-ashwani-gujral"/>
        <id>https://davemabe.com/last-hour-trading-technique-by-ashwani-gujral</id>
        <published>2018-07-23T18:04:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This is the sixth in a &lt;a rel=&quot;noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.davemabe.com/category/tasc-reviews/&quot; title=&quot;TASC Reviews&quot;&gt;series of articles&lt;/a&gt; summarizing the monthly trading strategy article in the Technical Analysis of Stocks and Commodities monthly magazine.&lt;/p&gt;&lt;p&gt;System Type: Overnight holding&lt;/p&gt;&lt;p&gt;Author of article: Ashwani Gujral, author of &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.amazon.com/gp/product/B07CT6MVWM/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=B07CT6MVWM&amp;amp;linkCode=as2&amp;amp;tag=davemabe-20&amp;amp;linkId=50c8110f34b869e14eba4eeffef72895&quot;&gt;How to Make Money in Intraday Trading&lt;/a&gt; and on Twitter &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/gujralashwani&quot;&gt;@gujralashwani&lt;/a&gt;.&lt;/p&gt;&lt;h1&gt;The Last-Hour Trading Strategy&lt;/h1&gt;&lt;p&gt;Gujral outlines his process for his last-hour trading strategy. He takes a position in the last hour of the day, holds it overnight, and exits in the first hour of the following trading day. He seems to have a lot of rules for this strategy that he doesn’t go into a lot of detail about. The overall idea seems appealing — the first and the last hours of the trading day typically have the most action. Add to that the overnight where you can have serious gaps and you’re really only participating in the most volatile activity of the trading day. Here are some of the guidelines he mentions in the article:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;There’s always a setup — it sounds like he’s always taking at least one trade&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;By the end of the day “it’s clear” which direction the overall market has a bias towards, which are the strongest and weakest groups of stocks, and which stocks are breaking out of daily ranges&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Look for breakouts on high volume in the last hour of at least 3% up or down from the previous close — a perfect use for &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;http://bit.ly/2ipCTiw&quot;&gt;Trade-Ideas&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Claims this system has an 80% win rate&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Since it fails 20% of the time “get out fast when you realize something is not working.”&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Here’s a well-chosen example of a trade with this system:&lt;/p&gt;&lt;h1&gt;My Thoughts on This System&lt;/h1&gt;&lt;p&gt;The article lacks a lot of detail about the actual rules of the system, but I don’t think his point was to provide a blueprint. He describes a valid system that’s worth thinking about. The most appealing part is that you’re literally only holding a position during the parts of the day where statistically there’s typically the most movement.&lt;/p&gt;&lt;p&gt;There’s a lot of money in those overnight gaps. I remember reading an article some time ago that mentioned that if you took out all the overnight gaps in the SPY it’s close to unchanged for some long period of time. I haven’t tested that but the point is valid — most of the news comes out after hours. When you day trade you specifically avoid these gaps.&lt;/p&gt;&lt;p&gt;Of course, this strength is also a serious weakness. When you hold overnight it’s only a matter of time before a stock you’re holding gaps against you hard. For this reason, I’m always skeptical that I could get a system like this to work well in the long term.&lt;/p&gt;&lt;p&gt;Ironically, one of the main reasons I day trade is so I can sleep well at night. If I need to be away from my trading desk one morning on a whim — no problem, I’m all cash. This is counterintuitive to most people who believe day trading is all stress.&lt;/p&gt;&lt;p&gt;One way to incorporate overnight gaps is to extend your holding period for a day trade into the following day for a system where you’re normally exiting prior to the market close. This is where I’ve spent the bulk of my research on overnight gaps over the years, although it has been a couple of years since I’ve looked closely.&lt;/p&gt;&lt;p&gt;My problem with this approach is how do you decide which trades to hold overnight and which to exit normally prior to the market close? If you can determine that, why should it matter that you happen to be holding the position? That is, if this is a statistically profitable segment of time to be holding certain positions, then it makes sense to have a separate system for this segment. Extending the holding period of a system to the following day feels like a form of the sunk cost fallacy. I’m holding this position so I might as well gamble and hold it overnight and see what happens.&lt;/p&gt;&lt;h1&gt;TODOs&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Take a fresh look at this type of system — taking a position late and exiting early in the following session.&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Do an analysis of the overnight gaps in the SPY and quantify how much of the overall movement is overnight versus market hours.&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h1&gt;Question&lt;/h1&gt;&lt;p&gt;Do you extend some trades overnight until the next day’s session sometimes? How do you decide when to do that?&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">TASC #5 — Most Traders Expect Too Much or Too Little From Candle Patterns</title>
        <link href="https://davemabe.com/tasc-5-most-traders-expect-too-much-or-too-little-from-candle-patterns"/>
        <id>https://davemabe.com/tasc-5-most-traders-expect-too-much-or-too-little-from-candle-patterns</id>
        <published>2018-05-17T01:10:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This is the fourth in a &lt;a href=&quot;https://medium.com/tag/tasc-review/latest&quot;&gt;series of articles&lt;/a&gt; summarizing the monthly trading strategy article in the Technical Analysis of Stocks and Commodities monthly magazine.&lt;/p&gt;&lt;p&gt;System Type: Candle stick patterns&lt;/p&gt;&lt;p&gt;Author of article: Sylvain Vervoort, author of &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.amazon.com/gp/product/159280375X/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=159280375X&amp;amp;linkCode=as2&amp;amp;tag=davemabe-20&amp;amp;linkId=68aa5beea9c31a7e24b0d07aa0754e84&quot;&gt;Capturing Profit with Technical Analysis&lt;/a&gt;&lt;/p&gt;&lt;h2&gt;The Four Bar Candle Pattern That’s Supposed to Indicate Reversals&lt;/h2&gt;&lt;p&gt;Sylvain makes an argument for a particular candle pattern that shows up in four different ways. There are two sets of patterns — one for uptrends that are reversing (the “downstep”) and one for downtrends that are reversing (the “upstep”).&lt;/p&gt;&lt;p&gt;As in almost all articles of this kind there are some well chosen charts that show how perfect the candle pattern can be.&lt;/p&gt;&lt;h2&gt;Usually Two Responses, Both Wrong&lt;/h2&gt;&lt;p&gt;At this point there are usually two responses to these types of candle patterns. Some traders will look at the well chosen example chart and, despite a little skepticism, will do some further study looking for the particular pattern and build a trading strategy around it. Another group of traders with a little more experience will look at this pattern and dismiss the idea entirely. They used to be the first type of trader but feel like they’ve been around the block and that candle patterns and simply voodoo and will quickly dismiss them.&lt;/p&gt;&lt;p&gt;Both of these responses are the wrong way to think about candle patterns. They both are approaching the candle pattern as if the pattern itself is the trigger to build a trading system around.&lt;/p&gt;&lt;p&gt;A candle pattern alone is (almost?) never enough to use as a trading system. It has to be combined with several other filters and only when they are satisfied might the candle pattern have a statistical significance within a trading system. To use them as the primary trigger in a system is not likely to work out, but don’t dismiss them so soon.&lt;/p&gt;&lt;h2&gt;A Better Approach&lt;/h2&gt;&lt;p&gt;They way I like to think about candle patterns is to see if they appear in some of my already existing trading systems. Trading systems are usually either trend following or reversal systems. Because all systems are based on price action and candlesticks are just one way to reflect that price action, the trigger in your trading systems will necessarily be preceded by some candle patterns. It’s likely you can examine those preceding bars and put them into a finite set of categories of patterns.&lt;/p&gt;&lt;p&gt;You’ll probably find that some of those categories perform better than others. This often leads to more interesting questions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Can I increase trading size when a certain pattern appears in my system?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Can I completely eliminate some losing trades by skipping some categories of trades within my system?&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Can I fundamentally alter my system in such a way to capture more trades within a certain profitable category?&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;These are all good, thought provoking questions that traders should always be asking. Remember — the bar is pretty low — lower than many people think. If you can find something that’s statistically significant within the random noise of the market that consistently improves your trades just slightly — that can be very valuable.&lt;/p&gt;&lt;h2&gt;TODOS&lt;/h2&gt;&lt;p&gt;There are two ways I could see exploring this particular step up/down pattern. One would be categorizing the previous patterns in a couple of my systems on an intraday level. Another might be to take a broader look at the daily charts on my intraday systems. That is, what daily patterns precede the day where a trigger occurs? Both of these are useful exercises for further exploration.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">TASC #4 — Should You “Trade” Your Equity Curve?</title>
        <link href="https://davemabe.com/tasc-4-should-you-trade-your-equity-curve"/>
        <id>https://davemabe.com/tasc-4-should-you-trade-your-equity-curve</id>
        <published>2018-05-08T01:17:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This is the fourth in a &lt;a href=&quot;https://medium.com/tag/tasc-review/latest&quot;&gt;series of articles&lt;/a&gt; summarizing the monthly trading strategy article in the Technical Analysis of Stocks and Commodities monthly magazine.&lt;/p&gt;&lt;p&gt;System Type: Equity Curve&lt;/p&gt;&lt;p&gt;Author of article: Oscar Cagigas, no Twitter but here’s his web site (Spanish): &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;http://onda4.com/&quot;&gt;http://onda4.com&lt;/a&gt;&lt;/p&gt;&lt;h2&gt;Deactivate/Activate you System Based on the Equity Curve&lt;/h2&gt;&lt;p&gt;Oscar suggests a rule based way to toggle trading on and off based on the current equity curve of a trading system. He compares several different methods for doing this. The simplest is based on a moving average of the equity curve. If the equity curve falls below the moving average, simply ignore new trading signals until the equity curve rises back above the moving average. Sounds simple, right?&lt;/p&gt;&lt;p&gt;It’s more complicated than it seems. Of course, if you waited for your ACTUAL equity curve to rise when you’re not trading it you’ll be waiting forever. Because of this you have to keep track of the SIMULATED equity curve as if you didn’t pause your trading. This chart shows the process but it took me a few minutes to understand exactly what the lines meant.&lt;/p&gt;&lt;p&gt;I think the chart is overly complicated because it is overlayed on the Silver price chart which, although it’s the market for the system he’s trading, it’s secondary to our main purpose. The black line is the SIMULATED equity curve that we’re using as a reference. The blue line is the ACTUAL equity curve representing the subset of trades from the system that we actually take. By the end of 2011 you can see that the blue line ends up much higher than the black line.&lt;/p&gt;&lt;p&gt;He goes through 6 different methods to activate/deactivate your system based on certain aspects of the equity curve — the slope, different moving averages, a Donchian channel, etc. There’s a thoughtful discussion about this entire exercise just being an opportunity to overfit which he is careful to try to avoid. He also tests his methods using out of sample data which reduces the chance that he’s curve fitting. All the methods he tested showed varying degrees of improvement over the original reference equity curve.&lt;/p&gt;&lt;h2&gt;My Take on Trading your Equity Curve&lt;/h2&gt;&lt;p&gt;When I read this article my first thought was that making trading decisions based on your equity curve would overly complicate things. The underlying trades within your system don’t care what your equity curve looks like. If there was some correlation between the performance of trades and some aspect of the equity curve then you could pretty easily test it. If you detect any correlation my guess is it would be very small.&lt;/p&gt;&lt;p&gt;Keeping up with the reference equity curve, while not an impossible task, is definitely not a negligible chore. The process would be to run a backtest probably each night and chart it and see whether to activate or deactivate for the following day. Multiply this by the number of systems you have and it quickly becomes a lot of work and attention.&lt;/p&gt;&lt;h2&gt;But Wait — We All “Trade Our&lt;strong&gt; Equity Curves” Whether We Realize it or Not&lt;/strong&gt;&lt;/h2&gt;&lt;p&gt;The more I thought about it the more I realized that we all “trade” our equity curves to some extent. If your account heads to zero you’ll be forced to reduce size since your buying power will be shrinking the whole way down and eventually, the deactivate switch will be set for you. Most of us would reduce position sizing long before that hard limit. That pain point is different for everyone and while a lot of traders would take action to avoid a big drawdown, I suspect many might not be able to articulate a well-thought-out plan ahead of time. Without a plan, we’re susceptible to fear and greed and our own human nature to make mistakes in the heat of the moment just like we are during the lifetime of each trade we make.&lt;/p&gt;&lt;p&gt;So is this “trading your equity curve” or a “well-designed money management plan”? A little of both.&lt;/p&gt;&lt;h1&gt;My TODOs&lt;/h1&gt;&lt;p&gt;Like my last post, I have a to-do item that’s tangentially related to the article. Put some thought into some better-defined rules for scaling down size during drawdowns. Periods of drawdown are inevitable and it’s well worth having a plan to react to them.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">TASC #3 — Camarilla Points by Slawomir Bobrowski</title>
        <link href="https://davemabe.com/tasc-3-camarilla-points-by-slawomir-bobrowski"/>
        <id>https://davemabe.com/tasc-3-camarilla-points-by-slawomir-bobrowski</id>
        <published>2018-04-27T01:21:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This is the third in a &lt;a href=&quot;https://medium.com/tag/tasc-review/latest&quot;&gt;series of articles&lt;/a&gt; summarizing the monthly trading strategy article in the Technical Analysis of Stocks and Commodities monthly magazine.&lt;/p&gt;&lt;p&gt;System Type: Range trading&lt;/p&gt;&lt;p&gt;Author of article: Slawomir Bobrowski, no Twitter or online presence that I could find other than this strange article about a &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;http://premium.working-money.com/wm/display.asp?art=848&quot;&gt;trading system based on a passage in the book of Deuteronomy&lt;/a&gt;.&lt;/p&gt;&lt;h1&gt;Like Pivot Points, but Different&lt;/h1&gt;&lt;p&gt;&lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://en.wikipedia.org/wiki/Pivot_point_(technical_analysis)&quot;&gt;Pivot points are a fairly common method&lt;/a&gt; traders use to define significant support and resistance levels based on the previous day’s trading session. They are several levels that are typically used: S1, S2, S3, etc for support levels (below the price) and R1, R2, R3, etc for resistance levels (above the price). S1 and R1 are the closest to the price and the larger the numerical value in the pivot point the further away that point is.&lt;/p&gt;&lt;p&gt;Camarilla Points are based on the same concept but:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Use different formulas for the price levels&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Can be applied to a range of prior days rather than just the previous day&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Here are the formulas for the camarilla points:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;R5 = (High / low) * Close&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;R4 = Close + Range * (1.1)/2&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;R3 = Close + Range * (1.1)/4&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;R2 = Close + Range * (1.1)/6&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;R1 = Close + Range * (1.1)/12&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;S1 = Close - Range * (1.1)/12&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;S2 = Close - Range * (1.1)/6&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;S3 = Close - Range * (1.1)/4&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;S4 = Close - Range * (1.1)/2&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;S5 = (Close -(R5-Close))&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h1&gt;Strategy for Trading the Camarilla Points&lt;/h1&gt;&lt;p&gt;Here’s a chart that shows the points on a chart of the Dow from 2012. The idea of the system outlined in the article is that you wait for the price to reach R3 or S3 and trade that move until it reaches the opposing point. S4 and R4 are used as breakout triggers — that is, you trade with the move (in the image above, short at [3], buy at [4]).&lt;/p&gt;&lt;p&gt;The R3 and S3 levels typically seem to be fading a move like in this example. Buy at [1], sell at [2].&lt;/p&gt;&lt;h1&gt;My Takeaways&lt;/h1&gt;&lt;p&gt;I’ve always pretty much ignored pivot points. I know a lot of traders pay a good bit of attention to them and some of them are quite successful using them. Here’s why I’ve ignored them up until this point.&lt;/p&gt;&lt;p&gt;The pivot points are derived from the actual price levels from the previous day. Why focus on data points that are one layer of abstraction away from the &lt;strong&gt;actual source&lt;/strong&gt; of the pivot points? At least start with the actual previous day’s prices (open, high, low, close) directly and see if those affect system performance. This is why I focus on the previous day’s close, high/low, and open in that order. The more recent price level is more important, so the previous close is significantly more important than the previous open.&lt;/p&gt;&lt;p&gt;However, as more and more traders look at a derived data point, the more you should be willing to pay attention to it simply because of the decisions traders are making based on it. For example, common moving averages (50, 200) are typically more important than a more obscure indicator that nobody has heard of.&lt;/p&gt;&lt;p&gt;As far as I can tell, pivot points don’t meet that attention threshold for me. Where does that leave the camarilla points? Given the fact that I’m guessing not a single person that reads this article will have heard of them, then the attention traders give it is minuscule or non-existent. Also, the arbitrary nature of the formulas and timeframe you apply it to make it seem weak — for example you could take any chart and come up with a timeframe for the camarilla points that works well.&lt;/p&gt;&lt;h1&gt;My TODOs&lt;/h1&gt;&lt;p&gt;So I’ve dismissed the camarilla points. Does that mean this was a worthless exercise? I don’t think so. It does spurn me to take a closer look at the standard pivot points and see if they have any affect on my trading systems. The nice thing about backtesting is that you can come up with a prediction about some aspect of the markets and test it. My intuition tells me that the previous days price points matter more than the pivot points. I’ll do some testing and report back my results.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Smiles and Frowns by Thomas Bulkowski — TASC 10/2013</title>
        <link href="https://davemabe.com/smiles-and-frowns-by-thomas-bulkowski-tasc-10-2013"/>
        <id>https://davemabe.com/smiles-and-frowns-by-thomas-bulkowski-tasc-10-2013</id>
        <published>2018-04-26T01:24:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This is the second in a &lt;a href=&quot;https://medium.com/tag/tasc-review/latest&quot;&gt;series of articles&lt;/a&gt; summarizing the monthly trading strategy article in the Technical Analysis of Stocks and Commodities monthly magazine.&lt;/p&gt;&lt;p&gt;System Type: Trend following&lt;/p&gt;&lt;p&gt;Author of article: Thomas Bulkowski &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;http://thepatternsite.com/&quot;&gt;http://thepatternsite.com/&lt;/a&gt; and he has &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.amazon.com/Thomas-N.-Bulkowski/e/B001IGOYSE?&amp;amp;_encoding=UTF8&amp;amp;tag=davemabe-20&amp;amp;linkCode=ur2&amp;amp;linkId=65759ce191fac2a70f549000fa846d45&amp;amp;camp=1789&amp;amp;creative=9325&quot;&gt;several trading books on Amazon&lt;/a&gt;.&lt;/p&gt;&lt;h1&gt;Trading with Personality&lt;/h1&gt;&lt;p&gt;Thomas Bulkowski introduces a pretty simple concept which he calls smiles and frowns. These are basically new trend highs and new trend lows as seen in this graphic from the article.&lt;/p&gt;&lt;p&gt;He identifies 6 points on this oversimplified chart and concludes that C is the best entry point and D is the best exit point. Why not A and F? Those are the exact same prices as C and D, so why not use those?&lt;/p&gt;&lt;p&gt;Because using C provides confirmation and at least a chance that the price isn’t going to continue to fall. D instead of F because it’s better to get out too early than too late.&lt;/p&gt;&lt;p&gt;This is the definition of trend trading. Although this concept as outlined in the article is nowhere near an actual trading system, it does provide a basic framework for trend trading. A question you should always ask yourself when designing a trading system is what is the move I’m trying to capture? Is your system reverting to the mean or riding a trend that you expect will continue?&lt;/p&gt;&lt;p&gt;Important points about smiles and frowns:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Buying at point A is bad because you have no idea where the bottom of the move will be&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Point B provides the perfect entry point but only in hindsight&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Point E is the perfect exit point but in real time it’s never obvious where that is&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Point D is better than point F because prices fall faster than they rise so it’s better to get out too early than too late&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Also, in general, shorter hold times reduce overall market exposure and frees up capital for additional trading opportunities&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;He suggests using a moving average shifted to the left (making it slower) on a line chart to better identify smiles and frowns&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h1&gt;My Takeaways&lt;/h1&gt;&lt;p&gt;A “system” is too strong a word to describe this article. It’s a good basic framework for trend following and serves as a good reminder of the characteristics of all such systems.&lt;/p&gt;&lt;p&gt;His suggestion that “selling too early” is good and his trades confirm this make me want to double-check that the hold times in my systems are optimal. For example, for some of my intraday trend-following systems I normally hold until the close — perhaps testing some way to exit earlier in the day would make sense. If most (but not all) of the profit comes early then it might even be logical to exit earlier even if there’s a little bit of profit that comes later in the day.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Fusion Trading by Josh DiPietro — TASC 8/2015</title>
        <link href="https://davemabe.com/fusion-trading-by-josh-dipietro-tasc-8-2015"/>
        <id>https://davemabe.com/fusion-trading-by-josh-dipietro-tasc-8-2015</id>
        <published>2018-04-25T01:27:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;This is the first in a &lt;a href=&quot;https://medium.com/tag/tasc-review/latest&quot;&gt;series of articles&lt;/a&gt; summarizing the monthly trading strategy article in the Technical Analysis of Stocks and Commodities monthly magazine.&lt;/p&gt;&lt;p&gt;System Type: Mean reversion intraday trades that can turn into swing trades&lt;/p&gt;&lt;p&gt;Author of article: Josh DiPietro from &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://www.daytraderjosh.com/&quot;&gt;https://www.daytraderjosh.com/&lt;/a&gt; and no activity on his Twitter &lt;a rel=&quot;noreferrer noopener&quot; target=&quot;_blank&quot; href=&quot;https://twitter.com/Day_Trader_Josh&quot;&gt;https://twitter.com/Day_Trader_Josh&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Josh gives a rough outline of a system he calls “Fusion Trading”. It uses a combination of important price levels on the daily chart with similar levels on the intraday chart. When these levels line up and the price reaches these levels, the setup is in play. Rather than take trades exactly as these levels are hit, he waits until the price continues beyond the level by 25 cents, 50 cents and 1 dollar. The further beyond the price level, the more reliable the trade is. These important daily price levels must have held for 10+ days, so when the price hits them it will have been a quick move to get there. The “fusion” trade is trying to capture a small pullback from that move as it bounces near these important price levels.&lt;/p&gt;&lt;p&gt;Here are some important points about this system:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Important prices are determined before the market open&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;These prices come from four levels: Premarket highs/lows, previous day highs/lows, daily chart highs/lows, newly formed intraday highs/lows&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The price levels are “close” to each other and used to ladder in to a position&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Important to know points for initial entry and then secondary entry points (for example, $0.50, $1.00, and $2.00 below the important price level)&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Has maximum of three tiers for laddering into a position&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Must have a longer term swing price level within $3 of the initial entry point, otherwise not valid&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;For intraday trades, he uses different price levels prior to 9:45am than after that time&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Trades only higher priced stocks since they move a lot and are large enough that big institutions are trading them&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;As with all “catching a falling knife” trading strategies, you have to be willing to tolerate being in the red a good bit of the time&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;He alludes to having previously used $0.15 increments for entry point ladder and profit taking ladder, but switched to $0.50 increments — doesn’t fully explain why&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;He has some rules for turning an intraday trade into a swing trade and goes through an example but I didn’t really follow the logic&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;Says he has “literally 100 more rules and procedures for capturing the correct entry levels”&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h1&gt;My Takeaways&lt;/h1&gt;&lt;p&gt;The alignment of daily and intraday levels might be worth pursuing. I could see developing a way to automatically identify these levels and incorporating them into my own systems. It would be interesting to identify these areas and see if performance is correlated to the distance from important daily points. Using them as a filter would, I suspect, drastically reduce the number of trades in the systems I have in mind — especially if combining a swing and intraday price level.&lt;/p&gt;&lt;p&gt;Treating VERY high-priced stocks as a different universe all to their own I think makes sense. It’s probably worth looking at my systems only on high-priced stocks.&lt;/p&gt;&lt;p&gt;Turning intraday trades into swing trades has always made a lot of sense to me but I’ve never found a system that I’ve backtested where the data has shown me a clear path to doing it. Holding a position overnight simply because it hasn’t hit a stop or target that you thought would hit intraday seems like a volatility crap shoot.&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
    <entry>
        <title type="text">Trading Ideas from Old Technical Analysis of Stocks and Commodities (TASC) Magazines</title>
        <link href="https://davemabe.com/trading-ideas-from-old-technical-analysis-of-stocks-and-commodities-tasc-magazines"/>
        <id>https://davemabe.com/trading-ideas-from-old-technical-analysis-of-stocks-and-commodities-tasc-magazines</id>
        <published>2018-04-24T01:29:00-04:00</published>
        <updated>2026-03-22T09:29:18-04:00</updated>
        <summary/>
        <content type="html">&lt;p&gt;I had a subscription to Technical Analysis of Stocks and Commodities way back several years ago. I wrote a few articles for them that ended up being published. As the owner of a web trading software company that occasionally advertised in the magazine, they’ve sent me the magazine for several years now.&lt;/p&gt;&lt;p&gt;I have to admit — I rarely read it. I typically glance at the cover to see who this month’s interview is with to see if it’s someone I know. I also glance at the trading strategy article to see if it’s worth reading.&lt;/p&gt;&lt;p&gt;I have, however, for reasons I can’t fully describe, saved almost every magazine I’ve received. I thought that one day I would troll through the archives looking for trading strategy ideas. My archive has swollen to over a foot of shelf space. I considered simply tossing them.&lt;/p&gt;&lt;p&gt;I thought a better idea would be to &lt;a href=&quot;https://medium.com/tag/tasc-review/latest&quot;&gt;blog a summary of the trading idea from each magazine&lt;/a&gt;. Finding a fully formed trading strategy in the magazine is almost certainly a pipe dream — I realize that most people that write articles for TASC are indirectly marketing some product and/or raising their public profile. What other incentive would you have to give away a working trading system in such a public way?&lt;/p&gt;&lt;p&gt;The point of reviewing these old trading ideas is not to find something to trade as-is — it’s to stretch your trading brain and get out of your trading rut. We all have to work hard to think of unique trading ideas. It’s arrogant to think that we have all the trading answers instilled at birth or even learned through the years of experience of one person. It’s also silly to expect to read a few articles and come away with a profitable trading strategy. The best that we can hope for is something in the middle — see how other people think differently about the markets and see if there are some nuggets that we can incorporate some aspect of their ideas into our own to create something unique.&lt;/p&gt;&lt;p&gt;I’ll be taking each of the magazines in my archive and writing a summary of the trading strategy article before it goes to the recycle bin. The goal is to add some ideas to my trading strategy vault. My goal is to post a new summary regularly. We’ll see how it goes.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</content>
        <author>
            <name>Dave Mabe</name>
            <email>dave@davemabe.com</email>
        </author>
    </entry>
</feed>
