Files
mt5-correlation/mt5_correlation.py
T

24 lines
594 B
Python
Raw Normal View History

2021-02-10 18:21:49 +00:00
"""
Application to monitor previously correlated symbol pairs for correlation divergence.
"""
2021-02-02 16:48:52 +00:00
import definitions
2021-02-10 18:21:49 +00:00
import yaml
import logging.config
from mt5_correlation.gui import MonitorFrame
from mt5_correlation.config import Config
import wx
2021-02-02 16:13:49 +00:00
2021-02-10 18:21:49 +00:00
if __name__ == "__main__":
# Load the config
2021-02-16 17:15:00 +00:00
Config().load(fr"{definitions.ROOT_DIR}\config.yaml")
# Get logging config and configure the logger
log_config = Config().get('logging')
logging.config.dictConfig(log_config)
2021-02-02 16:13:49 +00:00
2021-02-10 18:21:49 +00:00
# Start the app
app = wx.App(False)
2021-02-16 17:15:00 +00:00
frame = MonitorFrame()
2021-02-10 18:21:49 +00:00
frame.Show()
app.MainLoop()