我想利用C#来开发应用,从亚hoo金融中下载不同货币配对的数据。 所需要的价值是投标、投标、最后价、高价、低价、变化、变化等,以及使用hoo提供的服务如下:
http://finance.yahoo.com/d/quotes.csv?s=EURUSD=X&s=USDJPY=X&f=sl1d1t1bahg&e=.csv
but, it is not returning all the values. Any idea how to get all the values.
我想利用C#来开发应用,从亚hoo金融中下载不同货币配对的数据。 所需要的价值是投标、投标、最后价、高价、低价、变化、变化等,以及使用hoo提供的服务如下:
http://finance.yahoo.com/d/quotes.csv?s=EURUSD=X&s=USDJPY=X&f=sl1d1t1bahg&e=.csv
but, it is not returning all the values. Any idea how to get all the values.
是的。 页: 1
雅虎不关心你们想要的东西——他们提供具体服务。 你发现,这并不提供你想要的东西。 因此,在什么地方可以做到这一点。
尽管如此,这也有助于了解你想要做些什么。
首先,投标/出价很难获得,因为没有交换,这是极具中间商的依赖。
第二。 变化无足轻重——人们曾经听到过所谓的“cal”吗?
你们要看的是雅虎的“下载引号”。 确切地说,这给你一份引证文件。 更不要说。
还有其他服务和产品。 如果雅虎没有完全满足你的需要,那么你现在就坚持使用这一文本。
并且,你可以在此找到现有标签清单:。 下载雅虎数据
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?
I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...
I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...
I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...
I have two EF entities. One has a property called HouseNumber. The other has two properties, one called StartHouseNumber and one called EndHouseNumber. I want to create a many to many association ...
How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...
Since I cannot order my dictionary, what is the best way of going about taking key value pairs and also maintaing an index?
Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...