Source code for alpheast.models.signal from enum import Enum [docs] class Signal(Enum): BUY = "BUY" SELL = "SELL" HOLD = "HOLD"