@@ -31,12 +31,12 @@ class Candle(BaseModel):
3131 h : Union [StrictFloat , StrictInt ] = Field (description = " high" )
3232 l : Union [StrictFloat , StrictInt ] = Field (description = " low" )
3333 c : Union [StrictFloat , StrictInt ] = Field (description = " close" )
34- o : Union [StrictFloat , StrictInt ] = Field (description = " open_raw" , alias = "O" )
35- h : Union [StrictFloat , StrictInt ] = Field (description = " high_raw" , alias = "H" )
36- l : Union [StrictFloat , StrictInt ] = Field (description = " low_raw" , alias = "L" )
37- c : Union [StrictFloat , StrictInt ] = Field (description = " close_raw" , alias = "C" )
34+ O : Union [StrictFloat , StrictInt ] = Field (description = " open_raw" , alias = "O" )
35+ H : Union [StrictFloat , StrictInt ] = Field (description = " high_raw" , alias = "H" )
36+ L : Union [StrictFloat , StrictInt ] = Field (description = " low_raw" , alias = "L" )
37+ C : Union [StrictFloat , StrictInt ] = Field (description = " close_raw" , alias = "C" )
3838 v : Union [StrictFloat , StrictInt ] = Field (description = " volume0" )
39- v : Union [StrictFloat , StrictInt ] = Field (description = " volume1" , alias = "V" )
39+ V : Union [StrictFloat , StrictInt ] = Field (description = " volume1" , alias = "V" )
4040 i : StrictInt = Field (description = " last_trade_id" )
4141 additional_properties : Dict [str , Any ] = {}
4242 __properties : ClassVar [List [str ]] = ["t" , "o" , "h" , "l" , "c" , "O" , "H" , "L" , "C" , "v" , "V" , "i" ]
0 commit comments