├── frontend ├── src │ ├── index.css │ ├── Body.jsx │ ├── Contact.css │ ├── About.css │ ├── Contact.jsx │ ├── main.jsx │ ├── UserContext.jsx │ ├── index.jsx │ ├── Footer.jsx │ ├── Home.jsx │ ├── Dashboard │ │ ├── Card.css │ │ ├── Card.jsx │ │ ├── Learn.css │ │ ├── Learn.jsx │ │ ├── Stock.css │ │ ├── Dash.css │ │ ├── Dashboard.jsx │ │ ├── Stock.jsx │ │ ├── Portfolio.css │ │ └── Portfolio.jsx │ ├── About.jsx │ ├── App.css │ ├── Header.css │ ├── Header.jsx │ ├── App.jsx │ ├── Home.css │ ├── Login.css │ ├── Register.jsx │ ├── Login.jsx │ └── assets │ │ └── react.svg ├── vite.config.js ├── index.html ├── README.md ├── package.json ├── eslint.config.js └── public │ └── vite.svg ├── sample.pptx ├── screenshots ├── Picture1.png ├── Picture2.png ├── Picture3.png ├── Picture4.png ├── Picture5.png └── Picture6.png ├── backend └── 1-StockMarketInvestment │ ├── target │ ├── classes │ │ ├── com │ │ │ └── infosys │ │ │ │ ├── Application.class │ │ │ │ ├── entity │ │ │ │ └── Register.class │ │ │ │ ├── repo │ │ │ │ └── RegisterRepo.class │ │ │ │ ├── service │ │ │ │ ├── RegisterService.class │ │ │ │ └── RegisterServiceImp.class │ │ │ │ └── controller │ │ │ │ └── RegisterController.class │ │ ├── META-INF │ │ │ ├── MANIFEST.MF │ │ │ └── maven │ │ │ │ └── com.infosys │ │ │ │ └── 1-StockMarketInvestment │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ └── application.properties │ └── test-classes │ │ └── com │ │ └── infosys │ │ └── ApplicationTests.class │ ├── src │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── infosys │ │ │ └── ApplicationTests.java │ └── main │ │ ├── java │ │ └── com │ │ │ └── infosys │ │ │ ├── service │ │ │ ├── RegisterService.java │ │ │ └── RegisterServiceImp.java │ │ │ ├── Application.java │ │ │ ├── repo │ │ │ └── RegisterRepo.java │ │ │ ├── controller │ │ │ └── RegisterController.java │ │ │ └── entity │ │ │ └── Register.java │ │ └── resources │ │ └── application.properties │ ├── HELP.md │ ├── pom.xml │ ├── mvnw.cmd │ └── mvnw └── README.md /frontend/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/Body.jsx: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/src/Contact.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/About.css: -------------------------------------------------------------------------------- 1 | #p 2 | { 3 | font-size: 100px; 4 | } -------------------------------------------------------------------------------- /sample.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/sample.pptx -------------------------------------------------------------------------------- /screenshots/Picture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/screenshots/Picture1.png -------------------------------------------------------------------------------- /screenshots/Picture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/screenshots/Picture2.png -------------------------------------------------------------------------------- /screenshots/Picture3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/screenshots/Picture3.png -------------------------------------------------------------------------------- /screenshots/Picture4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/screenshots/Picture4.png -------------------------------------------------------------------------------- /screenshots/Picture5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/screenshots/Picture5.png -------------------------------------------------------------------------------- /screenshots/Picture6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/screenshots/Picture6.png -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vite.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/classes/com/infosys/Application.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/classes/com/infosys/Application.class -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/classes/com/infosys/entity/Register.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/classes/com/infosys/entity/Register.class -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/classes/com/infosys/repo/RegisterRepo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/classes/com/infosys/repo/RegisterRepo.class -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/test-classes/com/infosys/ApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/test-classes/com/infosys/ApplicationTests.class -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/classes/com/infosys/service/RegisterService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/classes/com/infosys/service/RegisterService.class -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/classes/com/infosys/service/RegisterServiceImp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/classes/com/infosys/service/RegisterServiceImp.class -------------------------------------------------------------------------------- /backend/1-StockMarketInvestment/target/classes/com/infosys/controller/RegisterController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvarajan-s-16/Stock-Market/HEAD/backend/1-StockMarketInvestment/target/classes/com/infosys/controller/RegisterController.class -------------------------------------------------------------------------------- /frontend/src/Contact.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | const Contact=()=> { 3 | return ( 4 | <> 5 |
9 |
Launch your ideas into the world with our platform.
10 | 11 |
7 | The future of India will be shaped by today’s younger generation who need quality education through digital literacy, making them productive and self-reliant citizens.
'Digital literacy' is the skills required to achieve digital competence and use of Information and Communication Technology (ICT) for work, leisure, learning and communication. It does not replace traditional forms of literacy, instead complements and amplifies the skills that form the foundation of traditional forms. Infosys Springboard is a free online learning platform that offers digital and professional skills training, including digital literacy, soft skills, life skills, and behavioral skills
8 |
{video.snippet.description}
47 |53 | Hello {userName}, what help do you need? We've added more features 54 | in the learning page. 55 |
56 |Just click and learn new technologies in the stock market.
57 |{error}
} 77 | 78 || Symbol | 82 |Open | 83 |High | 84 |Low | 85 |Close | 86 |Volume | 87 |
|---|---|---|---|---|---|
| {stockData.meta.symbol} | 94 |{stockData.values[0].open} | 95 |{stockData.values[0].high} | 96 |{stockData.values[0].low} | 97 |{stockData.values[0].close} | 98 |{stockData.values[0].volume || "N/A"} | 99 |
| No data available for this symbol | 104 ||||||
{error}
81 | ) : ( 82 || Date | 86 |Open | 87 |High | 88 |Low | 89 |Close | 90 |Volume | 91 |
|---|---|---|---|---|---|
| {item.datetime} | 98 |{item.open} | 99 |{item.high} | 100 |{item.low} | 101 |{item.close} | 102 |{item.volume || 'N/A'} | 103 |
| No data available for this symbol | 108 ||||||
{error}
119 | ) : ( 120 |{portfolio.description}
108 || Name | 141 |Purchase Price | 142 |Quantity | 143 |Current Price | 144 |Gain % | 145 |Value | 146 |Actions | 147 |
|---|---|---|---|---|---|---|
| {asset.name} | 153 |{asset.purchasePrice} | 154 |{asset.quantity} | 155 |{asset.currentPrice} | 156 |{asset.gainPercent} | 157 |{asset.value} | 158 |159 | 160 | | 161 |