Poll: What indicators are you guys using?

New Indicator: Buy the Dip

Check out our Buy the Dip indicator and see how it can help you find profitable swing trading ideas. Scanner, watchlist columns, and add-ons are included.

Download the indicator

Ultimate VWAP
Supertrend Mobius
RSI Derivative Oscillator
TMO Mobius
Fibs
Woodie Pivots
Volume BuyingvsSelling

And the ones i am searching for,

RVOL for premarket
Volume Forecast
Volume Profile with colored red/green for buying & selling
 
Zeek - can you share link of volume buying vs selling, I have not been able to find it on this site

I also can`t find it here on the site but here`s the code for the script,


Code:
#HINT: This study color codes volume by amount of volume on up-tick versus amount of volume on down-tick


declare lower;


def O = open;

def H = high;

def C = close;

def L = low;

def V = volume;

def Buying = V*(C-L)/(H-L);

def Selling = V*(H-C)/(H-L);


# Selling Volume

 Plot SV = selling;

 SV.setPaintingStrategy(PaintingStrategy.Histogram);

 SV.SetDefaultColor(Color.Red);

 SV.HideTitle();

 SV.HideBubble();

 SV.SetLineWeight(5);


# Buying Volume

# Plot BV = Buying;

# Note that Selling + Buying Volume = Volume.

 Plot BV =  volume;

 BV.setPaintingStrategy(PaintingStrategy.Histogram);

 BV.SetDefaultColor(Color.Dark_Green);

 BV.HideTitle();

 BV.HideBubble();

 BV.SetLineWeight(5);
 
@zeek Yes HorseRider made an excellent colored volume lower like this. I was looking for one that extands sideways along the screen and gives you different prices Like the default volume profile>???
 
If you're a successful day trader do you use indicators or just price action? If you use indicators, what do you do when getting conflicting signals?

Do you ignore the indicators and just look at the chart? If so, wouldn't that violate a set of pre-defined rules?
 
IC (Ichimoku Clouds)
9 EMA
50/100/200 MA
OBV
MACD
ST (SuperTrend)
CCI
RSI
MFI

Probably some more, but those are the ones I use most often...and not all at the same time lol
 

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
491 Online
Create Post

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