UNPKG

shubhadownloader

Version:

There is large amount of information available in market place. The markets are always in sync. In today's world investors find it very difficult to make effective use of information available to them. Shubha Downloader is great tool which resolves this problem and helps investor to increase his productivity and stay focused on decision making. Shubha Downloader enable end user to download market data from available sources and organize it. Shubha Downloader is Open source & FREE utility for end users. Shubha Downloader have main features as follows End of the day market data from web to your favorite charting application . Fundamental market data from web to your favorite charting application. Market reports from web to your favorite charting application.

134 lines (110 loc) 3.81 kB
/******************************** <Shubha Downloader, It downloads end of day pricing data from publicly available sites and converts it different formats....> Copyright (C) 2013 Shubhalabha.in This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/> ***********************************/ Ext.require([ 'Ext.form.*' ]); Ext.onReady(function() { var formPanel = Ext.create('Ext.form.Panel', { frame: true, title: 'Compose Email', width: 600, height: 360, bodyPadding: 5, fieldDefaults: { labelAlign: 'left', labelWidth: 90, anchor: '100%' }, items: [ // Mailing Address { xtype: 'fieldset', title: '', //defaultType: 'textfield', layout: 'anchor', defaults: { anchor: '100%' }, items: [ { xtype: 'filefield', name: 'file1', fieldLabel: 'Select folder' }, { xtype: 'label', forId: 'msg', style:'display:block; padding:10px 0px 0px 20px', text: '"Application will download & \n\ process data from web in \n\ this folder and generate output data. \n\ Please make sure you have 4GB free on this drive"' }, { xtype: 'label', forId: 'msg1', style:'display:block; padding:10px 0px 0px 20px', text: 'Action - save these details in settings.txt file. If file is present, show settings on page.' } ] }, // Credit card info { xtype: 'fieldset', title: '', layout: 'anchor', defaults: { anchor: '100%' }, defaultType: 'textfield', items: [ { fieldLabel: 'Proxy Server', name: 'proxyserver', allowBlank: false }, { fieldLabel: 'Port', name: 'port', allowBlank: false }, { fieldLabel: 'User Name', name: 'username', allowBlank: false }, { fieldLabel: 'Password', name: 'password', inputType: 'password', allowBlank: false } ] } ], buttons: [{ text: 'Reset', handler: function() { this.up('form').getForm().reset(); } }, { text: 'Save', width: 150, handler: function() { } }] }); formPanel.render('form-ct'); });