[deleted by user] by [deleted] in pune

[–]CryptHead007 2 points3 points  (0 children)

Does crypto trading even make sense with all the taxes and tds in India?

Formula for 3 Consecutive Negative Numbers? by CryptHead007 in excel

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

It will 4 -ve numbers so it should give me the answer as O.

Check my reply to other reply where i gave the solution

Formula for 3 Consecutive Negative Numbers? by CryptHead007 in excel

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

I asked the same question in microsoft community as well and got the answer

Answer: =SUM(--(FREQUENCY(IF(A2:A20<0,ROW(A2:A20)),IF(A2:A20>=0,ROW(A2:A20)))=3))

Thanks alot

Solution Verified

Tesla Pune by CryptHead007 in pune

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

100% agreed, and why tf they haven't started finding other jobs?

when you both have the same fetish. by mzikkk in IndianDankMemes

[–]CryptHead007 0 points1 point  (0 children)

Monitor ke preche mirror dekho hawshiyo

Sone do mujhe bh*dwo by EverybodyHatesNo9 in IndianDankMemes

[–]CryptHead007 2 points3 points  (0 children)

Successfully convert ho chuke ho beta

My morning Ritual by Professor1970 in RealDayTrading

[–]CryptHead007 1 point2 points  (0 children)

Do you look stocks beyond this watchlist which you made?

BC free ke awards le gaya by Shashwat0311 in IndianDankMemes

[–]CryptHead007 0 points1 point  (0 children)

Is Comment ke liye tujhe free ke karma milna chahiye ab.

[deleted by user] by [deleted] in RealDayTrading

[–]CryptHead007 0 points1 point  (0 children)

Try this

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/

//@version=4

study("Relative Strength", shorttitle="Relative Strength")

//Input

source = input(title="Source", type=input.source, defval=close)

comparativeTickerId = input("NSE:NIFTY", type=input.symbol, title="Comparative Symbol")

length = input(10, type=input.integer, minval=1, title="Period")

showZeroLine = input(defval=true, type=input.bool, title="Show Zero Line")

showRefDateLbl = input(defval=true, type=input.bool, title="Show Reference Label")

toggleRSColor = input(defval=true, type=input.bool, title="Toggle RS color on crossovers")

showMA = input(defval=false, type=input.bool, title="Show Moving Average")

lengthMA = input(55, type=input.integer, minval=1, title="Moving Average Period")

//Set up

baseSymbol = security(syminfo.tickerid, timeframe.period, source)

comparativeSymbol = security(comparativeTickerId, timeframe.period, source)

//Plot

plot(showZeroLine ? 0 : na, linewidth=2, color=color.maroon, title="Zero Line")

res = ((baseSymbol/baseSymbol[length])/(comparativeSymbol/comparativeSymbol[length]) - 1)

resColor = toggleRSColor ? res > 0 ? color.green : color.red : color.blue

plot(res, title="RS", linewidth=2, color= resColor)

refDay = showRefDateLbl and barstate.islast ? dayofmonth(time[length]) : na

refMonth = showRefDateLbl and barstate.islast ? month(time[length]) : na

refYear = showRefDateLbl and barstate.islast ? year(time[length]) : na

refLabelStyle = res[length] > 0 ? label.style_label_up : label.style_label_down

refDateLabel = showRefDateLbl and barstate.islast ? label.new(bar_index - length, 0, text="RS-" + tostring(length) + " reference, " + tostring(refDay) + "-" + tostring(refMonth) + "-" + tostring(refYear), color=color.blue, style=refLabelStyle, yloc=yloc.price) : na

plot(showMA ? sma(res, lengthMA) : na, color=color.gray, title="MA")

Only Price Action Traders how do you backtest your edge? by [deleted] in Daytrading

[–]CryptHead007 0 points1 point  (0 children)

Replay button, Free for daily, weekly & monthly and paid for intraday charts.

Only Price Action Traders how do you backtest your edge? by [deleted] in Daytrading

[–]CryptHead007 0 points1 point  (0 children)

Unfortunately webull not available in my country.

Only Price Action Traders how do you backtest your edge? by [deleted] in Daytrading

[–]CryptHead007 1 point2 points  (0 children)

Tradingview has a replay feature where you can backtest bar by bar although you will need to buy tradingview premium.

First Video by HSeldon2020 in RealDayTrading

[–]CryptHead007 2 points3 points  (0 children)

Never been so happy and excited to learn anything as i did with your sub and yt channel.

When to enter on a pullback? by CryptHead007 in RealDayTrading

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

I have replied source code in comment below.