0

我正在建立一个股票分析网站来使用股票信息,例如价格历史等。一旦我获得数据,我将实施一些我自己的算法,但我在获取历史数据时遇到了麻烦。该网站托管在免费的网络托管上biz.nf. 包含的 connect.php 文件包含所有需要的 sql 信息并连接到数据库。我在那里进行了错误检查,所以我知道那不是问题所在。我还尝试手动复制/粘贴链接,它们可以正常工作,因此我正在正确创建 URL。我在这个网站和其他网站上遇到了一些类似的主题,但我没有看到如何解决它的明确解决方案或它发生的明确原因。雅虎是不是屏蔽了我?还,我想提一下,我对 php 编程很陌生,但我在 C 和 C++ 方面有很深的背景,所以如果可以的话,请在提供任何帮助时考虑这一点。提前致谢!

这是我执行的 index.php 文件的代码

代码:

<html>
  <head>
    <title>StockGrader</title>
  </head>
    <body bgcolor="green"  text="black" link="red">
      <div id="header">
          <hr>
             <h1>Welcome To <b><i>StockGrader</b></i><h1/></hr>

<?php
  include("phpINCLUDES/connect.php");

//function that creates a url from which to download data
  function createURL($ticker) 
  {       $currentMonth = date("n") - 1; //"n" current month as a 1-digit number
          $currentDay = date("j");       //"j" current day as a 1-digit number
          $currentYear = date("Y");      //"Y" current year as a 4-digit number
          echo "current URL is http://ichart.finance.yahoo.com/table.csv?s=$ticker&d=$currentMonth&e=$currentDay&f=$currentYear&g=d&a=3&b=10&c=2013&ignore=.csv";
          echo "\n\n\n";
          return "http://ichart.finance.yahoo.com/table.csv?s=$ticker&d=$currentMonth&e=$currentDay&f=$currentYear&g=d&a=3&b=10&c=2013&ignore=.csv";
  }

//function to download data from a url and store into a file
  function getCSVFile($URL, $outputFile) 
  {
      **$content = file_get_contents($URL);**     //goes to the file located at this link and downloads the full file contents as a string of data

      //replace a string which is the first parameter with the string in the second parameter. the string being replaced is in the third parameter
      $content = str_replace("Date,Open,High,Low,Close,Volume,Adj Close","", $content);

      //removes all white space
      $content = trim($content);

      //write a string into a file
      file_put_contents($outputFile, $content);      
  }

  function fileToDatabase($txtFile, $tableName)
  {
          $file = fopen($txtFile, "r");

          while(!feof($file))
          {
              $line = fgets($file);

              //separates a string 
              $pieces = explode(",", $line);

              //stock variables
              $date = $pieces[0];
              $open = $pieces[1];
              $high = $pieces[2];
              $low = $pieces[3];
              $close = $pieces[4];
              $volume = $pieces[5];
              // $adjclose = $pieces[6];   WE ARE NOT GOING TO USE THIS ONE USUALLY
              $amount_change = $close - $open;
              if($open!=0)
              { $percent_change = ($amount_change/$open)*100; }
              else $percent_change = 99999;


              //check if table exists or not
              $sql = "SELECT * FROM $tableName";
              $result = mysql_query($sql); 

              //if table doesn't exist
              if(!$result) 
              {
                  $sql_2 = "CREATE TABLE $tableName (date DATE , PRIMARY KEY(date), open FLOAT, high FLOAT, low FLOAT, close FLOAT, volume INT, amount_change FLOAT, percent_change FLOAT)";
                  mysql_query($sql_2);
              }

              //insert into table
              $sql_3 = "INSERT INTO $tableName(date, open, high, low, close, volume, amount_change, percent_change) VALUES ('$date','$open','$high','$low','$close','$volume','$amount_change','$percent_change')";
              mysql_query(sql_3);
          }
          fclose($file);
  }

  function main()
  {
    //i don't have this file yet
      $mainTickerFile = fopen("tickerMaster.txt","r");
      while(!feof($mainTickerFile))
      {
          $companyTicker = fgets($mainTickerFile);
          $companyTicker = trim($companyTicker);    //trim whitespace just in case

          $fileURL = createURL($companyTicker);    //create url for each stock ticker
          //create a directory path to each file for each ticker
          $companyTxtFile = "txtFiles/".$companyTicker.".txt";           //I NEED TO CREATE THIS FOLDER ON MY SERVER

          getCSVFile($fileURL, $companyTxtFile);

          fileToDatabase($companyTxtFile, $companyTicker);
      }
  }

  main();
?>


              <p><a href="secondpage.html">Run Script</a></p>
     </div>
 </body>
</html>

这是我得到的错误:

[function.file-get-contents]: failed to open stream: Connection refused in /srv/disk12/1368341/www/nemanja.co.nf/index.php on line 26

我在发生错误的地方以粗体显示文本(每边 2 个星号)。

此外,托管该网站的服务器具有 allow_url_fopen = 1 如果是这种情况 yahoo.com 阻止了我,有没有办法解决这个问题?是否有另一种获取所有历史股票数据的方法?

4

1 回答 1

1

您确定您的共享主机允许连接到远程 url - 不太可能

大多数共享主机往往不会在 php.ini 中将 allow_url_fopen 设置为 true

也许尝试使用 curl 代替

于 2013-04-18T20:17:08.807 回答