//@version=6 // SandTiger // Sept. 2024, Erek A.D.. // SandTiger is designed to be used with MAGENTA - a framework for counting Forex and other markets. // SandTiger is an auto-counting tool. Adjustments (such as skipping events) can be made on the fly and these are 'front-loaded' into the count. // Always adjust left to right and remember that values to the left of an adjustment will be offset and therefore no longer accurate (due to the front-loading). //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // This indicator contains code that was originally a mod of a 'Williams Fractals' indicator and was adapted by Erek A.D. in Nov. 2017 // 'Event Locator' was rewritten from the ground up by 'Brobear' in Sept./Oct. 2018. It was modified again in 2022. // The first version of SandTiger was conceived/planned/authored by Erek A.D. and coded by @SimpleCryptoLife and Erek A.D. beginning in August 2022. // The current version was written and developed July 3, 2023 and has been refined and upgraded by Erek A.D. through October 2024... //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- indicator("SandTiger R", overlay=true, max_labels_count=500) string nl = "\n" // STARTING POINTS startBarTime = input.time(title="Starting Candle", defval=timestamp("01 Sept 2022 13:30 +0000"), confirm=true, group="Starting Points") countAdjust = input.int(title="Start Offset:", defval= -1, options=[2, 1, 0, -1, -2, -3], confirm=true, tooltip="Adjust count so that 1st event is marked as '1'", group="Starting Points") cStart = input.int(title="custom start: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80], confirm=true, tooltip="Use this as a custom starting point", group="Starting Points") hideLbl = input.bool(title="Hide Label", defval=false, confirm=true, tooltip="Hide/Show Info Label", group="Starting Points") //INITIAL VALUES GROUP pair = input.string(title="Pair: ", defval="EURUSD", options=["EURUSD", "NZDUSD", "AUDUSD", "GBPUSD", "USDJPY", "USDCAD", "OTHER"], confirm=true, tooltip="The initial signal of a sequence is typically a DMC or base terminal in pushpull 1.", group="Initial Values") tf = input.string(title="T.Frame: ", defval="1h", options=["15m", "30m", "1h", "2h", "Other"], confirm=true, tooltip="The initial signal of a sequence is typically a DMC or base terminal in pushpull 1.", group="Initial Values") mdm = input.int(title="Signal @ ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28], confirm=true, tooltip="The initial signal of a sequence is typically a DMC or base terminal in pushpull 1.", group="Initial Values") sigT = input.string(title="Sig Type: ", defval="Base Term", options=["Base Term", "DMC", "Cross Count", "Volatility", "Grouping", "Double Hit", "Gap", "Cadence", "Combo", "Adapter", "Ghost Count"], confirm=true, tooltip="The initial signal of a sequence is typically a Double-Marked-Candle (DMC) or base terminal in pushpull 1, but a variety of signal types exist. This dropdown lists all known types. Sequences can redefine intitial values after an adapter appears. So within pushpull 1 or following an adapter is where you'll want to pay special attention to signals.", group="Initial Values") hp = input.int(title="High Prime: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28], confirm=true, tooltip="The high prime can be found at the initial base terminal if the sequence is a structure.", group="Initial Values") halfp = input.int(title="Half Prime: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28], confirm=true, tooltip="The half prime is the high or low prime divided by 2 - whichever result is even.", group="Initial Values") var int lp = hp - 2 // define low prime // TAG GROUP //auto-tags var int cTag = 0 var int cTag2 = 0 var int cTag3 = 0 var int cTag4 = 0 var int cTag5 = 0 var int cTag6 = 0 var int cTag7 = 0 var int cTag8 = 0 //user-defined tags cTag9 = input.int(title="Tag9: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120], confirm=true, tooltip="Use this to tag a value", group="Tags") cTag10 = input.int(title="Tag10: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120], confirm=true, tooltip="Use this to tag a value", group="Tags") cTag11 = input.int(title="Tag11: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120], confirm=true, tooltip="Use this to tag a value", group="Tags") cTag12 = input.int(title="Tag12: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120], confirm=true, tooltip="Use this to tag a value", group="Tags") cTag13 = input.int(title="Tag13: ", defval=0, options=[0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120], confirm=true, tooltip="Use this to tag a value", group="Tags") // ADJUSTMENTS GROUP peek = input.bool(title="Peek Inside FCT", defval=false, confirm=true, tooltip="Temporarily skip a single event (Used in 'curved trends' to skip a 'directional shift' prior to a calc value being hit)", group="Adjustments") skipFCTs = input.int(title="Skip FCT/Adapter", defval= 0, options=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9], confirm=true, tooltip="Skip FCT's", group="Adjustments") addPairs = input.int(title="Add Events: ", defval=0, options=[0, 2, 4, 6, 8, 10], confirm=true, tooltip="Add events that SandTiger has skipped.", group="Adjustments") //------------------------------------ Initialize Start ------------------------------------ var int startBarIndex = na // Initialize values for start bar if time == startBarTime startBarIndex := bar_index // Get the bar index of the start bar //----------------------------------------------------------------------------------------- //calculate MDM tags --------------------- var int oldMdm = mdm var int newMdm = 0 if mdm != 0 and mdm % 2 == 0 // ensure it's even // First tag is always the initial value cTag := oldMdm // e.g., 20 // Calculate second value using original formula newMdm := (oldMdm * 2) + 2 cTag2 := newMdm // for 20 this would be 42 // For subsequent values, add proportional amounts newMdm := newMdm + (oldMdm + 4) // base increment is initial value + 4 cTag3 := newMdm newMdm := newMdm + (oldMdm + 6) // increase by 2 each time cTag4 := newMdm newMdm := newMdm + (oldMdm + 8) cTag5 := newMdm newMdm := newMdm + (oldMdm + 10) cTag6 := newMdm newMdm := newMdm + (oldMdm + 12) cTag7 := newMdm newMdm := newMdm + (oldMdm + 14) cTag8 := newMdm //----------------------------------------- var int skipEvents = 0 var int addEvents = 0 if cStart != 0 skipEvents := cStart // user is starting count from A, push cStart based on A //---------------------------------------------- initialize and calculate 'count' ------------------------------------------ if peek == true skipEvents := skipEvents + 1 // skip an event while peek = true... used to look inside an FCT if skipFCTs != 0 skipEvents := skipEvents + (skipFCTs * 2) // skip FCT terminals or adapter terminals if addPairs != 0 addEvents := addEvents + addPairs // add events that ST has skipped var int countSmooth = 0 var int count = 0 + (countSmooth + countAdjust + addEvents) - skipEvents //calculate Total Events SKipped... TESK = skipEvents - addEvents //------------------------------------------ Event types ------------------------------------------------------------------ // these CONST INT's track actual fractals. If no fractal occurs the bar gets EVENT_NONE. // all results are stored in the 'ev' var. 'evConsec' uses the 'ev' var to detect like events on neighboring fractals. EVENT_NONE = 0 // No event on this candle/bar EVENT_UP = 1 // Up fractal EVENT_DOWN = 2 // Down fractal EVENT_DMC = 3 // DMC (Double Marked Candle) //-------------------------------------------------------- Define Events -------------------------------------------------------------------- // An "Up Fratcal" is where a high is flanked by lower highs. // Create a boolean series for the presence of each Up Fractal. // PseudoCode: upFractal = high of two bars ago 'is less than' high of last bar 'and' high of current bar 'is less than' high of last bar upFractal = high[2] < high[1] and high < high[1] // A "Down Fractal" is where a low is flanked by higher lows // Create a boolean series for the presence of each Down Fractal. // PseudoCode: downFractal = low of two bars ago 'is less than' low of last bar 'and' low of current bar 'is less than' low of last bar downFractal = low[2] > low[1] and low > low[1] // A "Double Fractal" is where we have both of the above conditions on the same candle, otherwise known as a "DMC" doubleFractal = upFractal and downFractal // DMC //-------------------------------------------------------- Events collected in one series ----------------------------------------------------------------------------------- // In the line below ':' separates each part of the statement. // If nothing applies, then 'ev' gets assigned 'EVENT_NONE' ('EVENT_NONE' is like the 'else' condition in an if...else construct) ev = upFractal ? EVENT_UP : downFractal ? EVENT_DOWN : doubleFractal ? EVENT_DMC : EVENT_NONE // from here down, use these constants to refer to specific event types evConsec = EVENT_NONE // initial default value declared here globally so that local scope references can see it... // -------------------------------------------- Detect consecutive events of the same kind, e.g. 2 consecutive Up fractals, etc ----------------------------------------------- // This code looks at the previous and current event and assigns the appropriate event type... // DMC's are often proceeded or followed by consecutive events. valuewhen_1 = ta.valuewhen(ev != EVENT_NONE, ev, 1) // ta.valuewhen(condition, source, occurence) - used here to ref the previous bars event... evConsec := ev == EVENT_UP and valuewhen_1 == EVENT_UP ? EVENT_UP : // IOW, a consec event occurs when current event is up and previous event is up ? set evConsec to up... ev == EVENT_DOWN and valuewhen_1 == EVENT_DOWN ? EVENT_DOWN : // current event is down and previous event is down ? set ev to down... ev == EVENT_DMC and valuewhen_1 == EVENT_DOWN ? EVENT_UP : // current event is DMC and previous event is DOWN ? set ev to UP... ev == EVENT_DMC and valuewhen_1 == EVENT_UP ? EVENT_DOWN : EVENT_NONE // current event is DMC and previous event is UP ? set ev to DOWN, otherwise set to NONE... //-----------------------EVENT PROCESSING... //--------------------------------------------------- smooth events ----------------------------------------------------------------------------------- // NOTE: 'Smooth events' are consecutive events that contain a smooth event. DMC's are also consecutive events but contain a rough event instead... // PINE considers the standard event (that follows a smooth event) to be THE actual smooth event! Those standard events WILL be processed by the code in this 'smooth event' section... if time > startBarTime if evConsec == EVENT_UP // smooth event will be pointing DOWN! countSmooth +=1 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.gray, textcolor=color.gray, style=label.style_arrowdown, size=size.normal, yloc=yloc.belowbar) // tag auto values... if cTag != 0 if evConsec == EVENT_UP and count + countSmooth == cTag label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag2 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag2 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag3 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag3 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag4 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag4 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag5 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag5 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag6 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag6 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag7 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag7 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag8 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag8 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) // tag user-defined values... if cTag9 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag9 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag10 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag10 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag11 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag11 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag12 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag12 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag13 != 0 if evConsec == EVENT_UP and count + countSmooth == cTag13 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) //------------------------------------- if evConsec == EVENT_DOWN // smooth event will be pointing UP! countSmooth +=1 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.gray, textcolor=color.gray, style=label.style_arrowup, size=size.normal, yloc=yloc.abovebar) // tag custom value... if cTag != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag2 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag2 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag3 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag3 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag4 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag4 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag5 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag5 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag6 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag6 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag7 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag7 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag8 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag8 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) // tag user-defined values... if cTag9 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag9 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag10 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag10 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag11 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag11 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag12 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag12 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag13 != 0 if evConsec == EVENT_DOWN and count + countSmooth == cTag13 label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -2, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) //-------------------------------------------------- standard events --------------------------------------- if time > startBarTime if ev == EVENT_UP count +=1 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.gray, textcolor=color.gray, style=label.style_arrowup, size=size.normal, yloc=yloc.abovebar) // tag custom values... if cTag != 0 if ev == EVENT_UP and count + countSmooth == cTag label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag2 != 0 if ev == EVENT_UP and count + countSmooth == cTag2 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag3 != 0 if ev == EVENT_UP and count + countSmooth == cTag3 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag4 != 0 if ev == EVENT_UP and count + countSmooth == cTag4 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag5 != 0 if ev == EVENT_UP and count + countSmooth == cTag5 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag6 != 0 if ev == EVENT_UP and count + countSmooth == cTag6 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag7 != 0 if ev == EVENT_UP and count + countSmooth == cTag7 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag8 != 0 if ev == EVENT_UP and count + countSmooth == cTag8 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) // tag user-defined values... if cTag9 != 0 if ev == EVENT_UP and count + countSmooth == cTag9 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag10 != 0 if ev == EVENT_UP and count + countSmooth == cTag10 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag11 != 0 if ev == EVENT_UP and count + countSmooth == cTag11 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag12 != 0 if ev == EVENT_UP and count + countSmooth == cTag12 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag13 != 0 if ev == EVENT_UP and count + countSmooth == cTag13 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) //-------------------------------------- if ev == EVENT_DOWN count +=1 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.gray, textcolor=color.gray, style=label.style_arrowdown, size=size.normal, yloc=yloc.belowbar) // tag custom values... if cTag != 0 if ev == EVENT_DOWN and count + countSmooth == cTag label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag2 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag2 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag3 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag3 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag4 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag4 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag5 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag5 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag6 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag6 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag7 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag7 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag8 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag8 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) // tag user-defined values... if cTag9 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag9 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag10 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag10 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag11 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag11 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag12 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag12 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) if cTag13 != 0 if ev == EVENT_DOWN and count + countSmooth == cTag13 label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.belowbar) label.new(x=bar_index -1, y=na, text=str.tostring(count + countSmooth), color=color.red, textcolor=color.red, style=label.style_arrowdown, size=size.huge, yloc=yloc.abovebar) //------------------------------------------- if ev == EVENT_DMC // +2 below for both tips of the DMC count +=2 label.new(x=bar_index, y=na, text=str.tostring(count + countSmooth * 2), color=color.red, textcolor=color.gray, style=label.style_arrowdown, size=size.normal, yloc=yloc.belowbar) // we don't need the red line overwrite code for DMC's - red lines will work on DMC's w/o it and it (the overwrite code when used here) creates a weird anomoly that generates inaccurate counts //=================================================================== END PLOT COUNTS ==================================================================== int x = 0 if peek == true x := 1 // Display info panel ---------------------------- if time == startBarTime and hideLbl == false label.new(text= "SandTiger Red" + nl + "----------" + nl + "INITIAL VALUES" + nl + "Pair: " + str.tostring(pair) + nl + "T.Frame: " + str.tostring(tf) + nl + "Sig @ " + str.tostring(mdm) + nl + "Sig.T: " + str.tostring(sigT) + nl + "-----" + nl + "PRIME'S" + nl + "High Prime: " + str.tostring(hp) + nl + "Low Prime: " + str.tostring(lp) + nl + "Half Prime: " + str.tostring(halfp) + nl + "-----" + nl + "PRIME BASED EPs" + nl + "All Added: " + str.tostring(hp + lp + halfp) + ", " + str.tostring((hp + lp + halfp) * 2) + ", " + str.tostring((hp + lp + halfp) * 3) + nl + "Sig+High+Low: " + str.tostring(mdm + hp + lp) + nl + "High+Low: " + str.tostring(hp + lp) + ", " + str.tostring((hp + lp) * 2) + ", " + str.tostring((hp + lp) * 3) + nl + "High*n: " + str.tostring(hp * 2) + ", " + str.tostring(hp * 3) + ", " + str.tostring(hp * 4) + ", " + str.tostring(hp * 5) + ", " + str.tostring(hp * 6) + ", " + str.tostring(hp * 7) + nl + "High*n+Half: " + str.tostring((hp * 2) + halfp) + ", " + str.tostring((hp * 3) + halfp) + ", " + str.tostring((hp * 4) + halfp) + ", " + str.tostring((hp * 5) + halfp) + ", " + str.tostring((hp * 6) + halfp) + ", " + str.tostring((hp * 7) + halfp) + nl + "-----" + nl + "TAGS (Auto/UD)" + nl + "Tag1: " + str.tostring(cTag) + nl + "Tag2: " + str.tostring(cTag2) + nl + "Tag3: " + str.tostring(cTag3) + nl + "Tag4: " + str.tostring(cTag4) + nl + "Tag5: " + str.tostring(cTag5) + nl + "Tag6: " + str.tostring(cTag6) + nl + "Tag7: " + str.tostring(cTag7) + nl + "Tag8: " + str.tostring(cTag8) + nl + nl + "Tag9: " + str.tostring(cTag9) + nl + "Tag10: " + str.tostring(cTag10) + nl + "Tag11: " + str.tostring(cTag11) + nl + "Tag12: " + str.tostring(cTag12) + nl + "Tag13: " + str.tostring(cTag13) + nl + "-----" + nl + "ADJUSTMENTS" + nl + "Skips: " + str.tostring((skipFCTs * 2) + x) + nl + "Adds: " + str.tostring(addPairs) + nl + "Tot.: " + str.tostring((skipFCTs * 2) - addPairs + x) + nl + "-----" + nl + "TrendLab2" + nl + "2.8.25 PD" // Process Diagram + nl + "4.2.25 PM", // Parallel Mains x=startBarIndex, y=na, textcolor=color.black, style=label.style_label_right, size = size.normal, yloc=yloc.abovebar, color=color.new(color.white, 45)) // 4-1-25 ST Red