Jump to content

Recommended Posts

Dear friends,

 

I have been helped to modify two codes out of which one is working and I need help on the other one.

 

Working code: It connects to yahoo website and pulls required data based on the string "sl1c1p2ohgpvjk" where:

s=Symbol

l1=Current market price

c1=Change

p2=Change %

o=Open

h=High

g=Low

p=Previous Close

v=Volume

j=52 week low

k=52 week high

 

Attached 3 files: 1.php (working code) 2.php (need help) 3.symbols.txt

 

Here is the working code:

 

<?php
    $arr = array
('20MICRONS.NS','3IINFOTEC.NS','3MINDIA.NS','AARTIDRUG.NS','AARTIIND.NS','ABAN.NS','ABB.NS');

    $url= "http://in.finance.yahoo.com/d/quotes.csv?s=".implode("+",$arr)."&f="."sl1c1p2ohgpvjk";

    echo "<table>";
    echo "<b><th>Symbol</th> <th>Market Price</th> <th>Change</th> <th>Change %</th> <th>Open</th> <th>High</th> <th>Low</th> <th>Previous Close</th> <th>Volume</th> <th>52 Week Low</th> <th>52 Week High</th></b>"; 
    $handle = fopen($url, "r");
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
    {
        echo "<tr>";
        foreach($data as $d)
            echo "<td>$d</td>";
        echo "</tr>";
    }
    fclose($handle);
    echo "</table>";
?>

 

Another code: It does the same as above. The only difference is that, the above code gets data of only 7 companies and this one gets data of 100 companies. Changes made in this code is that the array is taken from an external "symbols.txt" file and it fetches 50 records in one go because yahoo limits to 50 companies at a time in one query.

 

<?php
$fo=fopen("symbols.txt","r"); 
while ($line = fgets($fo))  {   
  $arr[] = $line;   
  if (count($arr) >= 50) {   

    $url= "http://in.finance.yahoo.com/d/quotes.csv?s=".implode("+", $arr)."&f="."sl1c1p2ohgpvjk";
    echo "<table>";
    echo "<b><th>Symbol</th> <th>Market Price</th> <th>Change</th> <th>Change %</th> <th>Open</th> <th>High</th> <th>Low</th> <th>Previous Close</th> <th>Volume</th> <th>52 Week Low</th> <th>52 Week High</th></b>"; 
    $handle = fopen($url, "r");
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
    {
        echo "<tr>";
        foreach($data as $d)
            echo "<td>$d</td>";
        echo "</tr>";
    }
    fclose($handle);
    echo "</table>";
    $arr = NULL;      
  }
}
?>

 

I need help on the following:

 

1. Unable to get data from the second code. It lists the companies but doesn't get the "sl1c1p2ohgpvjk" data.

2. Creates two different tables for 100 companies whereas I want all data in one table so that an user can sort all of them based on his/her requirement.

3. symbols.txt file actually has 106 symbols. It pulls data for first 100 and the last 6 are ignored. How can I get them to show up on the table?

 

Thank you

 

[attachment deleted by admin]

Link to comment
https://forums.phpfreaks.com/topic/137666-help-me-modify-the-code/
Share on other sites

this code solves #1 and #2. For #3 i think we need to get the loop to run an extra time.

 

<?php
echo "<table>";
echo "<b><th>Symbol</th> <th>Market Price</th> <th>Change</th> <th>Change %</th> <th>Open</th> <th>High</th> <th>Low</th> <th>Previous Close</th> <th>Volume</th> <th>52 Week Low</th> <th>52 Week High</th></b>";
$fo=fopen("symbols.txt","r"); 
while ($line = fgets($fo))  {   
  $arr[] = str_replace(array('_','&'),array('',''),trim($line));   
  if (count($arr) >= 50) {   

    $url= "http://in.finance.yahoo.com/d/quotes.csv?s=".trim(implode("+", $arr))."&f="."sl1c1p2ohgpvjk";

    $handle = fopen($url, "r");
    while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
    {
        echo "<tr>";
        foreach($data as $d)
            echo "<td>$d</td>";
        echo "</tr>";
    }
    fclose($handle);
    
    $arr = NULL;      
  }

}
echo "</table>";
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.