-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInternships.html
More file actions
118 lines (92 loc) · 4.71 KB
/
Internships.html
File metadata and controls
118 lines (92 loc) · 4.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<title>Internships</title>
</head>
<meta charset="utf-8" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"></link>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body{
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
opacity: 0;
transition: opacity .7s;
}
.col-10{
padding:0px !important;
}
.navbar{
border-bottom:1px solid white !important;
}
.nav-link{
font-size: 1.5rem;
}
</style>
<body style="background-color: black">
<div class="container text-white">
<nav class="navbar navbar-expand-lg navbar-dark py-2 px-0">
<a class="navbar-brand" href="index.html" style="font-size: 1.7rem">Jinit Shah</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link active" href="About.html">About</a></li>
<li class="nav-item"><a class="nav-link active" href="Projects.html">Projects</a></li>
<li class="nav-item"><a class="nav-link active" href="Internships.html"><strong>Internships</strong></a></li>
<li class="nav-item"><a class="nav-link active" href="Blog.html">Blog</a></li>
</ul>
</div>
</nav>
<br><br>
<div class="internships text-white">
<div class="text-left">
<div style="padding-bottom:25px;border-bottom:1px solid white;">
<div class="display-4">PayPal</div>
<br>
<div style="font-size: 1.6rem;">May 2020 - June 2020</div>
<div style="font-size: 1.4rem;">
As a part of my internship at Paypal, I worked on forecast of wallet deposits. <br>
Developed a couple of models : ARIMA (Auto-Regressive Integrated Moving-Average) and regression based model. Wrote the ARIMA model from scratch in python. It was well suited to the data and gave accurate results. <br>
I wrote an article on it, you can read it <a href="Blog/ARIMA.html">here</a>. The complete project report of our group can be found <a href="https://docs.google.com/document/d/1vNBG_gi9bgnCMUhL26S9cthIxy4rpulBY366DicSiyU/edit#heading=h.x1yll2pyytfg">here</a>. For a detailed analysis of the code, click <a href="https://github.com/jinit24/ARIMA-Model">here</a>.<br>
<b>Technologies used : Python (Numpy, Pandas) <br></b><br>
</div>
</div>
</div>
<br>
<div class="text-left">
<div class="display-4">Finpeg </div>
<br>
<div style="font-size: 1.6rem;">May 2020 - June 2020</div>
<div style="font-size: 1.4rem;">
Worked on developing a CRM (Customer Relationship Management) software. It tracks the complete journey of a lead to a client. <br><b>Technologies used - .NET framework for back-end and AngularJS for front-end development.</b>
</div>
<br>
<div style="font-size: 1.6rem;margin-top: 25px">May 2019 - June 2019</div>
<div style="font-size: 1.4rem;">
Devised an investment strategy based on the analysis of Golden and Death crosses on NIFTY-50 and S&P-500. For a detailed analysis : <a href="https://github.com/jinit24/Golden-and-Death-Crosses-on-NIFTY">code</a>.<br>
Created an automated system which downloads historical data, calculates the rolling returns for different periods of time and updates the data every week for major indices (BSE, NIFTY and major world indices) : <a href="https://github.com/jinit24/BSE-New-Data">code</a>. <br>
<b>Technologies used : Python(Numpy, Pands, Matplotlib) and Selenium <br></b>
<b>Letter of Recommendation : <a href="Static/Letter.pdf">LOR</a> <br><br></b>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('.internships a').attr('target', '_blank');
});
window.transitionToPage = function(href) {
document.querySelector('body').style.opacity = 0
setTimeout(function() {
window.location.href = href
}, 700)
}
document.addEventListener('DOMContentLoaded', function(event) {
document.querySelector('body').style.opacity = 1
})
</script>
</body>
</html>