Okay, I'm sure the answers staring me in the face; however, I've tried everything and I'm completely stuck at this point.
Is there a way I can use a variable in multiple functions? I keep getting an error anytime I use a variable that was defined in another function.
I've tried the record() ; however, it's not working for me.
Ex:
schedule_function(my_func1, date_rules.every_day(), time_rules.market_open(hours=1))
schedule_function(my_func2, date_rules.every_day(), time_rules.market_close(hours=1))
def my_func1:
x = 1 +1
def my_func2:
y = x+5