-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathaddkey.aspx
46 lines (43 loc) · 2.25 KB
/
addkey.aspx
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
<%@ Page Title="Add Key" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="addkey.aspx.cs" Inherits="Analytics.addkey" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<h3 style="text-align: center; margin-top: 2%;">AlphaVantage Key</h3>
<div style="padding-top: 10%; padding-bottom: 10%; border: solid;">
<table style="width: 100%;">
<tr>
<td style="width: 15%; text-align: right;">
<asp:Label ID="Label1" runat="server" Text="Enter Alpha Vantage key:"></asp:Label>
</td>
<td style="width: 20%;">
<asp:TextBox ID="textboxKey" Width="90%" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td></td>
<td style="width: 20%; text-align:center;">
<asp:Button ID="buttonAddKey" runat="server" Text="Save Key" OnClick="buttonAddKey_Click" />
<asp:Button ID="buttonBack" runat="server" Text="Back" OnClick="buttonBack_Click" />
</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="4" style="text-align: left;">
<p style="font-size: small;">
**By default we use Alpha Vantage free api kei to access online stock data. It has limitation of 5 calls per minute and 500 calls per day.
<br />
We recommend to get your own <a href="https://www.alphavantage.co/premium/">Alpha Vantage key</a> and add that key for better uninterrupted experience.
</p>
</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<p style="font-size: xx-small;">
**By default we use free demo api kei to access online stock data. It has limitation of 5 calls per minute and 500 calls in a day.
We recommend you get your own key from <a href="https://www.alphavantage.co/support/#api-key">Alpha Vantage</a> and add your own key.
</p>
</asp:Content>