Skip to content

Commit

Permalink
#578 Set Bittrex MarketSymbolIsReversed to false (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucStr authored Apr 8, 2021
1 parent 320ff28 commit d4b9f7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public ExchangeBittrexAPI()
"WAVES_ASSET",
};

MarketSymbolIsReversed = true;
MarketSymbolIsReversed = false;
WebSocketOrderBookType = WebSocketOrderBookType.DeltasOnly;
}

Expand Down

2 comments on commit d4b9f7d

@Romazes
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's correct only for version API v1.1 & v2.0
But API v3 need MarketSymbolIsReversed = true;

@vslee
Copy link
Collaborator

@vslee vslee commented on d4b9f7d Apr 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Romazes good point. One day, if anyone decides to implement the v3 API, it will need to be changed back. For now, #553 tracks the v3 API.

Please sign in to comment.