From cc68bc880407d55837e02052c7ab098079641843 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 27 Apr 2025 20:56:41 -0600 Subject: add market option to bids --- server/models/bid.py | 1 + 1 file changed, 1 insertion(+) (limited to 'server/models') diff --git a/server/models/bid.py b/server/models/bid.py index c0b788e..e717011 100644 --- a/server/models/bid.py +++ b/server/models/bid.py @@ -9,6 +9,7 @@ class Bid(Base): timestamp = Column(DateTime, index=True, nullable=False) # Bid target time quantity = Column(Float, nullable=False) # MWh price = Column(Float, nullable=False) # $/MWh + market = Column(String, nullable=False) # Market name: ISONE / MISO / NYISO for now status = Column(String, default="Submitted") # Submitted / Success / Fail pnl = Column(Float, nullable=True) # Profit/loss value, nullable initially -- cgit v1.2.3