Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/ExchangeSharp/API/Exchanges/_Base/ExchangeAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -972,7 +972,6 @@ public virtual async Task<Dictionary<string, decimal>> GetMarginAmountsAvailable
public virtual async Task<ExchangeOrderResult> PlaceOrderAsync(ExchangeOrderRequest order)
{
// *NOTE* do not wrap in CacheMethodCall
if (order.IsPostOnly != null) throw new NotImplementedException("Post Only orders are not supported by this exchange or not implemented in ExchangeSharp. Please submit a PR if you are interested in this feature.");
await new SynchronizationContextRemover();
order.MarketSymbol = NormalizeMarketSymbol(order.MarketSymbol);
return await OnPlaceOrderAsync(order);
Expand Down