
Originally Posted by
martindwilson
ah it must be your regional settings you should be able to find . replace with ,
then again i didnt know hell used , for decimal places, there is a reason that you are asked for your location this is one of them
By the way.
When i download the the source i get it from here
http://www.global-view.com/forex-tra...ory/index.html
I download EUR/USD
http://www.global-view.com/forex-tra...0Daily%20Stats
then i run this code:
f = open('exchange.csv', 'r')
k = f.read()
f.close()
k = k.replace(',', ";")
f = open('exchange.csv', 'w')
f.write(str(k))
f.close()
k = open('exchange.csv', 'r')
f = k.read()
f = f.replace('.',",")
f = f.replace('EUR/USD',"")
o = open('exchange.csv', 'w')
o.write(str(f))
This gives only Date-High-Low-Close
But in Forex, close = open if it's a daily chart.
Can i do this in VBA too?
Here is my new source:
exchange.xlsx
How can i zoom into the candlestick? I can only se years in candlesticks.
Bookmarks