Failed Auction Indicator for ThinkorSwim

captut

Member
Simply put a failed auction in trading is a situation where there are multiple buyers/sellers willing to pay the same price for the item auctioned(shares/futures contract) but only one trader gets the price and auction ends and moves in other direction. On candlestick charts, it can be seen as two or more consecutive candles having the same exact high or low and the next candle opens and goes in the other direction.

Failed auction acts as a magnet and majority of the times the price will always come back to the failed auction price and repair the auction so to speak.

Below is a very simple indicator that shows a bubble when it detects a failed auction. It can be used as an indicator for scalping with proper trade management.

Other Example Usage:
  • If I am about to go short and I see there is an un-repaired failed auction at candles above my short price, I will be cognizant about that fact before entering the trade. Or maybe even not enter the trade.
  • If I am about to go long with un-repaired failed auction above my price, Failed Auction can act as an additional confirmation to go long.
  • Failed Auction can help you with your Profit Targets. Example: If your PT is x but you also have an un-repaired failed auction at $x.5 I will put my PT at or above $x.5 because I know that the price will repair the failed auction

Example 1:

psdJA9K.png



Example 2:

RQx7OOc.png


Code:
# Failed Auction
# By captut @ https://discord.gg/MsEjcur


input highFailedAuc = yes;
input lowFailedAuc = yes;
input alert = no;

def fAucHigh = (high[1] == high) and (high[1] > high[-1]);
def fAucLow = (low[1] == low) and (low[1] < low[-1]);

AddChartBubble(fAucHigh and highFailedAuc, high, "FA @"+high, Color.green, yes);
AddChartBubble(fAucLow and lowFailedAuc, low, "FA @"+low, Color.red, no);


Alert(fAucHigh and highFailedAuc and alert, "Failed Auction High @"+high);
Alert(fAucLow and lowFailedAuc and alert, "Failed Auction Low @"+low);


Sharable Link: http://tos.mx/NTvIHS6
 
Last edited by a moderator:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
622 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top