This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# References : | |
# - https://stackoverflow.com/questions/61776425/logic-for-real-time-algo-trading-expert | |
import pytz | |
import pandas as pd | |
import MetaTrader5 as mt5 | |
import time | |
from datetime import datetime | |
from threading import Timer |