how do I format the column in a C2 Explorer TABLE widget, to be displayed in the grid as a currency $0.00 ?
this does not work
select new
{
trade.Symbol,
trade.Result.ToString(āCā)
};
is it possible ?
The opinions expressed in these forums do not represent those of C2, and any discussion of profit/loss is not indicative of future performance or success. There is a substantial risk of loss in trading. You should therefore carefully consider whether such trading is suitable for you in light of your financial condition. You should read, understand, and consider the Risk Disclosure Statement that is provided by your broker before you consider trading. Most people who trade lose money.
how do I format the column in a C2 Explorer TABLE widget, to be displayed in the grid as a currency $0.00 ?
this does not work
select new
{
trade.Symbol,
trade.Result.ToString(āCā)
};
is it possible ?
Hello!
This works:
long[] systemIds = {128022277,130054513 } ;
TABLE = from trade in C2TRADES
where systemIds.Contains(trade.SystemId)
select new {
System = trade.SystemId,
Symbol = trade.Symbol,
Result = trade.Result.ToString("C")
} ;