-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrypto-bot.html
80 lines (68 loc) · 3.28 KB
/
crypto-bot.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Jason smith</title>
<link rel="shortcut icon" href="web-icon.ico" />
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Cabin:700' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/grayscale.min.css" rel="stylesheet">
</head>
<body id="page-top">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="index.html">Jason Smith</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
</div>
</nav>
<header class="masthead">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto project-content">
<h2>Crypto Currency Trading Bot</h2>
<img src="img/cctb.gif" class="project-photo">
<div class="crypto-bot">
<p style="margin-bottom: 10px">I started this project out of pure interest in finance and blockchain technology. I found that the crypto-currency market is highly volatile and speculative, so this project offers a great opportunity
to gain some further insight about the current market.</p>
<ul style="list-style: none; color: #5DBCD2">
<li>PHP</li>
<li>cURL</li>
<li>Cron</li>
<li>Cryptowatch API</li>
<li>Nexmo API</li>
</ul>
<p>This bot currently calculates chart indicators such as RSI, MACD, and Bollinger Bands
to determine how well a crypto currency is performing. If a crypto currency that I am tracking portrays a good buy/sell signal, I send myself an SMS notification via the NEXMO api
where I can then decide to purchase the coin or not.
</p>
</div>
</div>
</div>
<div class="row github-button">
<ul class="inline-block banner-social-buttons col-lg-8 mx-auto">
<li class="list-inline-item">
<a href="https://github.com/sjason19/crypto-currency-manual-trader-bot" class="btn btn-default btn-sm">
<i class="fa fa-github fa-fw"></i>
<span class="network-name">Crypto Currency Trading Bot</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</header>
</body>
</html>