Line chart that includes wick

SupaDupa

New member
Hi, did not see this in search can someone direct me or create line chart that includes the wick, TOS line chart only charts the body unless im mistaken. Thanks in advance
 

Attachments

  • TOS line chart no wick included.png
    TOS line chart no wick included.png
    173 KB · Views: 164
  • TOS line chart no wick included 2.png
    TOS line chart no wick included 2.png
    190.3 KB · Views: 166
Hi, did not see this in search can someone direct me or create line chart that includes the wick, TOS line chart only charts the body unless im mistaken. Thanks in advance

generally a line chart connects the closes from each time segment ( each candle)

'include the wick' doesn't tell us what you are thinking about.
study candlesticks , then come back and ask a different question, one that uses open, high, low, and/or close
https://www.investopedia.com/trading/candlestick-charting-what-is-it/
 

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

Okay line chart that includes the high and the low
generally a line chart connects the closes from each time segment ( each candle)

'include the wick' doesn't tell us what you are thinking about.
study candlesticks , then come back and ask a different question, one that uses open, high, low, and/or close
https://www.investopedia.com/trading/candlestick-charting-what-is-it/
Thanks yes I need to clarify: line chart that plots the high of a bull candle and the low of a bear candle
 

Attachments

  • Line chart.jpg
    Line chart.jpg
    121.2 KB · Views: 72
Plots it how?

There's lots of ways to do it. It can be a wick that spikes out of the main line, or a separate line that flips above and below the main line, it can change colors, be a cloud, all sorts of things. Can you describe what you're envisioning? Otherwise the code is incredibly simple.
 
Plots it how?

There's lots of ways to do it. It can be a wick that spikes out of the main line, or a separate line that flips above and below the main line, it can change colors, be a cloud, all sorts of things. Can you describe what you're envisioning? Otherwise the code is incredibly simple.
I'm thinking of a simple line chart that includes the wicks would like it to be a stand alone not including the candles, for instance the line would start at the low of the first candle to the high of the next candle and so on. Thanks for any help you can provide
 
Use Equivolume candles to tell you more what is happening - (to narrow the channel to just the wicks use input 3 for hi- lo length

HOW TO READ THEM
WIDE GREEN CANDLE - Strong buying + high participation

Buyers are aggressive AND size is behind it
Interpretation:

  • continuation likely
  • institutions involved
WIDE RED CANDLE- Strong selling + high participation

Real distribution / liquidation
Interpretation:
  • downside pressure is real
  • not just noise
NARROW CANDLES (ANY COLOR)
Low participation -

Nobody cares → low conviction
Interpretation:
  • chop / drift
  • setups here are weak
Code:
# ANTWERKS - USE EQUIVOLUME CANDLES

declare upper;

# =========================
# INPUTS
# =========================
input volLength = 20;
input rangeLength = 20;

# =========================
# BASE CALCULATIONS
# =========================
def avgVol = Average(volume, volLength);
def highVol = volume > avgVol;
def lowVol = volume < avgVol;

def upBar = close > open;
def downBar = close < open;

def spread = high - low;
def avgSpread = Average(spread, rangeLength);

def bigMove = spread > avgSpread;
def smallMove = spread < avgSpread;

# =========================
# 🔥 PARTICIPATION LABEL
# =========================
AddLabel(yes,
    if highVol then "HIGH PARTICIPATION"
    else "LOW PARTICIPATION",
   
    if highVol then Color.CYAN
    else Color.GRAY
);

# =========================
# 🔥 BUYING / SELLING PRESSURE
# =========================
AddLabel(yes,
    if upBar and highVol then "STRONG BUYING"
    else if downBar and highVol then "STRONG SELLING"
    else if upBar then "WEAK BUYING"
    else if downBar then "WEAK SELLING"
    else "NEUTRAL",
   
    if upBar and highVol then Color.GREEN
    else if downBar and highVol then Color.RED
    else Color.GRAY
);

# =========================
# 🔥 MOVE QUALITY (VERY IMPORTANT)
# =========================
AddLabel(yes,
    if highVol and bigMove then "EXPANSION (REAL MOVE)"
    else if highVol and smallMove then "ABSORPTION (NO PROGRESS)"
    else if lowVol and smallMove then "CHOP / LOW INTEREST"
    else "NORMAL",
   
    if highVol and bigMove then Color.GREEN
    else if highVol and smallMove then Color.YELLOW
    else Color.GRAY
);

# =========================
# 🔥 TRAP DETECTION (KEY EDGE)
# =========================
def buyerTrap =
    upBar and highVol and close < close[1];

def sellerTrap =
    downBar and highVol and close > close[1];

AddLabel(yes,
    if buyerTrap then "BUYERS TRAPPED (REVERSAL RISK)"
    else if sellerTrap then "SELLERS TRAPPED (REVERSAL RISK)"
    else "NO TRAP",
   
    if buyerTrap then Color.YELLOW
    else if sellerTrap then Color.ORANGE
    else Color.GRAY
);

# =========================
# 🔥 FOLLOW-THROUGH (CONFIRMATION)
# =========================
def followThroughUp =
    upBar and highVol and close > close[1];

def followThroughDown =
    downBar and highVol and close < close[1];

AddLabel(yes,
    if followThroughUp then "CONFIRMED BUYING (CONTINUATION)"
    else if followThroughDown then "CONFIRMED SELLING (CONTINUATION)"
    else "NO CONFIRMATION",
   
    if followThroughUp then Color.GREEN
    else if followThroughDown then Color.RED
    else Color.GRAY
);

# =========================
# 🔥 RESTORE HI / LO LINES
# =========================
input hiLoLength = 10;

def hiLine = Highest(high, hiLoLength);
def loLine = Lowest(low, hiLoLength);

plot HiPlot = hiLine;
plot LoPlot = loLine;

HiPlot.SetDefaultColor(Color.RED);
LoPlot.SetDefaultColor(Color.GREEN);

HiPlot.SetLineWeight(2);
LoPlot.SetLineWeight(2);

HiPlot.SetStyle(Curve.FIRM);
LoPlot.SetStyle(Curve.FIRM);

plot MidLine = (hiLine + loLine) / 2;
MidLine.SetDefaultColor(Color.YELLOW);
MidLine.SetStyle(Curve.SHORT_DASH);

 
Last edited:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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