src = market_data_source(timeframe="1H")
a = src.c > src.o
b = src.h > src.c
c = src.c > src.l
trade_signal_executor()(enter_long=(a and b and c))
