SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S





1
(7)
2
(3)
3
(5)
4
(8)
5
(1)
6
(4)
7
(8)
8
(1)
9
10
(9)
11
(3)
12
(5)
13
(1)
14
(13)
15
16
(4)
17
18
(1)
19
(2)
20
(4)
21
(1)
22
(6)
23
(6)
24
(4)
25
(14)
26
(2)
27
28
(13)
29
(1)
30
(1)
31
(1)






Showing 5 results of 5

From: Keith G. <kwg...@gm...> - 2010年10月12日 17:19:17
On Tue, Oct 12, 2010 at 10:11 AM, John Hunter <jd...@gm...> wrote:
> On Tue, Oct 12, 2010 at 11:47 AM, Keith Goodman <kwg...@gm...> wrote:
>
>> Well, then perhaps the doc string needs tweaking?
>>
>>  *adjusted*
>>   If True (default) replace open, close, high, low, and volume with
>>   their adjusted values.
>>   The adjustment is by a scale factor, S = adjusted_close/close.
>>   Adjusted volume is actual volume divided by S;
>>   Adjusted prices are actual prices multiplied by S. Hence,
>>   the product of price and volume is unchanged by the adjustment.
>>
>> It does state that volume is adjusted by S (where S contains dividend
>> info). I take it that volume is the same whether adjusted is True or
>> False, which means that dollar volume is not unchanged.
>
>
>
> How does this look?
>
>  Parse the historical data in file handle fh from yahoo finance.
>
>  *adjusted*
>   If True (default) replace open, close, high, low, and volume with
>   their adjusted values.
>   The adjustment is by a scale factor, S = adjusted_close/close.
>   Adjusted prices are actual prices multiplied by S. Hence,
>
>   Note that volume is already backward split adjusted by Yahoo, so
>   if you want to compute dollars traded, multiply volume by the
>   adjusted close, regardless of whether you choose adjusted =
>   True|False
Here are some suggested tweaks:
 *adjusted*
 If True (default) replace open, close, high, and low prices with
 their adjusted values. The adjustment is by a scale factor,
 S = adjusted_close/close. Adjusted prices are actual prices
 multiplied by S.
 Volume is not adjusted as it is already backward split adjusted
 by Yahoo. If you want to compute dollars traded, multiply
 volume by the adjusted close, regardless of whether you choose
 adjusted = True|False.
From: John H. <jd...@gm...> - 2010年10月12日 17:11:50
On Tue, Oct 12, 2010 at 11:47 AM, Keith Goodman <kwg...@gm...> wrote:
> Well, then perhaps the doc string needs tweaking?
>
>  *adjusted*
>   If True (default) replace open, close, high, low, and volume with
>   their adjusted values.
>   The adjustment is by a scale factor, S = adjusted_close/close.
>   Adjusted volume is actual volume divided by S;
>   Adjusted prices are actual prices multiplied by S. Hence,
>   the product of price and volume is unchanged by the adjustment.
>
> It does state that volume is adjusted by S (where S contains dividend
> info). I take it that volume is the same whether adjusted is True or
> False, which means that dollar volume is not unchanged.
How does this look?
 Parse the historical data in file handle fh from yahoo finance.
 *adjusted*
 If True (default) replace open, close, high, low, and volume with
 their adjusted values.
 The adjustment is by a scale factor, S = adjusted_close/close.
 Adjusted prices are actual prices multiplied by S. Hence,
 Note that volume is already backward split adjusted by Yahoo, so
 if you want to compute dollars traded, multiply volume by the
 adjusted close, regardless of whether you choose adjusted =
 True|False
From: Keith G. <kwg...@gm...> - 2010年10月12日 16:48:06
On Tue, Oct 12, 2010 at 9:23 AM, John Hunter <jd...@gm...> wrote:
> On Tue, Oct 12, 2010 at 10:55 AM, Keith Goodman <kwg...@gm...> wrote:
>> Thanks for the code. I added matplotlib's yahoo historical quote code
>> to my labeled array package, la. While doing so I noticed a couple of
>> possible bugs:
>>
>> - The doc string for parse_yahoo_historical says that the volume is
>> adjusted. But I don't see a line of code that does the adjustment.
>
> We don't do the adjustment, Yahoo does. Eg, take a look at CROX
> around their 6/15/07 split.
>
> http://finance.yahoo.com/q/hp?s=CROX&a=05&b=1&c=2007&d=06&e=1&f=2007&g=d
>
> IDC reports consolidated volume on 6/14/07 (pre-split) was 4,366,319
> shares. Yahoo reports 8,726,000 -- which is close to 2x the raw
> volume (I assume the difference is in how some of the shares
> transacted on non-primary exchanges are counted). Likewise, on
> 6/13/07, IDC reports
> 7,852,268 and Yahoo reports 15,544,200, which is close to 2x. So it
> appears they are backward split adjusting the volume.
I knew it was worth it (to me) to report what I thought was a bug. Thanks.
Well, then perhaps the doc string needs tweaking?
 *adjusted*
 If True (default) replace open, close, high, low, and volume with
 their adjusted values.
 The adjustment is by a scale factor, S = adjusted_close/close.
 Adjusted volume is actual volume divided by S;
 Adjusted prices are actual prices multiplied by S. Hence,
 the product of price and volume is unchanged by the adjustment.
It does state that volume is adjusted by S (where S contains dividend
info). I take it that volume is the same whether adjusted is True or
False, which means that dollar volume is not unchanged.
From: John H. <jd...@gm...> - 2010年10月12日 16:23:46
On Tue, Oct 12, 2010 at 10:55 AM, Keith Goodman <kwg...@gm...> wrote:
> Thanks for the code. I added matplotlib's yahoo historical quote code
> to my labeled array package, la. While doing so I noticed a couple of
> possible bugs:
>
> - The doc string for parse_yahoo_historical says that the volume is
> adjusted. But I don't see a line of code that does the adjustment.
We don't do the adjustment, Yahoo does. Eg, take a look at CROX
around their 6/15/07 split.
 http://finance.yahoo.com/q/hp?s=CROX&a=05&b=1&c=2007&d=06&e=1&f=2007&g=d
IDC reports consolidated volume on 6/14/07 (pre-split) was 4,366,319
shares. Yahoo reports 8,726,000 -- which is close to 2x the raw
volume (I assume the difference is in how some of the shares
transacted on non-primary exchanges are counted). Likewise, on
6/13/07, IDC reports
7,852,268 and Yahoo reports 15,544,200, which is close to 2x. So it
appears they are backward split adjusting the volume.
> quotes_historical_yahoo builds an error message from a variable
> named "url" which doesn't exist in the scope of the function
Fixed -- this was a legacy error message when we used to pass in urls
but now pass in filehandles
> "import time" and "from matplotlib.cbook import is_string_like" are not used
Fixed.
Thanks for the report -- fixed on the branch (8742) and will be merged
to the trunk when MD resuscitates svnmerge....
JDH
From: Keith G. <kwg...@gm...> - 2010年10月12日 15:55:42
Thanks for the code. I added matplotlib's yahoo historical quote code
to my labeled array package, la. While doing so I noticed a couple of
possible bugs:
- The doc string for parse_yahoo_historical says that the volume is
adjusted. But I don't see a line of code that does the adjustment.
- quotes_historical_yahoo builds an error message from a variable
named "url" which doesn't exist in the scope of the function
- "import time" and "from matplotlib.cbook import is_string_like" are not used
I stripped down the code keeping only what I needed:
http://github.com/kwgoodman/la/blob/master/la/external/matplotlib.py
Here's a demo of how I use it:
 >>> from la.data.yahoo import quotes
 >>> lar = quotes(['aapl', 'msft'], (2010,10,1), (2010,10,5))
 >>> lar
 label_0
 aapl
 msft
 label_1
 open
 close
 high
 low
 volume
 label_2
 2010年10月01日
 2010年10月04日
 2010年10月05日
 x
 array([[[ 2.86150000e+02, 2.81600000e+02, 2.82000000e+02],
 [ 2.82520000e+02, 2.78640000e+02, 2.88940000e+02],
 [ 2.86580000e+02, 2.82900000e+02, 2.89450000e+02],
 [ 2.81350000e+02, 2.77770000e+02, 2.81820000e+02],
 [ 1.60051000e+07, 1.55256000e+07, 1.78743000e+07]],
 [[ 2.47700000e+01, 2.39600000e+01, 2.40600000e+01],
 [ 2.43800000e+01, 2.39100000e+01, 2.43500000e+01],
 [ 2.48200000e+01, 2.39900000e+01, 2.44500000e+01],
 [ 2.43000000e+01, 2.37800000e+01, 2.39100000e+01],
 [ 6.26236000e+07, 9.80868000e+07, 7.80329000e+07]]])
 >>> close = lar.lix[:,['close']]
 >>> close
 label_0
 aapl
 msft
 label_1
 2010年10月01日
 2010年10月04日
 2010年10月05日
 x
 array([[ 282.52, 278.64, 288.94],
 [ 24.38, 23.91, 24.35]])
 Calculate the log return from the close prices:
 >>> ret = close / close.lag(1, axis=-1)
 >>> ret = ret.log()
 >>> ret
 label_0
 aapl
 msft
 label_1
 2010年10月04日
 2010年10月05日
 x
 array([[-0.01382872, 0.03629843],
 [-0.01946634, 0.01823507]])

Showing 5 results of 5

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /