# -*- coding: utf-8 -*-12"""3Created on Mon August 8, 08:09:56 20224@author: DrJuneMoone5"""67import logging8from qtsapp import *910##############################################################################11# If You Need Logging, uncomment The BeloW Line12# logging.basicConfig(level=logging.DEBUG)1314global qtsapp, stream, _is_running_live, first_connect15_is_running_live = False16first_connect = True1718##############################################################################19# If Not Using Ms.Office 36520wb_name = "OptionChain"2122# If You Are Using Ms.Office 365 Then Uncomment The Below Line.23# wb_name = "OptionChain365"2425##############################################################################26# Note: If All Greeks Icluding 3rd Order Greeks Is Required To Be Streaming27# In Excel And Terminal, Then Use stream=True, OtherWise To fet 7-9 Second28# SnapShot of Option Chain use stream=False29stream = True3031##############################################################################32if __name__ == "__main__":33EnchantQtsApp(34stream=stream,35_is_running_live=_is_running_live,36first_connect=first_connect,37wb_name=wb_name,38)394041