Skip to content

Commit

Permalink
Bug fixes.
Browse files Browse the repository at this point in the history
Changes to be committed:
	modified:   Base/Conditional.mimic
  • Loading branch information
rapmd73 committed Mar 4, 2024
1 parent 73f80b8 commit 1ef02c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Base/Conditional.mimic
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

# CCXT Conditional Orders - OliverTwist
# MIMIC Conditional Orders - OliverTwist

# Jackrabbit Relay
# 2021 Copyright © Robert APM Darin
Expand Down Expand Up @@ -149,7 +149,7 @@ def main():

# if ticker is below price and spread, purge and re-purchase

if amount>bal:
if abs(amount)>bal:
if "ConditionalRepurchase" in relay.Active:
relay.JRLog.Write(f"Original: {json.dumps(relay.Order)}",stdOut=False)

Expand Down

0 comments on commit 1ef02c5

Please sign in to comment.