Skip to content

Commit

Permalink
Merge pull request #5 from czetsuya/hotfix/pse_add_paging
Browse files Browse the repository at this point in the history
fix: ignore page numbers
  • Loading branch information
czetsuya authored Aug 27, 2021
2 parents 3370f72 + 37b8176 commit 16a4090
Show file tree
Hide file tree
Showing 7 changed files with 329 additions and 567 deletions.
11 changes: 4 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@

# Philippine Stock Exchange Daily Stock Quote Generator

A utility application that converts Philippine Stock Exchange daily stock quote pdf file into csv format that can be consume by Amibroker and other 3rd party graphing software.
A utility application that converts Philippine Stock Exchange daily stock quote pdf file into csv format that can be
consumed by Amibroker and other 3rd party graphing software.

## Usage

To run the application download the latest release zipped file from Github. Extract in a local directory.
To run the application download the latest release zipped file from GitHub. Extract in a local directory.

Copy the pdf that you wanted to parse in the same directory. Run the application and the csv files will be generated.

Expand All @@ -21,9 +22,5 @@ java -jar pse-extractor-<version>-jar-with-dependencies
```
## User Guide

- https://www.czetsuyatech.com/2019/12/pse-stockquote-to-amibroker.html
- https://www.czetsuyatech.com/2021/07/how-to-install-amibroker-for-pse.html
- Video Presentation: https://youtu.be/lMqNfCUa_cs

## Authors

* **Edward P. Legaspi** - *Java Architect* - [czetsuya](https://github.com/czetsuya)
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<build>
Expand Down Expand Up @@ -95,12 +95,12 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.7</version>
<version>1.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.8</version>
<version>1.9</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 16a4090

Please sign in to comment.