This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@version=5 | |
| indicator("Straddle", overlay=false) | |
| // ──────────────────────────────────────────────── | |
| // USER INPUTS (unchanged) | |
| // ──────────────────────────────────────────────── | |
| stock_symbol = input.string("NIFTY", "Stock Symbol (NSE)") | |
| strike_price = input.string("22300", "Strike Price") | |
| exp_day = input.string("24", "Expiry Day (DD)") | |
| exp_month = input.string("03", "Expiry Month (MM)") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // © SimpleCryptoLife | |
| //@version=5 | |
| indicator(title='Monthly_Only', overlay=true, linktoseries=true, max_labels_count=100, max_lines_count=100, max_bars_back=500) | |
| // ================= NEW TOGGLE INPUTS ================= | |
| bool inputShowHHLLLabels = input.bool(false, title='Show Higher/Lower Highs & Lows (HH, LH, HL, LL)') | |
| bool inputShowBreakLabels = input.bool(false, title='Show Bullish/Bearish Break Labels') | |
| bool inputShowBTDEntries = input.bool(false, title='Show Buy The Dip / Sell The Rally Signals') | |
| bool inputShowBreakLines = input.bool(false, title='Show Break Lines (Close Needed for Break)') | |
| bool inputShowBreakPrice = input.bool(false, title='Show Price Label for Bullish/Bearish Break') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@version=5 | |
| indicator("Patience - PA Scanner", overlay = true, max_labels_count = 100, max_lines_count = 100, max_bars_back = 500) | |
| // ─── INPUTS ──────────────────────────────────────────────────────────────── | |
| inputColorCandles = input.bool(true, title = "Color Candles by Candle Type") | |
| spb = input.bool(true, title = "Detect Pin Bars?") | |
| ssb = input.bool(true, title = "Detect Shaved Bars?") | |
| sib = input.bool(true, title = "Detect Inside Bars?") | |
| sob = input.bool(true, title = "Detect Outside Bars?") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@version=5 | |
| indicator(title='AK', shorttitle='AK', overlay=true, max_labels_count=100, max_lines_count=100, max_bars_back=500) | |
| // ================= INPUTS ================= | |
| bool inputShowHHLLLabels = input.bool(false, title='Show Higher/Lower Highs & Lows (HH, LH, HL, LL)') | |
| bool inputShowBreakLabels = input.bool(false, title='Show Bullish/Bearish Break Labels') | |
| bool inputShowBTDEntries = input.bool(false, title='Show Buy The Dip / Sell The Rally Signals') | |
| bool inputShowBreakLines = input.bool(false, title='Show Break Lines') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //@version=5 | |
| indicator(title='AK', shorttitle='AK', overlay=true, max_labels_count=100, max_lines_count=100, max_bars_back=500) | |
| // Cloud_SCL Market Structure_CM-Price-Action-Bars_Based_Signals-18 Mar 2026, Next Version- Screener-for 10 scripts | |
| // ================= INPUTS ================= | |
| bool inputShowHHLLLabels = input.bool(false, title='Show Higher/Lower Highs & Lows (HH, LH, HL, LL)') | |
| bool inputShowBreakLabels = input.bool(false, title='Show Bullish/Bearish Break Labels') | |
| bool inputShowBTDEntries = input.bool(false, title='Show Buy The Dip / Sell The Rally Signals') | |
| bool inputShowBreakLines = input.bool(false, title='Show Break Lines') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
| // © drshah93 | |
| //@version=6 | |
| indicator(title = 'Financial Frontline-1 [drshah93]', shorttitle = 'Financial Frontline-1 [drshah93]', overlay = false, max_bars_back = 2584, max_labels_count = 500, max_lines_count = 500, max_boxes_count = 500) | |
| // --- Constants --- | |
| SOLID = '⎯⎯⎯' | |
| DASHED = '----' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ | |
| // © drshah93 | |
| //@version=6 | |
| indicator(title = 'Financial Frontline - 2: [drshah93]', shorttitle = 'Financial Frontline-2 [drshah93]', overlay = false, max_bars_back = 2584, max_labels_count = 500, max_lines_count = 500, max_boxes_count = 500) | |
| Main_Group = 'Mark the Checkbox to turn on Indicator' | |
| Show_CPR = input.bool(false, '1. CPR ', group = Main_Group, inline = 'CPR') | |
| CPR_Input = input.string('Daily', '', group = Main_Group, inline = 'CPR', options = ['Daily', 'Tomorrow'], display = display.all - display.status_line) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // © SimpleCryptoLife | |
| //@version=5 | |
| indicator(title='MTF', shorttitle='AKKMTF', overlay=true, linktoseries=true, max_labels_count=100, max_lines_count=100, max_bars_back=500) | |
| // ================= NEW TOGGLE INPUTS ================= | |
| bool inputShowHHLLLabels = input.bool(false, title='Show Higher/Lower Highs & Lows (HH, LH, HL, LL)') | |
| bool inputShowBreakLabels = input.bool(false, title='Show Bullish/Bearish Break Labels') | |
| bool inputShowBTDEntries = input.bool(false, title='Show Buy The Dip / Sell The Rally Signals') | |
| bool inputShowBreakLines = input.bool(false, title='Show Break Lines (Close Needed for Break)') | |
| bool inputShowBreakPrice = input.bool(false, title='Show Price Label for Bullish/Bearish Break') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // © SimpleCryptoLife | |
| //@version=5 | |
| indicator(title='Market Structure', shorttitle='Market Structure TF', overlay=true, linktoseries=true, max_labels_count=100, max_lines_count=100, max_bars_back=500) | |
| // ================= NEW TOGGLE INPUTS ================= | |
| bool inputShowHHLLLabels = input.bool(true, title='Show Higher/Lower Highs & Lows (HH, LH, HL, LL)') | |
| bool inputShowBreakLabels = input.bool(true, title='Show Bullish/Bearish Break Labels') | |
| bool inputShowBTDEntries = input.bool(true, title='Show Buy The Dip / Sell The Rally Signals') | |
| bool inputShowBreakLines = input.bool(true, title='Show Break Lines (Close Needed for Break)') | |
| bool inputShowBreakPrice = input.bool(true, title='Show Price Label for Bullish/Bearish Break') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Thanks to Mayank Sir! | |
| // Visit this site for indicators- https://gist.github.com/akk9635 | |
| // © Simplecrypto, Chris Moody, Justuncle | |
| //@version=5 | |
| indicator(title='Four-in-One', shorttitle='Mighty_Mayank', overlay=true, max_labels_count=100, max_lines_count=100, max_bars_back=500) | |
| // ================= INPUTS ================= | |
| bool inputShowHHLLLabels = input.bool(false, title='Show Higher/Lower Highs & Lows (HH, LH, HL, LL)') | |
| bool inputShowBreakLabels = input.bool(true, title='Show Bullish/Bearish Break Labels') |
NewerOlder