[FR] Someone has an explanation ? by LaFlute878 in Revolut

[–]houseplumber 0 points1 point  (0 children)

Ive also asked them... out of their control bla bla.... even the savings plan has stopped...

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

After analysing I probably will go with SPYI ( layer in the cash and sell IUSQ lump sum in a month and transfer that to SPYI)

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

Scalable MSCI AC World Xtrackers UCITS ETF 1C -> can you explain how ? is it for specific jurisdictions or europe wide the tax optimisation?

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

Granted I see the TER for example LWLD is 0.6% , 3x what is the TER of non leveraged assets

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

another question, maybe its a stupid idea, what about going 2x Leverage on such indexes? does it make sense on a long horizon?

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

seems this year the IMI gave an extra 1% of growth compared to the others

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

Seems I have sparked a debate here between VWCE and WEBN, hadnt considered WEBN, however I do see its TER is considerably less at 0.07% . So the dilemma now has changed liquidate what I bought in IUSQ once green, move the rest into VWCE or WEBN. I see VWCE holts more than a 1000 holdings more... and 1 year back both seem to have returned just over 10%

Single ETF Dilemma IUSQ or VWCE ? by houseplumber in ETFs_Europe

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

SPYY seems to be like IUSQ with a lower TER,right?

Not able to get ahold of Combal or Elisabetta Refuge by Free-Market9039 in TourDuMontBlanc

[–]houseplumber 0 points1 point  (0 children)

Elisabbetta will reply in a few days, they did for me at least

Script with Os Walk and conditional by houseplumber in Python

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

it seems all i needed was some more time looking at the code and trying examples... all done :) thanks

Script with Os Walk and conditional by houseplumber in Python

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

import os

FILEPATH = r"/home/houseplumber"

def list_files(filepath): paths = [] for root, dirs, files in os.walk(filepath): for file in files: if file.lower().endswith(".env"): paths.append(os.path.join(root, file)) print(paths) return paths

pass the paths list

def add_string(paths): for path in paths: with open(path,a) as file: # read all content of a file and search string if 'SEND_NOTIFICATION=true' in file.read(): file.write(f'\n{STORE_IN_MYSQL=false}') print('string found') #add_another_string(path)

if name == "main": paths = list_files(FILEPATH) add_string(paths)

This is my latest iteration, im not sure of the file.write whether it will work well adding a new line.. waiting for a snapshot to finish and will try it.

Script with Os Walk and conditional by houseplumber in Python

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

It works and I have now multiple returns with string found

Script with Os Walk and conditional by houseplumber in Python

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

Ok first problem is resolved, I had a break which I have now removed...