Community Trading Analysis & Chart Ideas
Explore Market Insights · Technical Analysis · Trading Ideas
Discover trading ideas from the GoCharting community
Neutral6AM Strategy
// GOLD 6AM IST Strategy — LipiScript for GoCharting// =====================================================// Bias : 6:00–6:15 AM IST candle direction// Entry : 5-min breakout of bias HIGH/LOW → next candle open// SL : Opposite end of bias candle// TP : 1:3 Risk Reward// Max : 1 trade per dayindicator("GOLD 6AM IST Strategy", overlay=true)// ─── INPUT ───────────────────────────────────────────rr = input(3.0, "Risk:Reward Ratio")// ─── IST TIME ────────────────────────────────────────// GoCharting me time milliseconds me hota hai// IST = UTC + 5:30 = UTC + 330 minutesist_offset = 330 * 60 * 1000ist_time = time + ist_offsetist_hour = math.floor((ist_time / (1000 * 60 * 60)) % 24)ist_minute = math.floor((ist_time / (1000 * 60)) % 60)// ─── SESSION CONDITIONS ──────────────────────────────is_weekday = dayofweek != 1 and dayofweek != 7 // 1=Sun, 7=Sat in GoChartingis_600am = ist_hour == 6 and ist_minute == 0is_after_615 = (ist_hour == 6 and ist_minute >= 15) or ist_hour > 6is_new_day = dayofmonth != dayofmonth[1]// ─── BIAS CANDLE FROM 15-MIN CHART ───────────────────bias_high_15 = request.security(syminfo.tickerid, "15", high)bias_low_15 = request.security(syminfo.tickerid, "15", low)bias_open_15 = request.security(syminfo.tickerid, "15", open)bias_close_15 = request.security(syminfo.tickerid, "15", close)// ─── STATE VARIABLES ─────────────────────────────────var float bias_high = navar float bias_low = navar int bias_dir = 0 // 1=Long, -1=Shortvar bool trade_done = falsevar bool breakout_seen = false// ─── RESET EVERY NEW DAY ─────────────────────────────if (is_new_day) { bias_high := na bias_low := na bias_dir := 0 trade_done := false breakout_seen := false}// ─── STEP 1: CAPTURE 6:00 AM IST BIAS CANDLE ─────────if (is_600am and is_weekday and na(bias_high)) { bias_high := bias_high_15 bias_low := bias_low_15 bias_dir := bias_close_15 >= bias_open_15 ? 1 : -1}// ─── STEP 2: BREAKOUT AFTER 6:15 AM IST ──────────────long_breakout = falseshort_breakout = falseif (is_weekday and is_after_615 and not trade_done and not breakout_seen and not na(bias_high)) { // SHORT BIAS: price 6:00-6:15 ka LOW tod de if (bias_dir == -1 and low bias_high) { long_breakout := true breakout_seen := true }}// ─── STEP 3: MARK ENTRY NEXT CANDLE ──────────────────if (short_breakout and not trade_done) { trade_done := true}if (long_breakout and not trade_done) { trade_done := true}// ─── VISUALS ─────────────────────────────────────────// Yellow background = 6:00 to 6:15 AM IST bias windowis_bias_window = is_weekday and ist_hour == 6 and ist_minute < 15bgcolor(is_bias_window ? color.new(color.yellow, 85) : na)// Draw bias HIGH and LOW linesvar line ln_high = navar line ln_low = naif (is_600am and is_weekday and not na(bias_high)) { ln_high := line.new(bar_index, bias_high, bar_index + 100, bias_high, color=color.red, width=2, style=line.style_dashed) ln_low := line.new(bar_index, bias_low, bar_index + 100, bias_low, color=color.green, width=2, style=line.style_dashed) // Bias label lbl_text = bias_dir == 1 ? "LONG BIAS" : "SHORT BIAS" lbl_color = bias_dir == 1 ? color.green : color.red lbl_y = bias_dir == 1 ? bias_low : bias_high lbl_style = bias_dir == 1 ? label.style_label_up : label.style_label_down label.new(bar_index, lbl_y, text=lbl_text, color=lbl_color, textcolor=color.white, style=lbl_style, size=size.normal)}// Entry signal arrowsplotshape(long_breakout, title="Long Entry", location=location.belowbar, style=shape.triangleup, color=color.lime, size=size.normal)plotshape(short_breakout, title="Short Entry", location=location.abovebar, style=shape.triangledown, color=color.red, size=size.normal)// SL and TP lines on entryif (short_breakout) { sl_val = bias_high risk = math.abs(sl_val - close) tp_val = close - risk * rr line.new(bar_index, sl_val, bar_index + 60, sl_val, color=color.red, width=1, style=line.style_solid) line.new(bar_index, tp_val, bar_index + 60, tp_val, color=color.green, width=1, style=line.style_solid)}if (long_breakout) { sl_val = bias_low risk = math.abs(close - sl_val) tp_val = close + risk * rr line.new(bar_index, sl_val, bar_index + 60, sl_val, color=color.red, width=1, style=line.style_solid) line.new(bar_index, tp_val, bar_index + 60, tp_val, color=color.green, width=1, style=line.style_solid)
BearishThe next week 82$
The next week price range buy something short sell target 82$✅
neutralbulish for the day
bulish for the day put spread.. ITM CE volumns were more yesterdad as comapred to ITM PE and also 23500 has more ce unwind than pe unwind in oi also ..expecting 23400-23650 range to play out
BullishBUY BTC
📅BUY AFTER THE RETEST ON THE FVG. THIS IS DUE TO A REACTION FROM THE TREND LINE. WE JUST WAIT FOR IT TO RETEST AND BUY TARGET THE PREVIOUS HIGHER HIGH
NeutralMY FIRST TRADE {A SHORT TERM BEARISH SHIFT AFTER MARKET GAP FILL)
I analysed EURUSD and a setup was clear where there was a previous imbalance to be covered and a pool to the downside was establish with a strong short term bearish trend .Giving me a strong bias to put my entry and it was a winning trade which hit my TP .✅

Market tried to go down but not moving much
itni selling ke baad bhi market jyada move nhi kar paa raha downside me. agar aap nicche dekhoge to market me selling bohot aayi hai pat every time it got absorbed .. when this happend, iska matlab hai ki market koshish to bohot kar raha hai par usey momentum nhi mil raha hai hai. bohot zor lagana pad raha hai ..jyada der ye downside sustainnhi karega
neutralvasu1
no com// SR Break and Retest Indicator // Inspired by ChartPrime Style // Disclaimer: This script is for educational purposes only and does not constitute financial advice. indicator("SR Break and Retest [ChartPrime Style]", shorttitle="SR_Break_Retest_CP", overlay=true) pivotLen = input.int(10, title="Pivot Length") retestBars = input.int(15, title="Retest Lookback") showLabels = input.bool(true, title="Show Labels") showZones = input.bool(true, title="Show SR Zones") src = input.source(close, title="Source") ph = talib.pivothigh(high, pivotLen, pivotLen) pl = talib.pivotlow(low, pivotLen, pivotLen) static float resistance = na static float support = na if not na(ph) { resistance := ph } if not na(pl) { support := pl } bullBreak = close > resistance and close[1] <= resistance bearBreak = close = support static float bullLevel = na static float bearLevel = na if bullBreak { bullLevel := resistance } if bearBreak { bearLevel := support } bullRetest = low bullLevel and talib.barssince(bullBreak) = bearLevel and close < bearLevel and talib.barssince(bearBreak) < retestBars resColor = color.red supColor = color.lime plot(showZones ? resistance : na, title="Resistance", color=resColor, linewidth=2) plot(showZones ? support : na, title="Support", color=supColor, linewidth=2) plotshape( bullBreak, title="Bullish Break", shape=shape.arrowup, color=color.lime, location=location.belowbar, text="BREAK" ) plotshape( bearBreak, title="Bearish Break", shape=shape.arrowdown, color=color.red, location=location.abovebar, text="BREAK" ) plotshape( bullRetest, title="Bullish Retest", shape=shape.circle, color=color.green, location=location.belowbar, text="RETEST" ) plotshape( bearRetest, title="Bearish Retest", shape=shape.circle, color=color.maroon, location=location.abovebar, text="RETEST" ) if showLabels and bullBreak { label.new( bar_index, low, "Bull Break", color=color.lime, textcolor=color.black ) } if showLabels and bearBreak { label.new( bar_index, high, "Bear Break", color=color.red, textcolor=color.white ) } if showLabels and bullRetest { label.new( bar_index, low, "Bull Retest", color=color.green, textcolor=color.white ) } if showLabels and bearRetest { label.new( bar_index, high, "Bear Retest", color=color.maroon, textcolor=color.white ) } barcolor( bullRetest ? color.lime : bearRetest ? color.red : na )ments
BearishBEARISH
FROM THERE YOU CAN GO FOR NIFTY FUTURE 23850 BEACAUSE SELLER LIQUIDITY HAS BEEN TAKEN BY SMART MONEY .FIRST TARGET 23900 SECOND 23850 STOP LOSS FOR TODAY 24020 MARKET IS AT 23980
NeutralCOT 3X OR ABOVE MARKER
COT 3x Circle Marker — Logic & Usage COT 3x Circle Marker is an orderflow-based visual indicator that compares COT High and COT Low values on every candle. The purpose of this indicator is to quickly highlight candles where one side of COT activity is 3 times or more stronger than the other side. This helps traders identify candles where strong orderflow activity is concentrated either near the high of the candle or near the low of the candle. Core Logic For every candle, the indicator reads: COTH = orderflow.cothigh COTL = orderflow.cotlow Then it compares the absolute values of both. Top Circle Condition A red circle above the candle is plotted when: COTH >= COTL × 3 Example: COTH = 30COTL = 10 Since 30 is 3 times 10, a red circle will be printed above the candle. This means COT High activity is strongly dominant compared to COT Low activity. Bottom Circle Condition A green circle below the candle is plotted when: COTL >= COTH × 3 Example: COTH = 100COTL = 500 Since 500 is 5 times 100, a green circle will be printed below the candle. This means COT Low activity is strongly dominant compared to COT High activity. No Circle Condition No circle is printed when the difference between COTH and COTL is less than the selected multiplier. Example: COTH = 50COTL = 40 Here, neither side is 3 times greater than the other, so no signal is plotted. How To Read The Circles Red Circle Above Candle A red circle means: COT High is 3x or more greater than COT Low This shows strong activity near the candle high. It can be useful for identifying: aggressive activity near the high possible supply/rejection zone possible breakout participation possible trap if price fails to continue above that candle Important: A red circle is not automatically a sell signal.Its meaning depends on location and follow-through. Green Circle Below Candle A green circle means: COT Low is 3x or more greater than COT High This shows strong activity near the candle low. It can be useful for identifying: aggressive activity near the low possible demand/absorption zone possible bounce area possible breakdown pressure if price fails to recover Important: A green circle is not automatically a buy signal.Its meaning depends on price location and confirmation. Practical Trading Usage Use this indicator as an orderflow imbalance attention marker, not as a standalone buy/sell indicator. Best confirmation tools: VWAP VPOC volume profile levels previous day high/low support and resistance footprint imbalance delta/CVD candle close confirmation market structure Best Use Cases 1. Reversal Setup If a green circle appears near support, VWAP, VPOC, or previous demand zone, and price starts holding above that candle, it may indicate possible absorption or reversal. Confirmation: Green circle + support zone + next candle holds low + bullish close 2. Rejection Setup If a red circle appears near resistance, VWAP rejection, VPOC rejection, or previous supply zone, and price fails to continue higher, it may indicate possible rejection or trap. Confirmation: Red circle + resistance zone + next candle fails high + bearish close 3. Breakout Continuation If a red circle appears during a strong breakout and price closes above resistance with volume, it may support breakout continuation. Confirmation: Red circle + breakout candle + close above level + follow-through candle 4. Breakdown Continuation If a green circle appears during a breakdown and price closes below support with selling pressure, it may support downside continuation. Confirmation: Green circle + breakdown candle + close below support + follow-through candle Settings Compare Multiplier Default value: 3.0 This means one side must be at least 3 times greater than the other side. Aggressive traders may reduce it to 2.5.Conservative traders may increase it to 4.0 or higher. Circle Offset ATR Multiplier This controls the distance of the circle from the candle high or low. It uses ATR so the circle position adjusts according to market volatility. Circle Size Controls the thickness/visibility of the plotted circle. Important Note This indicator does not predict direction by itself. It only highlights candles where COT High or COT Low is strongly dominant. Always combine it with market structure, VWAP/VPOC location, support-resistance, and next candle confirmation before taking trades. Simple Interpretation Red circle above candle = COTH is 3x or more than COTLGreen circle below candle = COTL is 3x or more than COTHNo circle = no strong 3x COT dominance Best use: Identify high-interest orderflow candles and then wait for confirmation.
Bullishsharing Entry
Many ap ko apna mind share kardiya hhai abi be ager ap nhi jagty to is ka matlab ap sarif showoff karna chatay ho ager such may kosh kar ky dekhana chatay ho to mojy dm ya message karo,1target 100 Pips or second,200Pips ka enjoy yourself.......
Bullishusdchf
bullish .. waiting for accumulation on intraday tf to go long no time to write long epistles . just look for longs
Bearishtarget Achived
many ap logo ko bola tha ky market 4550$ tak down jaya gyi market ny mara target hit kiya ab be ap logo ko koi shak hai ,Ak or baat ma kal ak or long signal do ga entry kar lyna kiu ky wo be target 150Pips ka ho ga...
BearishAlmost target achived
many ap logo ko phely video may bataya thaii ky XAUUSD 4550$ tak geriya ga to wo gera hai jis jis ny mare signal se trade lgyi ho gyi wo to target achived kr ky behta ho ga abi XAUUSD 4567$ par move kr raha hai.ya to many ap ko sarif signal diya tha ager ap mare saat kam krtyy hoty to ma is ka reason be btata so jo log mary saat kaam kr rahy hai ap on se posh sakty hn,ky ma kase trade lagwata hon..

4550$ target
Long target 150Pips ka target hai ap log 100 ya 50 Pips ka be rekh sekty ho ager captial chota hai to ab jab tak maket dubara hamy koi sing nhi dyti os waquat tak ham bullish oder place nhi kar gy so grow your captial...Or han bolna nhi ky target hamara 4550$ ka hai.....
Bullish2 entry start
dosare entry chechk kr ly ma phir bol raha ho mara stop loss 1%or profit %5 ki ratio use karta ho 3 may se ak ya doo or kabi kabi sari win ho jati hai lakin ma ak be win karo to ma overall profit may hota hon yar kiu sekhay bagar loss karee ja rahy ho...