Join useThinkScript to post your question to a community of 21,000+ developers and traders.
#This custom column plots the high or low break compared to the previous day's. Green is a high break. Red is a low break. Pink is a hi and low break with the hi break amt shown.
#Title = Broke, Revision 9/25/13
#Revised: 12:03 PM 9/25/2013
def HiBroke = If (close > high[1] ,1,0);
def LoBroke = If (close < low[1] ,1,0);
def BothBroke = If (HiBroke && LoBroke, 1,0);
def HiBrokeAmt = If HiBroke then (close - high[1] ) else double.nan;
def LoBrokeAmt = If LoBroke then (low[1] - close) else double.nan;
Addlabel(1, if HiBroke && !LoBroke then round(HiBrokeAmt,2)
else if !HiBroke && LoBroke then round(LoBrokeAmt,2)
else if HiBroke && LoBroke then round(HiBrokeAmt,2)
else 0, color.yellow);
AssignBackgroundColor(if HiBroke then color.Dark_green
else if LoBroke then color.Light_red
else if HiBroke && LoBroke then color.pink
else color.current);
def HiBroke = If (close > high[1] ,1,0);
def LoBroke = If (close < low[1] ,1,0);
def BothBroke = If (HiBroke && LoBroke, 1,0);
def HiBrokeAmt = If HiBroke then (close - high[1] ) else double.nan;
def LoBrokeAmt = If LoBroke then (low[1] - close) else double.nan;
def inside = if (close < high [1] and close > low [1], 1,0);
def toptobottom = high[1] - low [1];
def insidevalue = close - low[1] ;
def insideper = (round(((insidevalue/toptobottom)*100),1));
Addlabel(1, if HiBroke && !LoBroke then round(HiBrokeAmt,2)
else if !HiBroke && LoBroke then round(LoBrokeAmt,2)
else if HiBroke && LoBroke then round(HiBrokeAmt,2)
else if inside then insideper
else 0, color.YELLOW);
AssignBackgroundColor(if HiBroke then color.Dark_green
else if LoBroke then color.Light_red
else if HiBroke && LoBroke then color.pink
else color.current);
Addlabel(1, if HiBroke && !LoBroke then round(HiBrokeAmt,2) + "%"
else if !HiBroke && LoBroke then round(LoBrokeAmt,2) + "%"
else if HiBroke && LoBroke then round(HiBrokeAmt,2) + "%"
else if inside then insideper + "%"
else 0 + "%", color.YELLOW);
Hello - Does anyone know if it's possible to convert or add onto this code so that when the monthly high or low is broken ONLY on the day of... it is shown on that day? Currently it will show the breakout (above high or low at all times cause it is the month) but it would be better if it only indicated on the actual day of breakout imo. If anyone knows how to do this that would be helpful and appreciated. I added the code below and a pic of the code in TOS.
________________________________________________________________
#This custom column plots the high or low break compared to the previous day's. Green is a high break. Red is a low break. Pink is a hi and low break with the hi break amt shown.
#Title = Broke, Revision 9/25/13
#Revised: 12:03 PM 9/25/2013
def HiBroke = If (close > high[1] ,1,0);
def LoBroke = If (close < low[1] ,1,0);
def BothBroke = If (HiBroke && LoBroke, 1,0);
def HiBrokeAmt = If HiBroke then (close - high[1] ) else double.nan;
def LoBrokeAmt = If LoBroke then (low[1] - close) else double.nan;
Addlabel(1, if HiBroke && !LoBroke then round(HiBrokeAmt,2)
else if !HiBroke && LoBroke then round(LoBrokeAmt,2)
else if HiBroke && LoBroke then round(HiBrokeAmt,2)
else 0, color.yellow);
AssignBackgroundColor(if HiBroke then color.Dark_green
else if LoBroke then color.Light_red
else if HiBroke && LoBroke then color.pink else color.current);
def na = double.nan;
def bn = barnumber();
def mo = getmonth();
def lastmo = getlastmonth();
def islastmo = mo == lastmo;
def momax = if bn == 1 or isnan(close) then na
else if (islastmo and !islastmo[1]) then high
else max(high, momax[1]);
input show_higher_line = yes;
plot z2 = if show_higher_line then momax else na;
z2.SetDefaultColor(Color.magenta);
def ishigher = if bn == 1 or isnan(close) then 0
else if (islastmo and !islastmo[1]) then 0
else if momax > momax[1] then 1
else 0;
plot zhi = if ishigher then low*0.998 else na;
zhi.SetPaintingStrategy(PaintingStrategy.ARROW_UP);
zhi.SetDefaultColor(Color.cyan);
zhi.setlineweight(3);
zhi.hidebubble();
Start a new thread and receive assistance from our community.
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.
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.