The support forum is built with (1) General and FAQ forums for common trading queries received from aspiring and experienced traders, and (2) forums for course video topics. How to Trade Price Action and How to Trade Forex Price Action videos are consolidated into common forums.
Brooks Trading Course social media communities
Brooks Trading Course Learning Resources >>>
EOD Review
Nifty - https://youtu.be/nv_LEOZGlwI?si=DYCr4TP3QlY9DPBA
Tata Motors - https://youtu.be/iJdlrD4Q2Ag?si=HItr-pUwZYW3ib9_
HI DARPAN MY SELF KALYAN FROM INDIAN BY BPA COURSE IAM YOUR SUBSCRIBER ON YOUTUDE HOWEVER TRADESTAION CANT BE USED TO INDIANS AND MOST OF INDIAN TRADERS USE TRADING VIEW TO TRADE HOWEVER IT IS VERY HARD TO GET BAR COUNT ANALYSIS WITH IN TRADING VIEW IT ALSO VERY HARD FOR ME TO USE BAR COUNT ANALYSIS SO I DECIDE TO WRITE A CODE THAT PLOT BAR COUNT ON TRADING BELOW BAR WITH SHAPE AND NUMBER BELOW REASON FOR SHARING THIS IS IT IS VERY CONFUSION AND TIME TAKEN,CONFRIM THE BAR NUMBER THIS IS THE REASON FOR SHARING THE MEASSGE WHICH WILL HEPL YOU PLOT BAR WITH 3 MULTIPLE IF YOU WANT TO CHANGE YOU CAN CHANGE THE CODE IN ADDITION TO THAT EMA ALSO WITH IN ONE CODE 20 EMA AND 220 EMA THAT WILL HELP YOU THE CODE IS BELOW JUST COPY IT AND PASTE IT IN TRADING VIEW PINE SCRIPIT BELOW AND ADD TO CHART AND SAVE WITH THE NAME YOU WISH
//@version=6
indicator("BarCounting_", overlay=true)
is_new_day = dayofweek != dayofweek[1]
// Manual bar counter since new day
var int bar_count = na
bar_count := is_new_day ? 0 : bar_count + 1
ema20 = ta.ema(close, 20), ema220 = ta.ema(close, 220)
plot(ema20, color=color.orange), plot(ema220, color=color.blue)
plotshape(bar_count == 0, text="1", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 2, text="3", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 5, text="6", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 8, text="9", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 11, text="12", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 14, text="15", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 17, text="18", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 20, text="21", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 23, text="24", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 26, text="27", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 29, text="30", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 32, text="33", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 35, text="36", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 38, text="39", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 41, text="42", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 44, text="45", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 47, text="48", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 50, text="51", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 53, text="54", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 56, text="57", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 59, text="60", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 62, text="63", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 65, text="66", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 68, text="69", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 71, text="72", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 74, text="75", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 77, text="78", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 80, text="81", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 83, text="84", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 86, text="87", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 89, text="90", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 92, text="93", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 95, text="96", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 98, text="99", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 101, text="102", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 104, text="105", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 107, text="108", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 110, text="111", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 113, text="114", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 116, text="117", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 119, text="120", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 122, text="123", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 125, text="126", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 128, text="129", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 131, text="132", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 134, text="135", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 137, text="138", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 140, text="141", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 143, text="144", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 146, text="147", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 149, text="150", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 152, text="153", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 155, text="156", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 158, text="159", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 161, text="162", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 164, text="165", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 167, text="168", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 170, text="171", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 173, text="174", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 176, text="177", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 179, text="180", textcolor=color.green, location=location.belowbar)
plotshape(bar_count == 182, text="183", textcolor=color.green, location=location.belowbar)
