This repository has been archived by the owner on Jul 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrr.html
89 lines (82 loc) · 2.34 KB
/
rr.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
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<script src="rr.js"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Lol</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="rr.css" />
</head>
<body>
<div class="header">
<h1>Risk/Reward + Leverage Calculator</h1>
<p>github.com/Batuhan4</p>
</div>
<div class="bosluk">
<h2 class="onur">idea from: Onur Göksungur </h2>
<button onclick="func()" class="buton">HESAPLA</button>
</div>
<div class="toplama">
<div style="float: left;" class="position">
<table id="positionTablo">
<tr>
<th>Enter Price:</th>
<td>
<input type="number" name="enter price" id="enter" step="0.01" />
</td>
</tr>
<tr>
<th>SL:</th>
<td><input type="number" name="sl" id="sl" step="0.01" /></td>
</tr>
<tr>
<th>TP:</th>
<td><input type="number" name="tp" id="tp" step="0.01" /></td>
</tr>
</table>
</div>
<div style="float: left;" class="risk">
<table id="riskTablo">
<tr>
<th>Wallet Size:</th>
<td><input type="number" name="tp" id="wallet" step="0.01" /></td>
</tr>
<tr>
<th>Risk(%):</th>
<td><input type="number" name="tp" id="risk2" step="0.01" /></td>
</tr>
<tr>
<th>Risk($):</th>
<td id="risk"></td>
</tr>
</table>
</div>
</div>
<table>
<div class="positionSize">
<tr>
<th>Buy size:</th>
<td id="buySize"></td>
</tr>
<tr>
<th>Leverage:</th>
<td id="Leverage"></td>
</tr>
<tr>
<th>RR:</th>
<td id="RR"></td>
</tr>
<tr>
<th>Profit:</th>
<td id="Profit"></td>
</tr>
</div>
</table>
</div>
</body>
</html>