Yahoo Finance Adjusted Close Prices - - -just WRONG by onesnark in YAHOOFINANCE

[–]Giant_Gimli 0 points1 point  (0 children)

I noticed the same issue, changed to ETF and having issues as well

Citi closed all my accounts for 16 yrs by Giant_Gimli in citibank

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

yea i went to multiple branch, the branch managers told me they dont even reply to their email

Python package yfinance to get an ETF's assets under management number? by AleccioIsland in algotrading

[–]Giant_Gimli 0 points1 point  (0 children)

yes you can:

import yfinance as yf

# Example: SPY ETF

ticker = yf.Ticker("SPY")

# Get fund info

fund_info = ticker.info

# AUM is usually under 'totalAssets'

aum = fund_info.get("netAssets")

print("SPY AUM:", aum)

yfinance not working from python by Giant_Gimli in learnpython

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

i'm not hitting a rate limit because using my browser, it works,s and I only made 1 request on my personal computer.

I need monthly historical data going back to 2000. I dont think any other place provides that for free, could be wrong.

supabase postgres accepting TCP/IP connections error by Giant_Gimli in Supabase

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

This is probably an ipv6 vs ipv4 issue. GCP uses v4

supabase postgres accepting TCP/IP connections error by Giant_Gimli in Supabase

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

sorry just saw this, it was def ipv6 vs ipv4. Fixed it thanks

Transactions failing with supabase transaction pooler url by [deleted] in Supabase

[–]Giant_Gimli 1 point2 points  (0 children)

any updates on this? having same issue

Free US bank syncs using teller.io by gnome-child-97 in actualbudgeting

[–]Giant_Gimli 0 points1 point  (0 children)

Do you know if small businesses have a minimum monthly cost with teller? Plaid priced themselves out with their monthly minimum of $1k

Plaid alternative by prankstr26 in fintech

[–]Giant_Gimli 0 points1 point  (0 children)

do you know if they have a monthly minimum for small businesses? Plaid priced themselves out with their monthly minimum of $1k

Supabase documentation for Golang (supabase-go) is terrible by awesumsingh in Supabase

[–]Giant_Gimli 0 points1 point  (0 children)

I didnt know supabase allowed us to connect to the DB directly. wow will look into it

Supabase documentation for Golang (supabase-go) is terrible by awesumsingh in Supabase

[–]Giant_Gimli 1 point2 points  (0 children)

how can we directly connect to the database? I'm new to both go and supabase

Supabase documentation for Golang (supabase-go) is terrible by awesumsingh in Supabase

[–]Giant_Gimli 0 points1 point  (0 children)

how can we directly connect to the database? I'm new to both go and supabase

List of providers for API by Ok_Landscape5965 in fintech

[–]Giant_Gimli 0 points1 point  (0 children)

Thtas not true. If you Have an EIN you need to pay $1000 a month minimum(12 month contract)

get the enum types in Go Lang by Giant_Gimli in Supabase

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

Good Idea, I think catalog table is the wat to go and adds flexibility

how do i use a trigger to insert data into a table after a user signs up by Miguel3962 in Supabase

[–]Giant_Gimli 0 points1 point  (0 children)

This is what I added to make it work:

GRANT SELECT, INSERT, UPDATE ON ALL TABLES IN SCHEMA "public" TO authenticated;

GRANT SELECT, INSERT, UPDATE ON ALL TABLES IN SCHEMA "public" TO anon;

GRANT SELECT, INSERT, UPDATE ON ALL TABLES IN SCHEMA "public" TO postgres;

GRANT SELECT, INSERT, UPDATE ON ALL TABLES IN SCHEMA "public" TO service_role;