Bull Call Spread
Live Bull Call Spread Setup for Hesai Group American Depositary Share, each ADS represents one Class B ordinary share (HSAI)
What is a Bull Call Spread?
A Bull Call Spread (Vertical Call Spread) involves buying an at-the-money call and selling an out-of-the-money call at a higher strike.
When to Use It
Use when you are moderately bullish on a stock and want to reduce the cost of a long call.
Advantages
Disadvantages
Pro Tip
Place the short strike at a major institutional resistance level (Call Wall).
Never miss a prime HSAI setup
Join 15,000+ traders getting real-time Bull Call Spread signals and institutional gamma wall alerts.
Get Free AlertsTradingView Pine Script
Visualize the Bull Call Spread levels directly on your TradingView chart with this custom indicator snippet.
//@version=5
indicator("Bull Call Spread Visualizer", overlay=true)
// Inputs
long_call = input.float(100.0, "Long Call (Buy)")
short_call = input.float(110.0, "Short Call (Sell)")
// Drawing
p1 = plot(long_call, "Long Strike", color.green, 2)
p2 = plot(short_call, "Short Strike", color.red, 2)
// Logic
fill(p1, p2, color.new(color.green, 80), "Profit Zone")
bgcolor(close > short_call ? color.new(color.green, 90) : na)