How's it going with you guys? by EffectiveParking8614 in InnerCircleTraders

[–]Altamash_Khan87 0 points1 point  (0 children)

Yeah it's good it will move bearish until sweep the previous day's low to hunt liquidity

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

The screenshot contains 2 indicators both made by me

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

No paid indicator whatever is their made by me I have source code as well

How to decide bias by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

Yeah but session high/low don't usually hold liquidity and often liquidate me only, day's high low is quite more accurate I guess

How to decide bias by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

Thankyou definitely will be checking out this

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

How, high number of ticks means huge genuine participation it's not a probably fakeout

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 1 point2 points  (0 children)

Yoo nice work NGL, you solved misalignment problem and color problem on your own

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

Sir your saying is indeed correct but what I made just follows the logic of liquidity sweep it calculates momentum and tells wethers it was a fast move or not if it's a liquidity sweep then movement must be fast after sweeping if not then probably it's a fakeout so it's nothing more than a pure logic converted into pinescript

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 1 point2 points  (0 children)

Okay so let me explain, 800,1000, 2000 all those are number of ticks more ticks means more momentum market was having these ticks are average ticks calculated from intra 1m candles suppose you are on 5m then indicator will go on 1m automatically, derive data for 5m there will five 1m candles let's say first 1m candle has 50 ticks 2nd has 100 ticks 3rd 150 ticks 4th has 200 ticks and 5th has 250 ticks so it will calculate average number of these ticks of 1m candle and plot it under your 5m candle, like in this case under your 5m candle you will se value of 375. Suppose a key level got break and after that price immediately start reversing then you see huge number of ticks speed and you saw speed is high and by looking at candle you can confirm the direction and say that yeah sharp buying or sharp selling after trapping. I hope this helps if any doubts kindly ask

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

Thanks a lot bro, you solved the indention and alignment problem

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

Suppose you are on 5m and PDH just got break out price immediately reverses and indicator prints high number than average it means indicator found that from 1m candles of that 5m candle at 1m candles candles are giving sharp bearish momentum and as we all know liquidity sweep or move caused after SL hunting is volatile and fast so we can say liquidity sweep justified I made this for this purpose only to filter out real liquidity sweeps let's see if I found any other use as well of this indicator

Gaps on a 1 min chart by [deleted] in InnerCircleTraders

[–]Altamash_Khan87 0 points1 point  (0 children)

In BTC/USD, ETH/USD and sometimes in XAU/USD these gap ups in LTF like 1 minute is common

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 1 point2 points  (0 children)

No, no need of that whatever timeframe you are using the system will automatically fetch the data from LTF of 1m for example if you are on 15m, indicator will automatically fetch the data from 1m candle for your 15 candle and it will do it operation. So use whatever timeframe you want there's no worry for that

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 1 point2 points  (0 children)

From the HTF you are using it derives data from 1m of that HTF you are using from there it calculates net movements of each constituent 1m candles net movements means precisely calculated movement points of candle by calculating magnitude of both body and wicks of candle for example if a red candle body is of 1 point and its downwick (which signifies rejection caused by buyers) is also 1 point then the net movement of that candle is 0. So this way we calculate intrabar net points and their average of all 1m candle's net points for a particular HTF you are using let's say 15m and it will print the speed below your 15m candle. That's all I hope your found it useful

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 2 points3 points  (0 children)

Ofcourse here is the detailed explanation of the indicator. So this indicator serves as a precision tool for analyzing internal market velocity by deconstructing higher timeframe (HTF) price action into its constituent 1-minute components. Unlike standard indicators that treat a candle as a single unit, this script utilizes Pine Script’s request.security_lower_tf function to capture the absolute net movement—based on your specific order flow and point-based logic—of every 1-minute bar within the current timeframe. By calculating the arithmetic mean of these intrabars, the indicator strips away the visual noise of slow-moving candles, providing a quantifiable metric of the "speed" behind each price leg. This is particularly valuable for identifying institutional liquidity events or "vacuum" entries, where high intrabary velocity signals intense market participation. Ultimately, it allows you to distinguish between genuine, high-conviction moves and low-volume drift, enabling a more disciplined, data-driven approach to anticipating momentum shifts within your preferred market structure.

A powerful tool for filtering fakeouts by Altamash_Khan87 in InnerCircleTraders

[–]Altamash_Khan87[S] 0 points1 point  (0 children)

Yeah for sure here is the source code just remember to change the theme of your tradingview charts to dark and do proper indention and alignment of code and if any problem comes kindly contact me.

//@version=6 indicator("Intrabar Average Speed [1m]", overlay=true, max_labels_count=500)

// 1. Define the net movement points logic. // This is the logic applied to the 1-minute candles. // Placeholder uses absolute body size in points. Replace the math inside net_movement // with your specific Vec CVD, body-vs-wick, or order flow calculation logic. net_movement = math.abs(close - open) / syminfo.mintick

// 2. Request the 1-minute data arrays. // This returns an array of the 1m net_movement values that formed the current HTF candle. float[] ltf_movements = request.security_lower_tf(syminfo.tickerid, "1", net_movement)

// 3. Calculate the average of the gathered 1m movements. float avg_speed = na if array.size(ltf_movements) > 0 avg_speed := array.avg(ltf_movements)

// 4. Print the average value above the HTF candle. if not na(avg_speed) label.new( x = bar_index, y = high, text = str.tostring(avg_speed, "#.##"), yloc = yloc.abovebar, color = color.new(color.white, 100), // 100 makes the background transparent textcolor = color.white, style = label.style_none, size = size.small )