I am using the Poloniex C# API available here: Poloniex C#.
I have connected to my Poloniex account via the public/private key combination
private PoloniexClient client = new PoloniexClient(Properties.Resources.PublicKey, Properties.Resources.PrivateKey);
and I have a method for getting trades info
public async void GetTrades(string curr1, string curr2)
{
CurrencyPair cp = new CurrencyPair(curr1, curr2);
var trades = await client.Markets.GetTradesAsync(cp);
foreach (var x in trades)
Console.WriteLine(x);
}
which uses the API's GetTradesAsync() method, but the output I get is
Jojatekok.PoloniexAPI.MarketTools.Trade
Jojatekok.PoloniexAPI.MarketTools.Trade
Jojatekok.PoloniexAPI.MarketTools.Trade