src = market_data_source(timeframe="1D")
a = src.c + 2
b = 2 + src.c
c = src.c * -1
trade_signal_executor()(enter_long=(a > b))
