-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDefault.aspx
189 lines (182 loc) · 10.6 KB
/
Default.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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.Mobile.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Analytics._Default" %>
<asp:Content ID="BodyContent" ContentPlaceHolderID="MainContent" runat="server">
<div class="row" style="border: 1px solid; ">
<table style="width: 100%; height: 100%;">
<tr>
<td style="width: 100%; text-align: center; background-color:lightblue;">
<asp:Timer ID="TimerHeadingSet" runat="server" Interval="60000" OnTick="GetIndexValues" />
<asp:Timer ID="TimerHeadingClear" runat="server" Interval="59900" OnTick="ClearHeading" />
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="TimerHeadingSet" />
<asp:AsyncPostBackTrigger ControlID="TimerHeadingClear" />
</Triggers>
<ContentTemplate>
<asp:Label ID="headingtext" runat="server" Text=""></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</td>
<td></td>
<td></td>
</tr>
</table>
<table style="width: 100%; height: 100%;">
<tr>
<td class="h4" style="width: 80%; text-align:center;">
<asp:Label Text="A free, open source platform to manage, evaluate, research & analyze global investments - Stocks, MF, ETF, Futures & more" runat="server" />
</td>
<td style="width:5%;">
<a id="loginlink" href="mlogin.aspx" class="btn btn-primary btn-sm" runat="server">Login»</a>
</td>
<td style="width:5%;">
<a id="registerlink" href="mlogin.aspx" class="btn btn-primary btn-sm" runat="server">Register»</a>
</td>
</tr>
</table>
</div>
<%--<div class="jumbotron" style="margin-top: 1px; padding-top: 5px; padding-bottom: 1px; margin-bottom: 5px;">
<div class="label-info" style="text-align: center;">
<asp:Timer ID="TimerHeadingSet" runat="server" Interval="60000" OnTick="GetIndexValues" />
<asp:Timer ID="TimerHeadingClear" runat="server" Interval="59900" OnTick="ClearHeading" />
<asp:UpdatePanel ID="UpdatePanel2" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="TimerHeadingSet" />
<asp:AsyncPostBackTrigger ControlID="TimerHeadingClear" />
</Triggers>
<ContentTemplate>
<asp:Label ID="headingtext" runat="server" Text=""></asp:Label>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<p class="lead" style="margin-top: 10px; margin-bottom: 1px; padding-bottom: 1px; margin-right: 50px;">
<span style="font-size: 20px; font-weight: bold;">Portfolio Analytics</span>
<span style="font-size: 13px; padding-right: 0px;">A free, open source platform to manage, evaluate, research & analyze global investments - Stocks, MF, ETF, Futures & more</span>
<a id="loginlink" href="mlogin.aspx" class="btn btn-primary btn-sm" runat="server">Login»</a>
<a id="registerlink" href="mlogin.aspx" class="btn btn-primary btn-sm" runat="server">Register»</a>
</p>
</div>--%>
<div class="row">
<asp:Timer ID="TimerGraphSet" runat="server" Interval="60000" OnTick="RedrawGraphs" />
<asp:UpdatePanel ID="UpdatePanel3" runat="server" UpdateMode="Conditional">
<Triggers>
<asp:AsyncPostBackTrigger ControlID="TimerGraphSet" />
</Triggers>
<ContentTemplate>
<table style="width: 100%; border: 1px solid black;">
<tr>
<td style="width: 100%; text-align: center;">
<asp:Chart ID="chart1" runat="server" CssClass="chart" Visible="true"
EnableViewState="true"
ImageType="Png" ImageLocation="~/chartimg/ChartPic_#SEQ(300,3)" ImageStorageMode="UseHttpHandler">
<Series>
<asp:Series Name="SENSEX" XAxisType="Secondary" YAxisType="Primary" ChartType="Line" ChartArea="chartarea1"
XValueMember="TIMESTAMP" XValueType="DateTime" YValuesPerPoint="4" YValueMembers="CLOSE,OPEN,HIGH,LOW">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="chartarea1">
<Position Auto="true" />
<AxisX2 Title="SENSEX TODAY" TitleAlignment="Center" IsMarginVisible="false" IsLabelAutoFit="true" LabelAutoFitStyle="DecreaseFont" TitleFont="Microsoft Sans Serif, 8pt">
<LabelStyle Format="hh:mm" Font="Microsoft Sans Serif, 8pt" IsEndLabelVisible="true" />
</AxisX2>
<AxisY Title="" TitleAlignment="Center" IsMarginVisible="false" IsLabelAutoFit="true" LabelAutoFitStyle="DecreaseFont"
TitleFont="Microsoft Sans Serif, 8pt" IsStartedFromZero="false">
<LabelStyle Font="Microsoft Sans Serif, 8pt" />
</AxisY>
</asp:ChartArea>
</ChartAreas>
</asp:Chart>
<%--</td>
<td style="width: 50%; text-align: center;">--%>
<asp:Chart ID="chart2" runat="server" CssClass="chart" Visible="true"
EnableViewState="true"
ImageType="Png" ImageLocation="~/chartimg/ChartPic_#SEQ(300,3)" ImageStorageMode="UseHttpHandler">
<Series>
<asp:Series Name="NIFTY" XAxisType="Secondary" YAxisType="Primary" ChartType="Line" ChartArea="chartarea2"
XValueMember="TIMESTAMP" XValueType="DateTime" YValuesPerPoint="4" YValueMembers="CLOSE,OPEN,HIGH,LOW">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="chartarea2">
<Position Auto="true" />
<AxisX2 Title="NIFTY TODAY" TitleAlignment="Center" IsMarginVisible="false" IsLabelAutoFit="true" LabelAutoFitStyle="DecreaseFont" TitleFont="Microsoft Sans Serif, 8pt">
<LabelStyle Format="hh:mm" Font="Microsoft Sans Serif, 8pt" IsEndLabelVisible="true" />
</AxisX2>
<AxisY Title="" TitleAlignment="Center" IsMarginVisible="false" IsLabelAutoFit="true" LabelAutoFitStyle="DecreaseFont"
TitleFont="Microsoft Sans Serif, 8pt" IsStartedFromZero="false">
<LabelStyle Font="Microsoft Sans Serif, 8pt" />
</AxisY>
</asp:ChartArea>
</ChartAreas>
</asp:Chart>
</td>
</tr>
</table>
</ContentTemplate>
</asp:UpdatePanel>
</div>
<div class="row" style="border: 1px solid black; margin-top: 1px;">
<div class="col-sm-3">
<h4>Differentiating Features</h4>
<div>
<%--<ul style="margin-left:-20px;">--%>
<ul>
<li>Manage global investments</li>
<li>Supports SIP transaction</li>
<li>Real-time global market data</li>
<li>Valuation Graph</li>
<li>Backtest & forecast</li>
<li>Buy-Sell Indicator</li>
<li>Momentum Identifier</li>
<li>Price Direction</li>
<li>Price Validator</li>
<li>Trend Direction</li>
<li>Trend Gauger</li>
<li>Trend Identifier</li>
</ul>
</div>
</div>
<div class="col-sm-3">
<h4>How to use</h4>
<div>
<%--<ul style="margin-left:-20px;">--%>
<ul>
<li>Create your account by registering</li>
<li>Use your valid email id as user id</li>
<li>Enter a password that you will remember</li>
<li>Use the same email id & password combination to login</li>
</ul>
</div>
</div>
<div class="col-sm-3">
<h4>How to Use Manage Investments</h4>
<div>
<%--<ul style="margin-left:-20px;">--%>
<ul>
<li>New: Create portfolio</li>
<li>Open: Open portfolio</li>
<li>Delete: Delete portfolio </li>
<li>Portfolio Valuation Graph</li>
<li>Get Quot</li>
<li>Graphs->Standard Indicator Graphs</li>
<li>Graphs->Advance Indicator Graphs</li>
<li>Graphs->Global Indices Graphs</li>
</ul>
</div>
</div>
<div class="col-sm-3">
<h4>How to use Manage Mutual Funds</h4>
<div>
<%--<ul style="margin-left:-20px;">--%>
<ul>
<li>New: Create portfolio</li>
<li>Open: Open portfolio</li>
<li>Delete: Delete an existing portfolio </li>
<li>Portfolio Fund Valuation Graph</li>
<li>Portfolio Cost Vs Value Graph</li>
<li>Standard Indicator Graphs</li>
</ul>
</div>
</div>
</div>
</asp:Content>