Redian新闻
>
baozi: where to download vwap data?
avatar
baozi: where to download vwap data?# Stock
n*n
1
volume weighted average price.
y! finance not have.
ib have, but i've no idea how to download it. in addition, ib data often
dirty.
avatar
n*n
2
how?
avatar
l*r
3
You can calculate it in Excel. Fairly easy.

【在 n******n 的大作中提到】
: volume weighted average price.
: y! finance not have.
: ib have, but i've no idea how to download it. in addition, ib data often
: dirty.

avatar
n*n
4
not easy at all if u have hundreds of tickers to trace everyday.
u need min data and it's still an approx.

【在 l*******r 的大作中提到】
: You can calculate it in Excel. Fairly easy.
avatar
l*r
5
You know R, right? :)

【在 n******n 的大作中提到】
: not easy at all if u have hundreds of tickers to trace everyday.
: u need min data and it's still an approx.

avatar
n*n
6
to make the whole flow work, u need:
1) automatically download 1-min data from y! fin for all tickers interested.
2) automatically calculate vwap for each.
3) create reports and add proper ui to access.
also, u need a 24-hr online server.
of course it's doable. but just not want to reinvent the wheel.
btw, y!f only keeps 1-day's 1-min data, i think. no way to retrieve historical one.

【在 l*******r 的大作中提到】
: You know R, right? :)
avatar
n*n
7
in addition, u don't know if y!f data reliable, and calc based on 1-min
still have errors.

interested.
historical one.

【在 n******n 的大作中提到】
: to make the whole flow work, u need:
: 1) automatically download 1-min data from y! fin for all tickers interested.
: 2) automatically calculate vwap for each.
: 3) create reports and add proper ui to access.
: also, u need a 24-hr online server.
: of course it's doable. but just not want to reinvent the wheel.
: btw, y!f only keeps 1-day's 1-min data, i think. no way to retrieve historical one.

avatar
l*r
8
Unfortunately, there is no free data stream at inutely level.
It is not that difficult - R has all kinds of components you need, and you
just need to spend a few hours to put them together. You can start from a
few ETFs, and scale up if you want. Once you finish the code, you can even
put them into the cloud so they can run 24/7.

interested.

【在 n******n 的大作中提到】
: to make the whole flow work, u need:
: 1) automatically download 1-min data from y! fin for all tickers interested.
: 2) automatically calculate vwap for each.
: 3) create reports and add proper ui to access.
: also, u need a 24-hr online server.
: of course it's doable. but just not want to reinvent the wheel.
: btw, y!f only keeps 1-day's 1-min data, i think. no way to retrieve historical one.

avatar
w*s
9
hehe. I had ever shared this information, but got bashed.
you need tick level data (which is almost never free) and then do the
calculation and aggregation together.

【在 n******n 的大作中提到】
: not easy at all if u have hundreds of tickers to trace everyday.
: u need min data and it's still an approx.

avatar
l*r
10
Why?

【在 w******s 的大作中提到】
: hehe. I had ever shared this information, but got bashed.
: you need tick level data (which is almost never free) and then do the
: calculation and aggregation together.

avatar
d*u
11
要哪个,哪天的?我这都有。

【在 n******n 的大作中提到】
: volume weighted average price.
: y! finance not have.
: ib have, but i've no idea how to download it. in addition, ib data often
: dirty.

avatar
d*u
12
没仔细看,以为你只要某天某个的。
有个IB讨论些程序的论坛,好像有free code.

【在 n******n 的大作中提到】
: volume weighted average price.
: y! finance not have.
: ib have, but i've no idea how to download it. in addition, ib data often
: dirty.

avatar
w*s
13
why at which part? minuts data can't be accurate
say in the same minute, 10000 shares traded at 10, 100 shares traded at 11

【在 l*******r 的大作中提到】
: Why?
avatar
w*s
14
you should be able to track it from IB or calculate based on IB's data.
the only limitation is the numbers fo symbols you could watch (50?), but
usually good enough for most people.

【在 d***u 的大作中提到】
: 没仔细看,以为你只要某天某个的。
: 有个IB讨论些程序的论坛,好像有free code.

avatar
l*r
15
I mean why bashed?
Short/middle term swing trade do not need so accurate minuately level data,
and HF trade should not use data colleted from such "yeji" method at all.
So how come you were bashe?!

11

【在 w******s 的大作中提到】
: why at which part? minuts data can't be accurate
: say in the same minute, 10000 shares traded at 10, 100 shares traded at 11

avatar
n*n
16
i think it's accurate enough for amateurs.

【在 w******s 的大作中提到】
: you should be able to track it from IB or calculate based on IB's data.
: the only limitation is the numbers fo symbols you could watch (50?), but
: usually good enough for most people.

avatar
w*s
17
why you think vwap is very yeji?

,

【在 l*******r 的大作中提到】
: I mean why bashed?
: Short/middle term swing trade do not need so accurate minuately level data,
: and HF trade should not use data colleted from such "yeji" method at all.
: So how come you were bashe?!
:
: 11

avatar
n*n
18
through tws's api? any more details are highly appreciated.

【在 w******s 的大作中提到】
: you should be able to track it from IB or calculate based on IB's data.
: the only limitation is the numbers fo symbols you could watch (50?), but
: usually good enough for most people.

avatar
w*s
19
i can't remember details, but there is bigger limitation on retrieval
historical data on IB
something like 5 symbols per minute and 1 request per 10 seconds.. something
like that.
and for realtime, it is a bit better but still sucks

【在 n******n 的大作中提到】
: through tws's api? any more details are highly appreciated.
avatar
d*u
20
ok. I used to use their data serive, so I know this pretty well.
TWS API details is here http://www.interactivebrokers.com/en/p.php?f=programInterface
Are you familiar with C or JAVA or VB? If you are, they have some sample
programs to show you how to download data. Should be few hours work to
change that program for you need to get data.
You may also check the user group http://finance.groups.yahoo.com/group/TWSAPI/. I think there are some free code to download.
there are some limitations for

【在 n******n 的大作中提到】
: through tws's api? any more details are highly appreciated.
avatar
n*n
21
thx. what data service r u using now?

few
data

【在 d***u 的大作中提到】
: ok. I used to use their data serive, so I know this pretty well.
: TWS API details is here http://www.interactivebrokers.com/en/p.php?f=programInterface
: Are you familiar with C or JAVA or VB? If you are, they have some sample
: programs to show you how to download data. Should be few hours work to
: change that program for you need to get data.
: You may also check the user group http://finance.groups.yahoo.com/group/TWSAPI/. I think there are some free code to download.
: there are some limitations for

avatar
d*u
22
i use 3 data services now.
1) prophet finance (paid) (up to half year intraday data - the data quality
is not very good, but my system already has an adapter to get their feed, so
I am lazy to change that)
2) Ameritrade (kind of free) (20 days intraday data, data feed is fastest,
this my default daily data feed)
3) IB (as back up) (1 year intraday data, but really slow if you have
hundreds of symbols to download). I also had their premimum service b4, but
found no data quality improvement, so I

【在 n******n 的大作中提到】
: thx. what data service r u using now?
:
: few
: data

avatar
n*n
23
very nice. backup.

quality
so
but

【在 d***u 的大作中提到】
: i use 3 data services now.
: 1) prophet finance (paid) (up to half year intraday data - the data quality
: is not very good, but my system already has an adapter to get their feed, so
: I am lazy to change that)
: 2) Ameritrade (kind of free) (20 days intraday data, data feed is fastest,
: this my default daily data feed)
: 3) IB (as back up) (1 year intraday data, but really slow if you have
: hundreds of symbols to download). I also had their premimum service b4, but
: found no data quality improvement, so I

avatar
d*u
24
Thx for BAOZI ( although i didn't expect this for exchanging info)
Intraday VWAP is useful to determin the best entry/exit
Here is a screen shot from my system showing VWAP...

【在 n******n 的大作中提到】
: very nice. backup.
:
: quality
: so
: but

avatar
n*n
25
the ui is written by urself, or from any software?

【在 d***u 的大作中提到】
: Thx for BAOZI ( although i didn't expect this for exchanging info)
: Intraday VWAP is useful to determin the best entry/exit
: Here is a screen shot from my system showing VWAP...

avatar
d*u
26
partially myself.

【在 n******n 的大作中提到】
: the ui is written by urself, or from any software?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。