jgtfx2console 0.4.26__tar.gz → 0.4.27__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {jgtfx2console-0.4.26/jgtfx2console.egg-info → jgtfx2console-0.4.27}/PKG-INFO +1 -1
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/LiveChartDataExport.py +1 -1
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/__init__.py +1 -1
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/config_generator.py +5 -5
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27/jgtfx2console.egg-info}/PKG-INFO +1 -1
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/pyproject.toml +1 -1
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/LICENSE +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/README.md +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/README.rst +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/EachRowListener.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/ForexConnect.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/LiveHistory.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/ResponseListener.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/SessionStatusListener.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/TableListener.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/TableManagerListener.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/__init__.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/common.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/errors.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/x-pyd.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/fxcli2console.py +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console.egg-info/SOURCES.txt +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console.egg-info/dependency_links.txt +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console.egg-info/entry_points.txt +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console.egg-info/requires.txt +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console.egg-info/top_level.txt +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/setup.cfg +0 -0
- {jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/setup.py +0 -0
@@ -239,7 +239,7 @@ def parse_xml(config_file):
|
|
239
239
|
tzone = find_in_tree(settings, "Timezone").text
|
240
240
|
|
241
241
|
if tzone != 'EST' and tzone != 'UTC' and tzone != 'Local':
|
242
|
-
print('Timezone is not recognized, using
|
242
|
+
print('Timezone is not recognized, using UTC')
|
243
243
|
tzone = 'UTC' #Default timezone
|
244
244
|
|
245
245
|
print("=============================")
|
@@ -46,13 +46,13 @@ def generate_config(instruments, timeframes, nb_bar=500, default_headers="DateTi
|
|
46
46
|
def main():
|
47
47
|
import argparse
|
48
48
|
parser = argparse.ArgumentParser(description='Generate a configuration file for the ptoLiveChartDataExport')
|
49
|
-
parser.add_argument('--instruments', help='The list of instruments to export (comma-separated)')
|
50
|
-
parser.add_argument('--timeframes', help='The list of timeframes to export (comma-separated)')
|
51
|
-
parser.add_argument('--outxml', type=str,default="jgtfxliveconfig.xml", help='Output XML file')
|
49
|
+
parser.add_argument('-i','--instruments', help='The list of instruments to export (comma-separated)')
|
50
|
+
parser.add_argument('-t','--timeframes', help='The list of timeframes to export (comma-separated)')
|
51
|
+
parser.add_argument('-o','--outxml', type=str,default="jgtfxliveconfig.xml", help='Output XML file')
|
52
52
|
|
53
53
|
#data_dir = os.getenv('JGTPY_DATA') or if --data_dir
|
54
|
-
parser.add_argument('--data_dir', help='The directory where the data will be saved')
|
55
|
-
|
54
|
+
parser.add_argument('-d','--data_dir', help='The directory where the data will be saved')
|
55
|
+
|
56
56
|
|
57
57
|
|
58
58
|
args = parser.parse_args()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/ResponseListener.py
RENAMED
File without changes
|
{jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/SessionStatusListener.py
RENAMED
File without changes
|
File without changes
|
{jgtfx2console-0.4.26 → jgtfx2console-0.4.27}/jgtfx2console/forexconnect/TableManagerListener.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|