Skip to content

Instantly share code, notes, and snippets.

@dbolser
Created May 21, 2019 13:53
Show Gist options
  • Save dbolser/dd5528b62b606a2efe9ca357dc223d02 to your computer and use it in GitHub Desktop.
Save dbolser/dd5528b62b606a2efe9ca357dc223d02 to your computer and use it in GitHub Desktop.
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