BasicallyMe.RobinhoodNet.Raw.RawRobinhoodClient.PlaceOrder C# (CSharp) Method

PlaceOrder() public method

public PlaceOrder ( string>.IDictionary newOrderSingle ) : Task
newOrderSingle string>.IDictionary
return Task
        PlaceOrder(IDictionary<string, string> newOrderSingle)
        {
            return doPost(ORDERS_URL, newOrderSingle);
        }
    }

Usage Example

Example #1
0
        PlaceOrder(NewOrderSingle newOrderSingle)
        {
            var json = await _rawClient.PlaceOrder(newOrderSingle.ToDictionary()).ConfigureAwait(false);

            return(new OrderSnapshot(json));
        }
All Usage Examples Of BasicallyMe.RobinhoodNet.Raw.RawRobinhoodClient::PlaceOrder