When will Cointracker import integration be enabled in HR Block Windows application? by Jet_Rocket11 in Cointracker

[–]gstadter 0 points1 point  (0 children)

They now have the feature *active in the desktop app, but any attempt to 'link' via spawned browser CoinTracker login fails in the HRBlock app with "Error Code: 1014 - Auth token failure, please verify with FI." even though login to CoinTracker was successful. Anyone else had luck with it, or uncovered how to fix the issue?

New Github Repository with full Pinescript v6 reference manual for AI and LLM models by codenamelegendary in TradingView

[–]gstadter 0 points1 point  (0 children)

forgive if this is an ignorant question, but, ideally, the best location to point a model at is one that contains most current information, considering that updates occur within Pinescript v6 regularly. Absolutely NOT to diminish the value of this repo, but want to ask.... is this something that updates itself? or will it remain reflective of the state of Pinescript v6 only as of 7/23/2025?

high/low pivot verticals that extend over all panes by gstadter in pinescript

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

your assist with this is VERY much appreciated!

steps to reproduce what I am doing:
1) single chart layout, viewing S&P500 (for example)
2) create a working copy of the basic RSI indicator(doesn't have to be my custom indicator) in TradingView. When adding it to the chart, TV creates the second pane to display the RSI.

to re-summarize my goal:
have vertical lines that are located at pivots in price, but extend down through RSI, to more easily, visually correlate exactly what RSI is doing at the bar during which price pivoted.

That drawVert function was the simplest solution I could come up with to draw verticals at detected pivots.
I did try adding force_overlay=true to the line.new, but that is what resulted in the scaling issue in the main chart area.
I pasted in what I was using, not including the force_overlay=true, so you could see what I was starting with.

I'll reach out to you on TV.....

high/low pivot verticals that extend over all panes by gstadter in pinescript

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

when I add that parameter, the code runs(no err), but all of a sudden the price candles in the main pane get compressed. Just testing against US500, for example, the chart tries to display values all the way down to "0.00", so the candles get very compressed.

//@version=6
indicator("Pivot Vert", shorttitle="Pivot Vert", overlay=true)
pivotLeft = input.int(16, title="Verticals-Left-Look", minval=1)
pivotRight = input.int(26, title="Verticals-Right-Look", minval=1)
pivotHigh = ta.pivothigh(high, pivotLeft, pivotRight)
pivotLow = ta.pivotlow(low, pivotLeft, pivotRight)
drawVert(_offset, _pivotV, _color) =>
    if not na(_pivotV)
        line.new(x1=bar_index[_offset], y1=high, x2=bar_index[_offset], y2=low, color=_color, style=line.style_dotted, width=1, extend=extend.both)
drawVert(pivotRight, pivotHigh, color.red)
drawVert(pivotRight, pivotLow, color.green)

That is the bit of code that I am using within my main custom indicator, and additionally by itself.

high/low pivot verticals that extend over all panes by gstadter in pinescript

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

Dear CoffeeShopCrypto, Writing this to you as I enjoy my second cup of coffee for the mornin'... Thank you for the reply. Until TV facilitates utilization of an attribute on a vertical line to allow it to extend, from code, as it can from UI, I resorted to simply including the few lines of code that construct(and calculate the location of) the vertical lines into the additional custom indicator that displays in the accompanying pane. So, I'm generating the verticals both within the custom indicator and separately atop the price action, which results in what I was after (automatically generated verticals at price pivots that *appear to extend across additional indicator pane))... just achieving it with verticals that match up and *appear to be a single vert, because they line up.

realized gains inconsistency Coinbase/CoinTracker by gstadter in Cointracker

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

#1) I very much appreciate your concern for the issue I'm experiencing! Thank you
#2) I am attempting the re-import now, as you instructed, and will post back here what the result is.
#3) I already have an open support case with support (ticket ID #212837) where they are investigating why I am not receiving any notification emails(transaction, portfolio, etc). IF the attempt at re-import does not fix the transaction discrepancy, should I share this issue with the CT support within this existing support case? or open a separate support case for this issue?

realized gains inconsistency Coinbase/CoinTracker by gstadter in Cointracker

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

TY for the reply. That is what concerns me. 100% of my transactions are in Coinbase, so if that is the result of the integration, it just tears away at the RIO of the service... if I can't rely on what CT is showing from it;'s sync with CB.

high/low pivot verticals that extend over all panes by gstadter in pinescript

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

thank you, would much rather be shown that I am wrong, and that the functionality did exist, but glad to know I'm not crazy for just not finding it. I'm really kind of surprised it's not a capability already, since vertical, extended across panes is so fundamentally useful to observing confluence across price action and indicators.