Re: [GNC] Price quotes

2023-05-22 Thread Keith Bellairs
Thanks. The FQ update fixed it (for now, I guess).

Keith

On Mon, May 22, 2023 at 1:26 PM Kalpesh Patel  wrote:

> F::Q was updated to version 1.55 which has a fix in it, albeit most likely
> short term until Yahoo shuts off that spigot. In any platform you can
> install/upgrade F::Q manually. Just run following two commands in CMD or
> shell 
>
> perl -MCPAN -e shell
> install Finance::Quote
>
> # first command will put you in the CPAN command prompt. If doing so for
> first time, accept all defaults which are likely to work fine as they are
> sane setting.
> # second command should install module and missing dependencies, and
> upgrade
> any dependencies if out of date.
>
>
>
> For Windows platform this is what it should look like:
>
> Microsoft Windows [Version 10.0.22621.1702]
> (c) Microsoft Corporation. All rights reserved.
>
> C:\Users\kalpesh>perl -MCPAN -e shell
> Unable to get Terminal Size. The Win32 GetConsoleScreenBufferInfo call
> didn't work. The COLUMNS and LINES environment variables didn't work. at
> C:\Strawberry\perl\vendor\lib/Term/ReadLine/readline.pm line 410.
>
> cpan shell -- CPAN exploration and modules installation (v2.28)
> Enter 'h' for help.
>
> cpan> install Finance::Quote
> Database was generated on Mon, 22 May 2023 03:54:49 GMT
> Finance::Quote is up to date (1.55).
>
> cpan>exit
> C:\Users\kalpesh>
>
>
> PS: there has been lengthy conversation about yahoo_json not working on
> this
> list and a workaround/temporary fix for it. BTW it is not the modules fault
> that it is not working. Yahoo now requires a cookie and a matching crumb in
> order for API to work properly on the back-end.
>
>
> -----Original Message-
> From: Murugan Muruganandam 
> Sent: Monday, May 22, 2023 10:55 AM
> To: Keith Bellairs ; gnucash-user email group
> 
> Subject: Re: [GNC] Price quotes
>
> Keith
>
> you need to give more details on the GNU version and also the Finance quote
> version.  if you have not updated, you need to get the latest version where
> the yahoo issue is fixed
>
>
>
>
> Saludos Cordiales
>
>
> Murugan
>
> 
> From: gnucash-user
>  on behalf of
> Keith Bellairs 
> Sent: Sunday, May 21, 2023 3:40 PM
> To: gnucash-user email group 
> Subject: [GNC] Price quotes
>
> I was using yahoo_json and it started failing to return anything. I
> switched
> my securities over to Alphavantage and it works. But it is an order of
> magnitude slower.Any word on Yahoo?
>
> Keith
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
>
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price quotes

2023-05-22 Thread R Losey
If you use Alphavantage, there is a one-minute delay for each 5 securities.
Thus, when I check 12 securities, I have a delay of well over two minutes.
Back when JSON was working, it only took seconds.


On Mon, May 22, 2023 at 6:34 AM Keith Bellairs  wrote:

> I was using yahoo_json and it started failing to return anything. I
> switched my securities over to Alphavantage and it works. But it is an
> order of magnitude slower.Any word on Yahoo?
>
> Keith
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>


-- 
_
Richard Losey
rlo...@gmail.com
Micah 6:8
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price quotes

2023-05-22 Thread Kalpesh Patel
sudo should NOT be used to install perl modules at all (no elevated permissions 
are required in any platform). 

apt is an Ubuntu OS package manager; CPAN is a perl module manager which 
amongst many packages might be installed using the OS package manager. If you 
upgrade the perl version then you will have to install the F::Q module in that 
new version as well and has no relation with future apt updates. They are two 
different and independent work flows.   
 

-Original Message-
From: Jour Maken  
Sent: Monday, May 22, 2023 1:33 PM
To: gnucash-user@gnucash.org
Subject: Re: [GNC] Price quotes

Thank you for the F::Q update method. On Ubuntu Linux 22.04 LTS, would this 
need to be run with sudo, and would future apt updates be affected?

Regards,
Divakar


On 22/05/23 22:56, Kalpesh Patel wrote:
> F::Q was updated to version 1.55 which has a fix in it, albeit most 
> likely short term until Yahoo shuts off that spigot. In any platform 
> you can install/upgrade F::Q manually. Just run following two commands 
> in CMD or shell 
>
> perl -MCPAN -e shell
> install Finance::Quote
>
> # first command will put you in the CPAN command prompt. If doing so 
> for first time, accept all defaults which are likely to work fine as 
> they are sane setting.
> # second command should install module and missing dependencies, and 
> upgrade any dependencies if out of date.
>
>
>
> For Windows platform this is what it should look like:
>
> Microsoft Windows [Version 10.0.22621.1702]
> (c) Microsoft Corporation. All rights reserved.
>
> C:\Users\kalpesh>perl -MCPAN -e shell
> Unable to get Terminal Size. The Win32 GetConsoleScreenBufferInfo call 
> didn't work. The COLUMNS and LINES environment variables didn't work. 
> at C:\Strawberry\perl\vendor\lib/Term/ReadLine/readline.pm line 410.
>
> cpan shell -- CPAN exploration and modules installation (v2.28) Enter 
> 'h' for help.
>
> cpan> install Finance::Quote
> Database was generated on Mon, 22 May 2023 03:54:49 GMT Finance::Quote 
> is up to date (1.55).
>
> cpan>exit
> C:\Users\kalpesh>
>
>
> PS: there has been lengthy conversation about yahoo_json not working 
> on this list and a workaround/temporary fix for it. BTW it is not the 
> modules fault that it is not working. Yahoo now requires a cookie and 
> a matching crumb in order for API to work properly on the back-end.
>
>
> -----Original Message-
> From: Murugan Muruganandam 
> Sent: Monday, May 22, 2023 10:55 AM
> To: Keith Bellairs ; gnucash-user email group 
> 
> Subject: Re: [GNC] Price quotes
>
> Keith
>
> you need to give more details on the GNU version and also the Finance 
> quote version.  if you have not updated, you need to get the latest 
> version where the yahoo issue is fixed
>
>
>
>
> Saludos Cordiales
>
>
> Murugan
>
> 
> From: gnucash-user
>  on 
> behalf of Keith Bellairs 
> Sent: Sunday, May 21, 2023 3:40 PM
> To: gnucash-user email group 
> Subject: [GNC] Price quotes
>
> I was using yahoo_json and it started failing to return anything. I 
> switched my securities over to Alphavantage and it works. But it is an 
> order of magnitude slower.Any word on Yahoo?
>
> Keith
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price quotes

2023-05-22 Thread Jour Maken
Thank you for the F::Q update method. On Ubuntu Linux 22.04 LTS, would 
this need to be run with sudo, and would future apt updates be affected?


Regards,
Divakar


On 22/05/23 22:56, Kalpesh Patel wrote:

F::Q was updated to version 1.55 which has a fix in it, albeit most likely
short term until Yahoo shuts off that spigot. In any platform you can
install/upgrade F::Q manually. Just run following two commands in CMD or
shell 

perl -MCPAN -e shell
install Finance::Quote

# first command will put you in the CPAN command prompt. If doing so for
first time, accept all defaults which are likely to work fine as they are
sane setting.
# second command should install module and missing dependencies, and upgrade
any dependencies if out of date.



For Windows platform this is what it should look like:

Microsoft Windows [Version 10.0.22621.1702]
(c) Microsoft Corporation. All rights reserved.

C:\Users\kalpesh>perl -MCPAN -e shell
Unable to get Terminal Size. The Win32 GetConsoleScreenBufferInfo call
didn't work. The COLUMNS and LINES environment variables didn't work. at
C:\Strawberry\perl\vendor\lib/Term/ReadLine/readline.pm line 410.

cpan shell -- CPAN exploration and modules installation (v2.28)
Enter 'h' for help.

cpan> install Finance::Quote
Database was generated on Mon, 22 May 2023 03:54:49 GMT
Finance::Quote is up to date (1.55).

cpan>exit
C:\Users\kalpesh>


PS: there has been lengthy conversation about yahoo_json not working on this
list and a workaround/temporary fix for it. BTW it is not the modules fault
that it is not working. Yahoo now requires a cookie and a matching crumb in
order for API to work properly on the back-end.


-Original Message-
From: Murugan Muruganandam 
Sent: Monday, May 22, 2023 10:55 AM
To: Keith Bellairs ; gnucash-user email group

Subject: Re: [GNC] Price quotes

Keith

you need to give more details on the GNU version and also the Finance quote
version.  if you have not updated, you need to get the latest version where
the yahoo issue is fixed




Saludos Cordiales


Murugan


From: gnucash-user
 on behalf of
Keith Bellairs 
Sent: Sunday, May 21, 2023 3:40 PM
To: gnucash-user email group 
Subject: [GNC] Price quotes

I was using yahoo_json and it started failing to return anything. I switched
my securities over to Alphavantage and it works. But it is an order of
magnitude slower.Any word on Yahoo?

Keith
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price quotes

2023-05-22 Thread Kalpesh Patel
F::Q was updated to version 1.55 which has a fix in it, albeit most likely
short term until Yahoo shuts off that spigot. In any platform you can
install/upgrade F::Q manually. Just run following two commands in CMD or
shell  

perl -MCPAN -e shell  
install Finance::Quote

# first command will put you in the CPAN command prompt. If doing so for
first time, accept all defaults which are likely to work fine as they are
sane setting.
# second command should install module and missing dependencies, and upgrade
any dependencies if out of date. 



For Windows platform this is what it should look like:

Microsoft Windows [Version 10.0.22621.1702]
(c) Microsoft Corporation. All rights reserved.

C:\Users\kalpesh>perl -MCPAN -e shell
Unable to get Terminal Size. The Win32 GetConsoleScreenBufferInfo call
didn't work. The COLUMNS and LINES environment variables didn't work. at
C:\Strawberry\perl\vendor\lib/Term/ReadLine/readline.pm line 410.

cpan shell -- CPAN exploration and modules installation (v2.28)
Enter 'h' for help.

cpan> install Finance::Quote
Database was generated on Mon, 22 May 2023 03:54:49 GMT
Finance::Quote is up to date (1.55).

cpan>exit
C:\Users\kalpesh>


PS: there has been lengthy conversation about yahoo_json not working on this
list and a workaround/temporary fix for it. BTW it is not the modules fault
that it is not working. Yahoo now requires a cookie and a matching crumb in
order for API to work properly on the back-end.


-Original Message-
From: Murugan Muruganandam  
Sent: Monday, May 22, 2023 10:55 AM
To: Keith Bellairs ; gnucash-user email group

Subject: Re: [GNC] Price quotes

Keith

you need to give more details on the GNU version and also the Finance quote
version.  if you have not updated, you need to get the latest version where
the yahoo issue is fixed




Saludos Cordiales


Murugan


From: gnucash-user
 on behalf of
Keith Bellairs 
Sent: Sunday, May 21, 2023 3:40 PM
To: gnucash-user email group 
Subject: [GNC] Price quotes

I was using yahoo_json and it started failing to return anything. I switched
my securities over to Alphavantage and it works. But it is an order of
magnitude slower.Any word on Yahoo?

Keith
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price quotes

2023-05-22 Thread Murugan Muruganandam
Keith

you need to give more details on the GNU version and also the Finance quote 
version.  if you have not updated, you need to get the latest version where the 
yahoo issue is fixed




Saludos Cordiales


Murugan


From: gnucash-user 
 on behalf of 
Keith Bellairs 
Sent: Sunday, May 21, 2023 3:40 PM
To: gnucash-user email group 
Subject: [GNC] Price quotes

I was using yahoo_json and it started failing to return anything. I
switched my securities over to Alphavantage and it works. But it is an
order of magnitude slower.Any word on Yahoo?

Keith
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Price quotes

2023-05-22 Thread Keith Bellairs
I was using yahoo_json and it started failing to return anything. I
switched my securities over to Alphavantage and it works. But it is an
order of magnitude slower.Any word on Yahoo?

Keith
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price Quotes

2023-04-20 Thread Fross, Michael
I see there is a F::Q module for IEXCloud.  I've used this with an open
source program I wrote to pull down quotes from the command line
successfully.  However I don't see a way for a user to do this in GNUCash.
Is there a way to configure GNUCash to select other F::Q modules?

Regards,

Michael

On Thu, Apr 20, 2023 at 7:14 AM Frank H. Ellenberger <
frank.h.ellenber...@gmail.com> wrote:

> Hi,
>
> nice to see you found a workaround.
> The answer to your original posting is in
> https://lists.gnucash.org/pipermail/gnucash-user/2023-April/106571.html
>
> Regrds
> Frank
>
> Am 20.04.23 um 04:55 schrieb Steve Miller:
> > Re the price quote issue w yahoo json, in the big picture is no biggie,
> > cause alphaadvantage seems to work just fine, so will just switch all
> over
> > tomorrow to that source...
> >
> > On Wed, Apr 19, 2023 at 7:06 PM Steve Miller <
> srmnonessential2...@gmail.com>
> > wrote:
> >
> >> Running Version: 4.14
> >> Build ID: 4.14+(2023-03-25)
> >> Finance::Quote: 1.53
> >>
> >> *Never, ever got this before... did something break???  I've changed
> >> nothing!  Help!  Have always used Yahoo json...*
> >>
> >> [image: Screenshot 2023-04-19 190342.png]
> >>
> >
> >
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price Quotes

2023-04-20 Thread Frank H. Ellenberger

Hi,

nice to see you found a workaround.
The answer to your original posting is in
https://lists.gnucash.org/pipermail/gnucash-user/2023-April/106571.html

Regrds
Frank

Am 20.04.23 um 04:55 schrieb Steve Miller:

Re the price quote issue w yahoo json, in the big picture is no biggie,
cause alphaadvantage seems to work just fine, so will just switch all over
tomorrow to that source...

On Wed, Apr 19, 2023 at 7:06 PM Steve Miller 
wrote:


Running Version: 4.14
Build ID: 4.14+(2023-03-25)
Finance::Quote: 1.53

*Never, ever got this before... did something break???  I've changed
nothing!  Help!  Have always used Yahoo json...*

[image: Screenshot 2023-04-19 190342.png]




___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price Quotes

2023-04-19 Thread Steve Miller
Re the price quote issue w yahoo json, in the big picture is no biggie,
cause alphaadvantage seems to work just fine, so will just switch all over
tomorrow to that source...

On Wed, Apr 19, 2023 at 7:06 PM Steve Miller 
wrote:

> Running Version: 4.14
> Build ID: 4.14+(2023-03-25)
> Finance::Quote: 1.53
>
> *Never, ever got this before... did something break???  I've changed
> nothing!  Help!  Have always used Yahoo json...*
>
> [image: Screenshot 2023-04-19 190342.png]
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Price Quotes

2023-04-19 Thread Steve Miller
Running Version: 4.14
Build ID: 4.14+(2023-03-25)
Finance::Quote: 1.53

*Never, ever got this before... did something break???  I've changed
nothing!  Help!  Have always used Yahoo json...*

[image: Screenshot 2023-04-19 190342.png]
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price Quotes

2020-07-02 Thread Les

Thanks David. That works.


On 7/2/20 8:13 PM, David H wrote:

Les,

If you're asking where to enter your Alpha Vantage API Key go to 
Preferences >> Online Quotes and add it.


Cheers David H.


On Fri, 3 Jul 2020 at 10:48, Les > wrote:


An update:  I discovered that Flatpak has upgraded GC to the 4.0
version.  I assume this is the issue.

Would someone point me to the instructions for installing
AlphaVantage
on Linux Mint?

Thanks,

Les

On 7/2/20 4:59 PM, Les wrote:
> I have been using Yahoo as JSON for well over a year and now,
today,
> when I tried to download quotes, I received an error indicating 
that
> AlphaVantage needed to be installed for quotes. It is true that
I had
> the SSD crash about three weeks ago and reinstalled Linux Mint 19.3
> along with GC. via Flatpak.  Since then the only problem I had
> downloading prices was HKD.
>
> So, what has changed since yesterday?
>
> Although I have an AlphaVantage API, I haven't used it for a long
> time.  I think it was when the API was limiting the number of
prices.
>
> Any assistance with this issue would be greatly appreciated.
>
> Thanks,
>
> Les
>
___
gnucash-user mailing list
gnucash-user@gnucash.org 
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price Quotes

2020-07-02 Thread David H
Les,

If you're asking where to enter your Alpha Vantage API Key go to
Preferences >> Online Quotes and add it.

Cheers David H.


On Fri, 3 Jul 2020 at 10:48, Les  wrote:

> An update:  I discovered that Flatpak has upgraded GC to the 4.0
> version.  I assume this is the issue.
>
> Would someone point me to the instructions for installing AlphaVantage
> on Linux Mint?
>
> Thanks,
>
> Les
>
> On 7/2/20 4:59 PM, Les wrote:
> > I have been using Yahoo as JSON for well over a year and now, today,
> > when I tried to download quotes, I received an error indicating  that
> > AlphaVantage needed to be installed for quotes. It is true that I had
> > the SSD crash about three weeks ago and reinstalled Linux Mint 19.3
> > along with GC. via Flatpak.  Since then the only problem I had
> > downloading prices was HKD.
> >
> > So, what has changed since yesterday?
> >
> > Although I have an AlphaVantage API, I haven't used it for a long
> > time.  I think it was when the API was limiting the number of prices.
> >
> > Any assistance with this issue would be greatly appreciated.
> >
> > Thanks,
> >
> > Les
> >
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Price Quotes

2020-07-02 Thread Les
An update:  I discovered that Flatpak has upgraded GC to the 4.0 
version.  I assume this is the issue.


Would someone point me to the instructions for installing AlphaVantage 
on Linux Mint?


Thanks,

Les

On 7/2/20 4:59 PM, Les wrote:
I have been using Yahoo as JSON for well over a year and now, today, 
when I tried to download quotes, I received an error indicating  that 
AlphaVantage needed to be installed for quotes. It is true that I had 
the SSD crash about three weeks ago and reinstalled Linux Mint 19.3 
along with GC. via Flatpak.  Since then the only problem I had 
downloading prices was HKD.


So, what has changed since yesterday?

Although I have an AlphaVantage API, I haven't used it for a long 
time.  I think it was when the API was limiting the number of prices.


Any assistance with this issue would be greatly appreciated.

Thanks,

Les


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Price Quotes

2020-07-02 Thread Les
I have been using Yahoo as JSON for well over a year and now, today, 
when I tried to download quotes, I received an error indicating  that 
AlphaVantage needed to be installed for quotes. It is true that I had 
the SSD crash about three weeks ago and reinstalled Linux Mint 19.3 
along with GC. via Flatpak.  Since then the only problem I had 
downloading prices was HKD.


So, what has changed since yesterday?

Although I have an AlphaVantage API, I haven't used it for a long time.  
I think it was when the API was limiting the number of prices.


Any assistance with this issue would be greatly appreciated.

Thanks,

Les

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.