OSCAR Oscillator For ThinkOrSwim

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

Maybe something like this... didn't do all the smoothing options, but you can add them as you need fairly easily:
Code:
declare lower;

input type_one = {sma, ema, default wma, hma};

input type_two = {sma, ema, default wma, hma};

input source = close;
input len = 8;
input slow_len = 16;
input crossSignalSensitivity = 2.5;

script osc {
    input source = close;
    input len = 10;

    def A = highest(source, len);
    def B = lowest(source, len);
    plot Oscar_Rough = ((source - B) / (A - B)) * 100;
    def Oscar1 = (Oscar_Rough[1] / 3) * 2;
    def OscarThird = Oscar_Rough / 3;
    plot Oscar = Oscar1 + OscarThird;
};

def t_fast = osc(source, len).Oscar_Rough;

plot oscar;
switch (type_one) {
    case sma:
        oscar = simpleMovingAvg(t_fast, len);
    case ema:
        oscar = expAverage(t_fast, len);
    case wma:
        oscar = WildersAverage(t_fast, len);
    case hma:
        oscar = hullMovingAvg(t_fast, len);
}
oscar.setDefaultColor(color.dark_green);

def t_signal = osc(source, len).Oscar;
plot signal;
switch (type_two) {
    case sma:
        signal = simpleMovingAvg(t_signal, len);
    case ema:
        signal = expAverage(t_signal, len);
    case wma:
        signal = WildersAverage(t_signal, len);
    case hma:
        signal = hullMovingAvg(t_signal, len);
}
signal.SetDefaultColor(color.dark_red);
def crossSensitivity = max(oscar, signal) - min(oscar, signal);

plot buy = if oscar crosses above signal AND crossSensitivity > crossSignalSensitivity then signal else double.nan;
buy.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
buy.setDefaultColor(color.dark_green);

plot sell = if oscar crosses below signal AND crossSensitivity > crossSignalSensitivity then signal else double.nan;
sell.SetPaintingStrategy(PaintingStrategy.ARROW_DOWN);
sell.setDefaultColor(color.dark_red);

plot lower = 20;
lower.setDefaultColor(color.gray);

plot upper = 80;
upper.SetDefaultColor(color.gray);

Happy Trading,
mashume
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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