bretbouchard / yahoo-finance-managed

Automatically exported from code.google.com/p/yahoo-finance-managed
0 stars 0 forks source link

QuotesData.PreviewClose #62

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
QuoteDate.PreviewClose formula is : 
public virtual double PreviewClose
        {
            get { return this.LastTradePriceOnly - this.Change; }
        } 

Shouldn't it be :

public virtual double PreviewClose
        {
            get { return this.Open - this.Change; }
        } 

Couldnt't understand your formula. Also why are you not using the previous 
close directly from yahoo ??  Any issues .

As ever:
Thank you for your excelend AI!!

Original issue reported on code.google.com by r.guerra...@gmail.com on 7 Jun 2012 at 11:31