Ray Bull/Bear Power Combo For ThinkOrSwim

Tidan

Member
After reading this thread I was interested in combining Ray Bull Power and Ray Bear Power as I trade both long and short near equally.
https://usethinkscript.com/threads/renko-bar-based-trading-system-for-thinkorswim.3252/

Perhaps someone may find this useful.
Code:
declare lower;

# Ray component

input bullLength = 13;
input bearLength = 13;
plot zeroline = 0;

def Bull = high - ExpAverage(close, bullLength);
def Bear = low - ExpAverage(close, bearLength);

def bullOver = if bull > zeroline then bull else double.nan;
def bullUnder = if bull < zeroline then bull else double.nan;
def bearOver = if bear > zeroline then bear else double.nan;
def bearUnder = if bear < zeroline then bear else double.nan;

plot minorBullPower = if bearOver then bearOver else double.nan;
plot BullPower = if bullOver then bullOver else double.nan;
plot minorBearPower = if bullUnder then bullUnder else double.nan;
plot BearPower = if bearUnder then bearUnder else double.nan;

minorBullPower.assignValueColor(Color.dark_green);
minorBullPower.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
minorBullPower.SetLineWeight(3);
minorBullPower.hideTitle();

minorBearPower.assignValueColor(color.dark_red);
minorBearPower.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
minorBearPower.SetLineWeight(3);
minorBearPower.hideTitle();

BullPower.assignValueColor(Color.green);
BullPower.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
BullPower.SetLineWeight(3);

BearPower.assignValueColor(Color.red);
BearPower.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
BearPower.SetLineWeight(3);

ZeroLine.SetDefaultColor(GetColor(3));
 
Last edited by a moderator:
Here is another version of Bull and Bear Strength from TradingView converted to thinkscript.
Original Link: https://www.tradingview.com/script/ZFfiy0mr/

Upper Indicator here: https://usethinkscript.com/threads/break-keltner-bands-bkb-for-thinkorswim.11220/


script here
Code:
# Bull and Bear Strength from TradingView converted by mbarcala
#Original link: https://www.tradingview.com/script/ZFfiy0mr/

declare lower;

input length = 20;
input bullper = 13;
input bearper = 13;

def Mdb = ExpAverage(close, length);
def bull = high - ExpAverage(close, bullper);
def bear = low - ExpAverage(close, bearper);

plot upLine = close - Mdb;
upLine.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
upLine.AssignValueColor(if upLine > 2.0 then CreateColor(0,102,204) else Color.CURRENT);
upLine.HideBubble();

plot downLine = -(bull + bear);
downLine.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
downLine.AssignValueColor(if downLine > 2.0 then Color.RED else Color.CURRENT);
downLine.HideBubble();

plot centerLine = 0;
centerLine.SetDefaultColor(Color.GRAY);
 
Last edited:
Thanks for this indicator. How do we decide about Buy or Sell? can you provide the code for scanner?
try this for Bull movement
Code:
def length = 20;
def bullper = 13;
def bearper = 13;

def Mdb = ExpAverage(close, length);
def bull = high - ExpAverage(close, bullper);
def bear = low - ExpAverage(close, bearper);

def upLine = close - Mdb;
def downLine = -(bull + bear);

plot crUp = upLine crosses above downLine;

#plot crDn = upLine crosses below downLine;

for bear scan comment (#) plot crUp and uncomment crDn and create another scan
 

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
513 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