Created
May 21, 2019 13:53
-
-
Save dbolser/dd5528b62b606a2efe9ca357dc223d02 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Order: | |
order = {} | |
def __init__(self, Amount, Price, ID, Side): | |
self.order = { | |
'Amount': Amount, | |
'Price': Price, | |
'Id': ID, | |
'Side': Side | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment