Filter trading days according to the current volatility regime
This commit is contained in:
parent
9b6405dc30
commit
786364a8af
@ -1,6 +1,7 @@
|
|||||||
import schedule
|
import schedule
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
from backtesting.filter import VolatilityRegimeFilter
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
from ibkr import Client
|
from ibkr import Client
|
||||||
@ -13,6 +14,8 @@ load_dotenv()
|
|||||||
|
|
||||||
eastern_timezone = 'America/New_York'
|
eastern_timezone = 'America/New_York'
|
||||||
|
|
||||||
|
trade_filters = [VolatilityRegimeFilter()]
|
||||||
|
|
||||||
def enter_trade():
|
def enter_trade():
|
||||||
job_process = Process(target = enter_iron_condor)
|
job_process = Process(target = enter_iron_condor)
|
||||||
job_process.start()
|
job_process.start()
|
||||||
@ -27,11 +30,14 @@ def connection_successful():
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
now = datetime.now(timezone(eastern_timezone))
|
||||||
|
|
||||||
|
if all(filter.trade_allowed(now) for filter in trade_filters):
|
||||||
|
print('Trade filters allow for trading today.')
|
||||||
|
|
||||||
if connection_successful():
|
if connection_successful():
|
||||||
print('Connected to IBKR.')
|
print('Connected to IBKR.')
|
||||||
|
|
||||||
now = datetime.now(timezone(eastern_timezone))
|
|
||||||
|
|
||||||
entry_times = getenv('ENTRY_TIMES').split(',')
|
entry_times = getenv('ENTRY_TIMES').split(',')
|
||||||
for entry_time in entry_times:
|
for entry_time in entry_times:
|
||||||
schedule_time = datetime.strptime(entry_time, '%H:%M:%S').replace(
|
schedule_time = datetime.strptime(entry_time, '%H:%M:%S').replace(
|
||||||
@ -51,3 +57,5 @@ if __name__ == '__main__':
|
|||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
else:
|
else:
|
||||||
print('ERROR: Cannot connect to IBKR. Ensure that TWS / Gateway is running.')
|
print('ERROR: Cannot connect to IBKR. Ensure that TWS / Gateway is running.')
|
||||||
|
else:
|
||||||
|
print('Trade filters prevent trading today.')
|
Loading…
Reference in New Issue
Block a user