├── .DS_Store ├── .gitignore ├── .settings └── gradle │ └── org.springsource.ide.eclipse.gradle.core.prefs ├── FinanceStreamSimulator ├── .classpath ├── .gradle │ ├── 2.1 │ │ └── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── cache.properties.lock │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── outputFileStates.bin │ │ │ └── taskArtifacts.bin │ └── 2.2.1 │ │ └── taskArtifacts │ │ ├── cache.properties │ │ ├── cache.properties.lock │ │ ├── fileHashes.bin │ │ ├── fileSnapshots.bin │ │ ├── outputFileStates.bin │ │ └── taskArtifacts.bin ├── .project ├── .settings │ ├── gradle │ │ └── org.springsource.ide.eclipse.gradle.core.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.springframework.ide.eclipse.beans.core.prefs ├── .springBeans ├── FinanceStreamSimulator.iml ├── bin │ └── .gitignore ├── build.gradle ├── build │ ├── classes │ │ └── main │ │ │ └── io │ │ │ └── pivotal │ │ │ └── demo │ │ │ ├── ReplaySimulator.class │ │ │ ├── SimulatorApp.class │ │ │ └── StockPrice.class │ └── resources │ │ └── main │ │ ├── application.properties │ │ └── banner.txt ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── src │ └── main │ │ ├── java │ │ └── io │ │ │ └── pivotal │ │ │ └── demo │ │ │ ├── ReplaySimulator.java │ │ │ ├── SimulatorApp.java │ │ │ └── StockPrice.java │ │ └── resources │ │ ├── application.properties │ │ └── banner.txt ├── startSimulator.sh └── target │ └── .history ├── Geode.md ├── JavaFXClient ├── .classpath ├── .project ├── .settings │ └── gradle │ │ └── org.springsource.ide.eclipse.gradle.core.prefs ├── Geode.md ├── JavaFXClient.iml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── src │ └── main │ │ ├── java │ │ └── io │ │ │ └── pivotal │ │ │ └── demo │ │ │ ├── FinanceUI.java │ │ │ ├── GemFireClient.java │ │ │ ├── LineChartSample.java │ │ │ ├── PredictionListener.java │ │ │ └── StockListener.java │ │ └── resources │ │ ├── client.xml │ │ ├── client.xml.template │ │ ├── geode-logo.png │ │ └── style.css └── startGUI.sh ├── LICENSE ├── Readme.md ├── SparkML.md ├── SpringXD.md ├── StockInference-Spark.iml ├── StockInference-arch.png ├── StockInference ├── .DS_Store ├── .cache-main ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── gradle │ │ └── org.springsource.ide.eclipse.gradle.core.prefs │ ├── org.eclipse.jdt.core.prefs │ └── org.scala-ide.sdt.core.prefs ├── build.gradle ├── gradle.properties ├── gradle │ ├── downloads.gradle │ ├── information-online.gradle │ ├── plugins │ │ └── gradle-download-task-1.2.jar │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── src │ └── main │ │ ├── resources │ │ └── log4j.properties │ │ └── scala │ │ └── io │ │ └── pivotal │ │ └── demo │ │ ├── StockInferenceDemo.scala │ │ └── Utils.java └── tools │ └── gradle │ └── gradle-2.3-all │ └── w01pvxy5gty3tegjrai84pm3 │ ├── gradle-2.3-all.zip │ ├── gradle-2.3-all.zip.lck │ └── gradle-2.3-all.zip.ok ├── VM.md ├── Vagrantfile ├── Zeppelin.md ├── data ├── Predictions.gfd ├── Stocks.gfd ├── TechIndicators.gfd ├── deployFunctionVM.sh ├── setup.gfsh ├── startGeode.sh └── stopGeode.sh ├── gui.png ├── lib ├── gemfire-functions_2.10-0.5.0.jar └── gemfire-spark-connector_2.10-0.5.0.jar ├── sample └── streaming ├── evaluate.sh ├── startSpringXD.sh ├── stopSpringXD.sh ├── stream-create.sh ├── stream-create.xd ├── stream-destroy.sh ├── stream-destroy.xd ├── tech_indicators.R ├── train.sh └── transform.groovy /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/.gitignore -------------------------------------------------------------------------------- /.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs -------------------------------------------------------------------------------- /FinanceStreamSimulator/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.classpath -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri May 08 14:09:41 PDT 2015 2 | -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 08 15:31:33 PDT 2015 2 | -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /FinanceStreamSimulator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.project -------------------------------------------------------------------------------- /FinanceStreamSimulator/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs -------------------------------------------------------------------------------- /FinanceStreamSimulator/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /FinanceStreamSimulator/.settings/org.springframework.ide.eclipse.beans.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.settings/org.springframework.ide.eclipse.beans.core.prefs -------------------------------------------------------------------------------- /FinanceStreamSimulator/.springBeans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/.springBeans -------------------------------------------------------------------------------- /FinanceStreamSimulator/FinanceStreamSimulator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/FinanceStreamSimulator.iml -------------------------------------------------------------------------------- /FinanceStreamSimulator/bin/.gitignore: -------------------------------------------------------------------------------- 1 | /application.properties 2 | /banner.txt 3 | /io/ 4 | -------------------------------------------------------------------------------- /FinanceStreamSimulator/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/build.gradle -------------------------------------------------------------------------------- /FinanceStreamSimulator/build/classes/main/io/pivotal/demo/ReplaySimulator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/build/classes/main/io/pivotal/demo/ReplaySimulator.class -------------------------------------------------------------------------------- /FinanceStreamSimulator/build/classes/main/io/pivotal/demo/SimulatorApp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/build/classes/main/io/pivotal/demo/SimulatorApp.class -------------------------------------------------------------------------------- /FinanceStreamSimulator/build/classes/main/io/pivotal/demo/StockPrice.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/build/classes/main/io/pivotal/demo/StockPrice.class -------------------------------------------------------------------------------- /FinanceStreamSimulator/build/resources/main/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/build/resources/main/application.properties -------------------------------------------------------------------------------- /FinanceStreamSimulator/build/resources/main/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/build/resources/main/banner.txt -------------------------------------------------------------------------------- /FinanceStreamSimulator/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /FinanceStreamSimulator/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /FinanceStreamSimulator/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/gradlew -------------------------------------------------------------------------------- /FinanceStreamSimulator/src/main/java/io/pivotal/demo/ReplaySimulator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/src/main/java/io/pivotal/demo/ReplaySimulator.java -------------------------------------------------------------------------------- /FinanceStreamSimulator/src/main/java/io/pivotal/demo/SimulatorApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/src/main/java/io/pivotal/demo/SimulatorApp.java -------------------------------------------------------------------------------- /FinanceStreamSimulator/src/main/java/io/pivotal/demo/StockPrice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/src/main/java/io/pivotal/demo/StockPrice.java -------------------------------------------------------------------------------- /FinanceStreamSimulator/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/src/main/resources/application.properties -------------------------------------------------------------------------------- /FinanceStreamSimulator/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/FinanceStreamSimulator/src/main/resources/banner.txt -------------------------------------------------------------------------------- /FinanceStreamSimulator/startSimulator.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | gradle run 4 | 5 | 6 | -------------------------------------------------------------------------------- /FinanceStreamSimulator/target/.history: -------------------------------------------------------------------------------- 1 | exit 2 | -------------------------------------------------------------------------------- /Geode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/Geode.md -------------------------------------------------------------------------------- /JavaFXClient/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/.classpath -------------------------------------------------------------------------------- /JavaFXClient/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/.project -------------------------------------------------------------------------------- /JavaFXClient/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs -------------------------------------------------------------------------------- /JavaFXClient/Geode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/Geode.md -------------------------------------------------------------------------------- /JavaFXClient/JavaFXClient.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/JavaFXClient.iml -------------------------------------------------------------------------------- /JavaFXClient/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/build.gradle -------------------------------------------------------------------------------- /JavaFXClient/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /JavaFXClient/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /JavaFXClient/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/gradlew -------------------------------------------------------------------------------- /JavaFXClient/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/gradlew.bat -------------------------------------------------------------------------------- /JavaFXClient/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'JavaFXClient' 2 | 3 | -------------------------------------------------------------------------------- /JavaFXClient/src/main/java/io/pivotal/demo/FinanceUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/java/io/pivotal/demo/FinanceUI.java -------------------------------------------------------------------------------- /JavaFXClient/src/main/java/io/pivotal/demo/GemFireClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/java/io/pivotal/demo/GemFireClient.java -------------------------------------------------------------------------------- /JavaFXClient/src/main/java/io/pivotal/demo/LineChartSample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/java/io/pivotal/demo/LineChartSample.java -------------------------------------------------------------------------------- /JavaFXClient/src/main/java/io/pivotal/demo/PredictionListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/java/io/pivotal/demo/PredictionListener.java -------------------------------------------------------------------------------- /JavaFXClient/src/main/java/io/pivotal/demo/StockListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/java/io/pivotal/demo/StockListener.java -------------------------------------------------------------------------------- /JavaFXClient/src/main/resources/client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/resources/client.xml -------------------------------------------------------------------------------- /JavaFXClient/src/main/resources/client.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/resources/client.xml.template -------------------------------------------------------------------------------- /JavaFXClient/src/main/resources/geode-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/resources/geode-logo.png -------------------------------------------------------------------------------- /JavaFXClient/src/main/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/JavaFXClient/src/main/resources/style.css -------------------------------------------------------------------------------- /JavaFXClient/startGUI.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./gradlew run 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/Readme.md -------------------------------------------------------------------------------- /SparkML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/SparkML.md -------------------------------------------------------------------------------- /SpringXD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/SpringXD.md -------------------------------------------------------------------------------- /StockInference-Spark.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference-Spark.iml -------------------------------------------------------------------------------- /StockInference-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference-arch.png -------------------------------------------------------------------------------- /StockInference/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.DS_Store -------------------------------------------------------------------------------- /StockInference/.cache-main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.cache-main -------------------------------------------------------------------------------- /StockInference/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.classpath -------------------------------------------------------------------------------- /StockInference/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /StockInference/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.project -------------------------------------------------------------------------------- /StockInference/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.settings/gradle/org.springsource.ide.eclipse.gradle.core.prefs -------------------------------------------------------------------------------- /StockInference/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /StockInference/.settings/org.scala-ide.sdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/.settings/org.scala-ide.sdt.core.prefs -------------------------------------------------------------------------------- /StockInference/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/build.gradle -------------------------------------------------------------------------------- /StockInference/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradle.properties -------------------------------------------------------------------------------- /StockInference/gradle/downloads.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradle/downloads.gradle -------------------------------------------------------------------------------- /StockInference/gradle/information-online.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradle/information-online.gradle -------------------------------------------------------------------------------- /StockInference/gradle/plugins/gradle-download-task-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradle/plugins/gradle-download-task-1.2.jar -------------------------------------------------------------------------------- /StockInference/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /StockInference/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /StockInference/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradlew -------------------------------------------------------------------------------- /StockInference/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/gradlew.bat -------------------------------------------------------------------------------- /StockInference/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /StockInference/src/main/scala/io/pivotal/demo/StockInferenceDemo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/src/main/scala/io/pivotal/demo/StockInferenceDemo.scala -------------------------------------------------------------------------------- /StockInference/src/main/scala/io/pivotal/demo/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/src/main/scala/io/pivotal/demo/Utils.java -------------------------------------------------------------------------------- /StockInference/tools/gradle/gradle-2.3-all/w01pvxy5gty3tegjrai84pm3/gradle-2.3-all.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/StockInference/tools/gradle/gradle-2.3-all/w01pvxy5gty3tegjrai84pm3/gradle-2.3-all.zip -------------------------------------------------------------------------------- /StockInference/tools/gradle/gradle-2.3-all/w01pvxy5gty3tegjrai84pm3/gradle-2.3-all.zip.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StockInference/tools/gradle/gradle-2.3-all/w01pvxy5gty3tegjrai84pm3/gradle-2.3-all.zip.ok: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/VM.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/Vagrantfile -------------------------------------------------------------------------------- /Zeppelin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/Zeppelin.md -------------------------------------------------------------------------------- /data/Predictions.gfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/Predictions.gfd -------------------------------------------------------------------------------- /data/Stocks.gfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/Stocks.gfd -------------------------------------------------------------------------------- /data/TechIndicators.gfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/TechIndicators.gfd -------------------------------------------------------------------------------- /data/deployFunctionVM.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/deployFunctionVM.sh -------------------------------------------------------------------------------- /data/setup.gfsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/setup.gfsh -------------------------------------------------------------------------------- /data/startGeode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/startGeode.sh -------------------------------------------------------------------------------- /data/stopGeode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/data/stopGeode.sh -------------------------------------------------------------------------------- /gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/gui.png -------------------------------------------------------------------------------- /lib/gemfire-functions_2.10-0.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/lib/gemfire-functions_2.10-0.5.0.jar -------------------------------------------------------------------------------- /lib/gemfire-spark-connector_2.10-0.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/lib/gemfire-spark-connector_2.10-0.5.0.jar -------------------------------------------------------------------------------- /sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/sample -------------------------------------------------------------------------------- /streaming/evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/evaluate.sh -------------------------------------------------------------------------------- /streaming/startSpringXD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/startSpringXD.sh -------------------------------------------------------------------------------- /streaming/stopSpringXD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/stopSpringXD.sh -------------------------------------------------------------------------------- /streaming/stream-create.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | xd-shell --cmdfile stream-create.xd 4 | -------------------------------------------------------------------------------- /streaming/stream-create.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/stream-create.xd -------------------------------------------------------------------------------- /streaming/stream-destroy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | xd-shell --cmdfile stream-destroy.xd 4 | -------------------------------------------------------------------------------- /streaming/stream-destroy.xd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/stream-destroy.xd -------------------------------------------------------------------------------- /streaming/tech_indicators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/tech_indicators.R -------------------------------------------------------------------------------- /streaming/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/train.sh -------------------------------------------------------------------------------- /streaming/transform.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pivotal-Open-Source-Hub/StockInference-Spark/HEAD/streaming/transform.groovy --------------------------------------------------------------------------------