Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Intraday Error

I can see that there was another user from July 31 that had Intraday issues, but mine seems different.

I can confirm that I am using the April 17, 2024 GetQuotes-YahooIntraday.ps1, and also that there is no YahooIntraday.txt file in the directory indicated.



Thank you for any suggestions.

Comments

  • You can safely ignore this error - it has absolutely no impact.
    There was a quick fix I released that contained small bug - attempted to check file size and delete yahoo intraday file even when file did not exists.

    If you want to fix this issue manually, you can edit file GetQuotes-YahooIntraday.ps1 and replace line 52 with following lines:
    if (Test-Path -Path $quoteIDFile) {
        $fc = Get-Item -Path $quoteIDFile; if ($fc.Length -eq 0) {Remove-Item -Path $quoteIDFile;} # Removing file when size is 0;
    }
    
    
  • Thank you. As long as I know it doesn't impact anything, I will leave well enough alone :)
Sign In or Register to comment.