JustETF importer feature

Hello, sorry if I made maybe an “obvious” question: do you plan to do a feature to import all the data of an ETF (hystorical prices, Taxonomy, etc.) from JustEtf website?

Thanks

Not from justETF but latest from Morningstar:

1 Like

Hi, do you mean that you’re working on doing it with Morningstar?

Are you referring to this?
https://github.com/Alfons1Qto12/pp-portfolio-classifier/tree/new-api-branch

Will it be implemented in the PP?

Yes I do.

when you read the linked thread, you’ll see this works aside of PP.

A native implementation isn’t planned to my knowledge.

Ok, thanks.
To me a fature like this will be very important for portfolio balancing. I can understand that this could create hard links on target website that hosts data but maybe an approach with intermediate configuration could be a solution.

My two cents of course.

How often and how much do you think the figures change? In my humble opinion, it is enough to look at the figures once a year, and even that is probably not worthwhile.

If you think it is very important - it is open source. Feel free to start with something like

me@host:~$ curl -s "https://extraetf.com/api-v2/detail/?isin=IE00B3RBWM25&extraetf_locale=de" | jq '.results[0].portfolio_breakdown.global_stock_exposure'{
  "Basiskonsumgüter": 6.15628,
  "Energie": 4.15784,
  "Finanzen": 17.90093,
  "Gesundheitswesen": 10.25632,
  "Grundmaterialien": 3.50561,
  "Immobilien": 2.32393,
  "Industrie": 9.98001,
  "Kommunikation": 8.19164,
  "Technologie": 24.13199,
  "Versorger": 2.75545,
  "Zykl. Konsumgüter": 10.43805
}
me@host:~$ curl -s "https://extraetf.com/api-v2/detail/?isin=IE00B3RBWM25&extraetf_locale=de" | jq '.results[0].portfolio_breakdown.region_stock_exposure'{
  "Afrika": 0.34127,
  "Asien": 16.701269999999997,
  "Europa": 15.000339999999998,
  "Lateinamerika": 0.9419599999999999,
  "Nordamerika": 65.05015999999999,
  "Osteuropa": 0.18025000000000002,
  "Pazifik": 1.69889
}

1 Like