Big Days Indicator for ThinkorSwim

ext99k

Member
This is a new custom indicator the great @Welkin created for me, that counts the number of bars (used on daily aggregation) until the user defined daily change from the previous bar has occurred. I posted it because it's great and I think everyone would appreciate it, and it's always nice to pay it forward so thanks again to @Welkin for the great work.

For example, if 5% daily move is set, starting from the beginning of the period, it counts the number of days until the condition is true, then, it resets and begins to count from zero again until the condition is true again (this could be set in the options).

Green counts the number of days until the daily price change exceeds the benchmark
Red counts the number of days it took for the daily price change to be below the benchmark
Yellow indicates the total number of true events (for both price exceeding and falling below the benchmark)

In the options, the "postest" and "negtest" lines simply show 1 or 0 depending if the event is true. You could hide these by default when using TOS on your PC, and show them on mobile, given mobile app limitations, that's the only way you could get the indicator to work on mobile.

The study is great for identifying clusters of volatility.

You'll likely notice once a condition is triggered for a relatively high daily price change benchmark like 5%, there tends to be a continuation of volatility the very short-run.

aBT6YGN.jpg


Code:
#[email protected]

declare lower;
def NA = Double.NaN;

input showTargetEvents = yes;
input showPosEvents = yes;
input showNegEvents = yes;
input UseAnchor = no;
input anchorDate = 20190805;
input setPercentageMove = 5;
input enableAlert = yes;
input AlertCriteria = {default Both, Positive, Negative};

input AlertType = Alert.BAR;
input AlertSound = Sound.Ding;

def YYYYMMDD = GetYYYYMMDD();
def conf = YYYYMMDD >= anchorDate;
def agg = GetAggregationPeriod();
def dayAggCheck = agg == AggregationPeriod.DAY;
AddLabel(!dayAggCheck, "Set Aggregation to Daily", Color.Yellow);

def prcnt = setPercentageMove/100;
def c = close;
def change = (((c / c[1])-1)*100);

#These test plots are enabled for use in custom scan condition wizard
plot targettest = AbsValue(change) >= setPercentageMove;
plot postest = change > setPercentageMove;
plot negtest = change < -setPercentageMove;
targettest.Hide();
postest.Hide();
negtest.Hide();

def Criteria;
switch(AlertCriteria){
case Both:
Criteria = targettest;
case Positive:
Criteria = postest;
case Negative:
Criteria = negtest;
}

def poschange = c[1] + (c[1] * prcnt);
def negchange = c[1] - (c[1] * prcnt);
def targetcount = if UseAnchor and conf and targettest then targetcount[1] + 1  else if !UseAnchor and targettest then targetcount[1] + 1 else targetcount[1];
def poscount = if UseAnchor and conf and postest then poscount[1] + 1  else if !UseAnchor and postest then poscount[1] + 1 else poscount[1];
def negcount = if UseAnchor and conf and negtest then negcount[1] + 1  else if !UseAnchor and negtest then negcount[1] + 1 else negcount[1];
def prevtargetval = if targetcount == 1 then targetcount[1] else NA;
def prevposval = if poscount ==1 then poscount[1] else NA;
def prevnegval = if negcount ==1 then negcount[1] else NA;
def sincelasttarget = if UseAnchor and conf and targettest[1] and targettest then 1 else if UseAnchor and conf and targettest[1] and !targettest then 2 else if UseAnchor and conf and !targettest then sincelasttarget[1] + 1 else if !UseAnchor and targettest[1] and targettest then 1 else if !UseAnchor and targettest[1] and !targettest then 2 else if !UseAnchor and !targettest then sincelasttarget[1] + 1 else sincelasttarget[1];
def sincelastpos = if UseAnchor and conf and postest[1] and postest then 1 else if UseAnchor and conf and postest[1] and !postest then 2 else if UseAnchor and conf and !postest then sincelastpos[1] + 1 else if !UseAnchor and postest[1] and postest then 1 else if !UseAnchor and postest[1] and !postest then 2 else if !UseAnchor and !postest then sincelastpos[1] + 1 else sincelastpos[1];
def sincelastneg = if UseAnchor and conf and negtest[1] and negtest then 1 else if UseAnchor and conf and negtest[1] and !negtest then 2 else if UseAnchor and conf and !negtest then sincelastneg[1] + 1 else if !UseAnchor and negtest[1] and negtest then 1 else if !UseAnchor and negtest[1] and !negtest then 2 else if !UseAnchor and !negtest then sincelastneg[1] + 1 else sincelastneg[1];
def targetvalstore = if targettest then sincelasttarget else NA;
def posvalstore = if postest then sincelastpos else NA;
def negvalstore = if negtest then sincelastneg else NA;
def sumtarget = if UseAnchor and conf and targettest then sumtarget[1] + sincelasttarget else if !UseAnchor and targettest then sumtarget[1] + sincelasttarget else sumtarget[1];
def sumpos = if UseAnchor and conf and postest then sumpos[1] + sincelastpos else if !UseAnchor and postest then sumpos[1] + sincelastpos else sumpos[1];
def sumneg = if UseAnchor and conf and negtest then sumneg[1] + sincelastneg else if !UseAnchor and negtest then sumneg[1] + sincelastneg else sumneg[1];

#These avgs are set as plots for use in custom scan condition wizard
plot targetavg = sumtarget/targetcount;
plot posavg = sumpos / poscount;
plot negavg = sumneg / negcount;
targetavg.Hide();
targetavg.HideTitle();
posavg.Hide();
posavg.HideTitle();
negavg.Hide();
negavg.HideTitle();

#PLOTS
plot posline = setPercentageMove;
plot negline = -setPercentageMove;
plot targetChange = if showTargetEvents and targettest then 0 else NA;
plot pos = if showPosEvents and change > 0 then change else NA;
plot neg = if showNegEvents and change < 0 then change else NA;

#CHART BUBBLES
AddChartBubble(showTargetEvents and targettest, targetChange, sincelasttarget, Color.YELLOW, yes);
AddChartBubble(showPosEvents and postest, posline, sincelastpos, Color.GREEN, yes);
AddChartBubble(showNegEvents and negtest, negline, sincelastneg, Color.RED, no);

#LABELS
AddLabel(1,"Target +/- "+SetPercentageMove+"%", Color.WHITE);
AddLabel(1," ", Color.BLACK);
AddLabel(1,"Change "+Round(change,2)+"%",if postest then Color.GREEN else if negtest then Color.RED else Color.GRAY);
AddLabel(1,"Prev "+Round(change[1],2)+"%",if postest then Color.GREEN else if negtest then Color.RED else Color.GRAY);
AddLabel(1," ", Color.BLACK);
AddLabel(showTargetEvents,"TotalTargetEvents | "+ targetcount, Color.YELLOW);
AddLabel(showPosEvents,"TotalPosEvents | "+ poscount, Color.GREEN);
AddLabel(showNegEvents, "TotalNegEvents | "+ negcount, Color.RED);
AddLabel(1," ", Color.BLACK);
AddLabel(showTargetEvents, "Days Since Last : "+ sincelasttarget+" | Avg : "+ Round(targetavg,0) +" | High : " + HighestAll(targetvalstore)+ " | Low : "+ LowestAll(targetvalstore) , Color.YELLOW);
AddLabel(showPosEvents, "Days Since Last : "+ sincelastpos+" | Avg : "+ Round(posavg,0) + " | High : " + HighestAll(posvalstore)+ " | Low : "+ LowestAll(posvalstore) , Color.GREEN);
AddLabel(showNegEvents, "Days Since Last : "+ sincelastneg+" | Avg : "+ Round(negavg,0) + " | High : " + HighestAll(negvalstore)+ " | Low : "+ LowestAll(negvalstore) , Color.RED);

#ALERT
Alert(enableAlert and Criteria,"% Change Criteria Met", AlertType, AlertSound);

#FORMAT
targettest.SetDefaultColor(Color.YELLOW);
postest.SetDefaultColor(Color.GREEN);
negtest.SetDefaultColor(Color.RED);
pos.AssignValueColor(if !postest and change > 0 then Color.DARK_GREEN else if postest then Color.GREEN else Color.GRAY);
neg.AssignValueColor(if !negtest and change < 0 then Color.DARK_RED else if negtest then Color.RED else Color.GRAY);
pos.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
neg.SetPaintingStrategy(PaintingStrategy.SQUARED_HISTOGRAM);
pos.SetHiding(!showPosEvents);
neg.SetHiding(!showNegEvents);
posline.SetDefaultColor(Color.DARK_GRAY);
negline.SetDefaultColor(Color.DARK_GRAY);
targetChange.SetHiding(!showTargetEvents);
targetChange.SetDefaultColor(Color.YELLOW);
targetChange.SetPaintingStrategy(PaintingStrategy.POINTS);
 
Last edited:

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

What is the possibility of applying this with a Schaff-Trend indicator on a shorter time frame. I'd believe this indicator anticipates trends, and with the combination of this and said indicator, would provide an even better leading entry for a trend, (only halted with a change in buyer (seller) sentiment and volume.) I've noticed this preceeded the Shaff-Trend Cycle by one minute on the minute time frame, which could predict better entry, and a better follow through in the cycle (buying & shorting) of leading indicators.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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