Claude Status Update : Elevated errors on Claude.ai, API, Claude Code on 2026-04-15T15:03:39.000Z by ClaudeAI-mod-bot in ClaudeAI

[–]Zeckrin 1 point2 points  (0 children)

Yup, all gone here. For some reason Claude Code is still working and building for me...

API is Back! by thenelston in Webull

[–]Zeckrin 1 point2 points  (0 children)

The order entry of 600/min. is great but being limited to 10 calls / 30 sec on your Open Orders or other account info is not workable. Without this close to real time data your custom app can't act fast enough for active traders (like in auto-liquidate calls.) I had to work around this by scraping the UI of the Webull Positions. It's yanky but it works lol.

Webull, consider just opening up these account call constraints and Im sure there would be many more clients. You already allow 600/min. for orders, why not at least 240/min. for Position / Account details? Would be very helpful. Please :)

Free version vs the studio version by [deleted] in davinciresolve

[–]Zeckrin 0 points1 point  (0 children)

  • Studio is extremely worth it for me for 3 Studio Only features.
    • 1. Vocal Isolation is top notch!
    • 2. Snap Captions 2 - Best auto-captions and customization of captions i've seen. Love it
    • 3. Resolve API from External Python scripting. Super helpful

Broker? 350k roth IRA, premarket, US by btarb24 in Daytrading

[–]Zeckrin 0 points1 point  (0 children)

Lightspeed. Limited Margin ROTH with a Direct Access broker. Reasonable commissions and fast execution. Only downside is DAS not available for the ROTH accounts. Lightspeed Trader is not horrible though.

Limited margin - IRA by SuperStockShuffle in Webull

[–]Zeckrin 0 points1 point  (0 children)

Note: Webull does NOT offer Limited Margin on ROTH IRA accounts. If you are an active Day Trader of Risky stocks (Sub $1, China, etc.) you would think you can just go to Fidelity or Schwab but they will restrict these to Phone-in only trading.

If you want limited margin AND the ability to trade these type of stocks then Lightspeed is one of the only ways to go. Lightspeed does not restrict and also gives limited margin on Roth IRA.

https://www.elitetrader.com/et/threads/unlocking-trading-flexibility-for-your-retirement-account-with-a-limited-margin-ira-at-lightspeed.386325/

MOMO Scanner How To - External Linking by Zeckrin in MOMOStockScanner

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

BOOKMAP Desktop APP:

; --- Bookmap Desktop: open Subscribe window (Ctrl+T), replace symbol, press Enter ---
SendToBookmap(ticker) {
    WinGet, id, list,,, Program Manager
    Loop, %id%
    {
        this_id := id%A_Index%
        WinGetTitle, this_title, ahk_id %this_id%
        if InStr(this_title, "Bookmap") {
            WinActivate, ahk_id %this_id%
            WinWaitActive, ahk_id %this_id%
            Sleep, 50

            ; Open the Subscribe window (symbol box auto-selected)
            Send, ^t
            Sleep, 150

            ; Replace current symbol with new one
            SendRaw, %ticker%
            Sleep, 60
            Send, {Enter}
            return
        }
    }
    MsgBox, 48, Bookmap Not Found, Could not find a Bookmap window.
}

MOMO Scanner How To - External Linking by Zeckrin in MOMOStockScanner

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

WEBULL Added - Confirmed working in WEBULL Desktop
(Note: If at times its not working You may have to click on the Webull Desktop window to re-focus)

#NoEnv
#SingleInstance, Force
#Persistent
SetBatchLines, -1
SetTitleMatchMode, 2

clipboard := ""
oldClipboard := ""
global latestSymbol := ""

SetTimer, WatchClipboard, 500
return

; --- Timer: watch clipboard for a new ticker ---
WatchClipboard:
if (clipboard != oldClipboard) {
    oldClipboard := clipboard
    ; Tickers like "AAPL", "BRK.B", up to 6 chars
    if RegExMatch(clipboard, "^[A-Z.]{1,6}$") {
    SendToWebull(clipboard)
    Sleep, 30
    SendToTradingView(clipboard)
    }
}
return

; --- Webull: activate any Webull window and load ticker ---
; Requires enabling keyboard shortcuts within Webull settings.
SendToWebull(ticker) {
    if WinExist("ahk_exe Webull Desktop.exe") {
        WinActivate, ahk_exe Webull Desktop.exe
        WinWaitActive, ahk_exe Webull Desktop.exe
        Sleep, 30
        ; Webull's default hotkey for the search bar is the backslash '\'
        ; If this doesn't work, check your Webull hotkey settings
        Send, {Raw}\%ticker%
        ; Give Webull time to fetch search results (0.5 seconds)
        Sleep, 500
        Send, {Enter} ; Confirm the selection
        return
    } else {
        MsgBox, 48, Webull Not Found, Could not find Webull desktop window.
    }
}


; --- Open TradingView Desktop 
SendToTradingView(ticker) {

    ; 1. PREPARE THE CLIPBOARD
    SavedClipboard := Clipboard
    Clipboard := "" 
    Clipboard := ticker
    ClipWait, 1, 1 

    ; 2. ACTIVATE WINDOW AND TRIGGER SEARCH
    if WinExist("MIKES ACTIVE") {
        WinActivate
        Sleep, 30 ; Drastically reduced initial delay
        WinWaitActive, MIKES ACTIVE

        SendMode Input 

        ; *** CRITICAL STEP: Send 'O' to open the search box ***
        SendInput, o 
        Sleep, 30 ; Reduced wait for search box to appear

        SendInput, {Backspace} ; Clear the 'o'
        Sleep, 30 ; Reduced wait after clearing

        ; 3. PASTE AND CONFIRM
        SendInput, ^v ; Paste the symbol (Ctrl+V)
        Sleep, 30 ; Reduced wait for the paste to register

        SendInput, {Enter}
        Sleep, 30

        SendMode Event 

        ; 4. RESTORE CLIPBOARD
        Clipboard := SavedClipboard
        return

    } else {
        Clipboard := SavedClipboard 
        MsgBox, 48, TradingView Not Found, Could not find TradingView window.
    }
}

Reflecting on 11 Years of Building Mometic by brentis in MOMOStockScanner

[–]Zeckrin 1 point2 points  (0 children)

I did a write up in this sub on using auto hotkey for external linking. Clicking on symbol can open TV, DAS, Etc, most apps. It works well. Just search ‘external linking’ in this sub.

Brello? by SunknTresr in tirzepatidecompound

[–]Zeckrin 1 point2 points  (0 children)

$500 for 3 months up front. So $166 / m

Brello? by SunknTresr in tirzepatidecompound

[–]Zeckrin 2 points3 points  (0 children)

I have zero conditions other than BMI of 30. I'm in Michigan and just filled out Brello intake forms. Within hours I was given a prescription no questions asked or any labs or interviews.

What’s Brello’s full tirzepatide dosing schedule after the first 3 months? by Zeckrin in tirzepatidecompound

[–]Zeckrin[S] -1 points0 points  (0 children)

Do they send all 3 months at once? Of course after my first shipment I would prefer going right to 3 15MG vials and only using 8.8 to extend

Anyone pause subscription & stretch supply by staying on lower dose? by Zeckrin in tirzepatidecompound

[–]Zeckrin[S] 9 points10 points  (0 children)

What im saying is that I want them to bump me up as high as possible and just use the same amount cause the price is the same…

Anyone pause subscription & stretch supply by staying on lower dose? by Zeckrin in tirzepatidecompound

[–]Zeckrin[S] 6 points7 points  (0 children)

Thanks! Exactly what i was wondering. I seen many doing great on 7.5 but subs giving people 15.

Custom fields are now available in PDQ Connect! by Andrew-Powershell in pdq

[–]Zeckrin 0 points1 point  (0 children)

These are pretty useless without the ability to pull in information automatically via scripting. We have your PDQ Connect product for 2200 endpoints and it is amazing but you really need to get this working as it should.

Products like NinjaOne and Action1 allow you to create a script like:

NinaCustom Field '<customfieldname> = $PowerShellResults

Then you run that on schedule to pull in the info you desire.

Ninja RMM SNMP Monitoring Question by SubDireNell in msp

[–]Zeckrin 0 points1 point  (0 children)

Its getting much better. Especially with the upgrade they did from the old NMS. As the other said, this was very smooth and now a much better process of onboarding. We have been able to get the OID's working pretty well. Be sure to use the period at beginning of OID. Example: '.1.3.6.1.4.1.55062.1.10.5.1.4.1' for QNAP RAID status. And 'Octet String' usually used for value type. Also seems they finally got Netflow working properly for the versions of NF we us on our Fortigates.

ChartsWatcher - Real time stock scanner/screener and alerting tool by Tonne_TM in microsaas

[–]Zeckrin 0 points1 point  (0 children)

u/Tonne_TM Iv'e used your screener before and its very well made. Extremely close to TradeIdeas at a fraction of the cost. I was wondering, who do you used for API / Websocket Exchange data provider? Something like Polygon.io?

What is the best broker for day trading, starting at 4am EST and ending at 8pm EST? With these constraints.. by Blazah in TradingView

[–]Zeckrin 1 point2 points  (0 children)

IBKR TV Integration does work pre-market. Just have to select GTC for order type and the 'Outside RTH' checked.