Pre-Sales VIP Questions

Learnbot

Active member
I am not VIP member yet, however, thinking about subscribing to your discord and obtaining the "buy the dip" indicator. I just wanted to check something before I subscribe to VIP, would you be able to post an example of 1min chart for TSLA, Apple, ZM or whatever else stock you see fit (not penny stocks plz since I am not that educated to trade small caps yet). I wanted to see if Buy the Dip works for day trading as well as swing.

Edit: This thread has gotten very long. Added some info below for easier access to information.
Summary:
https://usethinkscript.com/threads/buy-the-dip-vip-indicator-question.3790/page-23#post-89427

Helpful links for anyone interested in seeing how VIP members are using the BTD indicator to trade:
Customer's reviews:
More reviews can be found here: https://usethinkscript.com/threads/buy-the-dip-indicator-for-thinkorswim.3553/post-34186
 
Last edited by a moderator:
I closed a 5 day trade on HUYA yesterday for a 90% option win thanks to BTD. I'm extremely pleased with membership and all the great content on this site.
Please describe your process with this trade, indicator, and maybe your option......if you don't mind?
 
hi Thomas - most of my watchlist have S/R lines from a 3 yr weekly on them (light blue lines) - I was scrolling through my Asian ADR list and saw HUYA had a double bottom bounce off a trend line - and all signals firing. sideways blue are my entries and exits. Looking at it now it seems I could have re-entered a couple days later - but my actual day job takes precedence. ha

Po6LgRf.png


the ITM option

Ph2LerC.png


i've moved to the 2HR - Here's an OSTK trade - I had a bad entry and sold at my 40% target goal - sadly didn't re-enter when it bounced off the last leledc midline - this is something I added recently - it's a very common occurrence which I need to trade more of.. for shorts as well.. drops below the midline and price will bounce under it

q5Tx6Kc.png
 
@GoldStriple Goldie,....thank you. What's annoying is that we have this coded indicator and we cannot confidently trade from it as the signal is erroneous, should I or shouldn't I. Seems that the trade would be from that green arrow, I don't know how you created that, but it makes sense to me. All the distracting lines almost make it hard for me to see what price is doing, but I see in the indicator where a target can end.
 
thanks for the share - nice clean daily and color scheme with trend reversal. my issue is time - I have a day job.. I want to quickly scan stocks and see the story developing.. hence why I'm now on the 2 hr. (but working towards futures instead) the BTD has helped me set my mindset right - to be ok with bull call trades - where in the past all I saw was sell. My trading is a work in progress. :)
 
No sales pitch.......Doug had a contractor business, looking at charts after work, placing trades late into the night for the following day. He mentioned he took longer trades,.....BIG money/Livermore......

 
thanks for the share - nice clean daily and color scheme with trend reversal. my issue is time - I have a day job.. I want to quickly scan stocks and see the story developing.. hence why I'm now on the 2 hr. (but working towards futures instead) the BTD has helped me set my mindset right - to be ok with bull call trades - where in the past all I saw was sell. My trading is a work in progress. :)
where May I find the MACD RSI reversal indicator ?
 
I’m not sure where to ask this. But the BUY THE DIP algorithm does it have the up arrows displayed when it’s time to buy ? Also can you use the profit algorithm alongside it in the same chart?
 
@Csharp You must be referring to our premium BTD indicator? If so, start on the first page of this thread. Plenty of examples in here.

I hope that helps.
 
where May I find the MACD RSI reversal indicator ?
oh Sorry @Gildes - just seeing this now. I've changes settings to get more signals but found they are just a duplicate of BTD.. although less of them.

Here it is:

Code:
declare lower;
input fastLength = 12;
input slowLength = 26;
input MACDLength = 9;
input averageTypeMACD = AverageType.EXPONENTIAL;

def Diff = MACD(fastLength, slowLength, MACDLength, averageTypeMACD).Diff;

input length = 14;
input price = close;
input averageType = AverageType.WILDERS;

def NetChgAvg = MovingAverage(averageType, price - price[1], length);
def TotChgAvg = MovingAverage(averageType, AbsValue(price - price[1]), length);
def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;

def RSI = 50 * (ChgRatio + 1);

def twoBarPivotMACD = Diff > Diff[1] and Diff[1] > Diff[2] and Diff[2] < Diff[3] and Diff[3] < Diff [4];

def overSoldRSI = RSI <= 30;

plot TrendReversal = twoBarPivotMACD and highest(overSoldRSI[1], 4) > 0;
 
Hello friends, I am looking for someone who speaks Spanish and uses this "BTD" technique to see if it is possible to give me a hand since I am a little lost, Thanks a lot :unsure:
 

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

Thread starter Similar threads Forum Replies Date
MerryDay VIP News Questions 4
P Where to start VIP, any manual or introductory video? Questions 7
A VIP Pricing Questions 1
S Questions About "Crosses Above" Questions 6
M VolatilitySwitch Questions Questions 9

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
376 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