TASC 2026.06 One Percent A Week - Adaptive — Strategy by PineCodersTASC
By PineCodersTASC
Performance Metrics
- Author: PineCodersTASC
- Symbol: NASDAQ:TQQQ
- Timeframe: 15 minutes
- Net P&L: +511.54 USD (+5.12%)
- Win Rate: 25.5%
- Profit Factor: 1.142
- Max Drawdown: 395.07 USD (3.69%)
- Total Trades: 290
Description
█ OVERVIEWThis script implements a variant of Dion Kurczek's "High-Probability Weekly Trading Strategy For TQQQ" concept, as presented in his article "Part 2: Variations and Community Enhancements" in the June 2026 edition of the TASC Traders' Tips. In the article, the author explores multiple possible revisions to the original strategy. In this publication, we've adapted the final revision presented in the article: the "Adaptive Weekly Momentum Exit" model. █ BACKGROUNDThe One Percent a Week strategy was recently introduced in the March 2026 publication. It utilizes the 3x leverage and volatility of TQQQ to attempt to capture 1% weekly profit from reactive moves made early in the week. The system was designed with simple, strict trading rules to prevent overtrading and control drawdown. Although this was the goal, the system left room for improvements to the base concept.The original system used the following mechanics:Enter a trade after a 1% dip from the Monday open.Set an initial profit target of 1% for the open trade.If the trade's drawdown is 0.5% or greater, create a short limit order to fill at the entry price.Close the trade at the end of the week, regardless of profit or loss. The version discussed in this article overhauls most of these mechanics. It preserves the same premise of striving for 1% average weekly returns, but aims to minimize drawdowns and allow for conditionally higher profit targets by introducing the following improvements:Entry on Monday open: The strategy enters a trade at the open of each Monday rather than waiting for a 1% dip, increasing market exposure.Dynamic profit target: The initial profit target for each trade is 7%. Depending on the trade performance during the Monday session, the target increases by 1.1%, decreases to 2.5%, or remains unchanged.Momentum-weakness exit: If the trade's performance is strong on Monday and begins to weaken on Tuesday, the system places a market order to exit the trade to avoid potential increased losses.Hard stop-loss: Each trade has a fixed 1.5% stop-loss order to prevent trades from further deterioration.█ THE RULESThe rules of the "Adaptive Weekly Momentum Exit" model discussed in the article differ significantly from those in the original strategy. The rules for this version are as follows:Enter a new trade at Monday's open.Set a fixed stop-loss order at 1.5% below the entry price.Set an initial take-profit order at 7% above the entry price.Check the trade's performance at the end of Monday. If the trade is still open and the profit is greater than 0.3%, multiply the take-profit price by 1.011 to allow a potential profit of 8.177%. If the open profit is currently zero or negative, reduce the target to 2.5%.At the end of Tuesday, check for a momentum-based exit condition. If the return was above a specified threshold on Monday (2% by default) but fails to meet a separate threshold on Tuesday (3% by default), indicating a loss of momentum, place an order to close the position early.If the position is open at the end of the week, close it immediately.▌PropertiesPosition Sizing: Sizing is 10% of equity, the same as in the article.Commissions: Commission value is set to $0. Most major US brokers charge $0 commission on stocks and ETF trades, including leveraged ETFs such as TQQQ.Slippage: Slippage is not discussed in the article and likewise has not been included in this strategy.Note:This script enables "Recalculate after order is filled" by default, allowing the strategy to update trades and orders on the same bar to match the intended mechanics discussed in the article. Using this setting by default results in a warning in the strategy report because it can cause lookahead bias in some scripts. However, this script does not leak future price data into the past to control its orders or logic.█ DISPLAYSimilar to the strategy published for Part 1, this script plots lines to visualize the levels that it uses for order execution:Entry price: The blue line plots the entry price for the position, which is placed at Monday's opening price.-1.5% Hard stop: The red dashed line is the level at which the 1.5% fixed stop loss is placed.Profit target: The solid green line shows the profit target.█ INPUTS"Monday %" and "Tuesday %": These thresholds adjust the parameters of the loss-of-momentum exit. An early exit occurs if trade's return percentage as of Monday is greater than the "Monday %" value, and the current percentage on Tuesday is less than the "Tuesday %" value. The default percentages are the specific values referenced in the article.