i have custom type i created as below
public class FileTypeData
{
//AAAL ;Indicator;EMA7;1;1
public static List<FileTypeData> Data = new List<FileTypeData>();
public string Symbol { get; set; }
public string Catogery { get; set; }
public string Indicator { get; set; }
public string Signal { get; set; }
public int Buy { get; set; }
public int Hold { get; set; }
public int Sell { get; set; }
public int Wait { get; set; }
}
i defined three list of my custom type and try to sellect all data from them as below:
var result = from Daily in CandelDataDaily
from Weekly in CandelDataWeekly
from Monthly in CandelDataMonthly
select new
{
d=Daily.Indicator,
w=Weekly.Indicator,
m= Monthly.Indicator
};
when the three list have data it working fine ,but problem appears if one of them has account=0 means no data the result return empty, i want to select all data without any join without any condition and so no data in any.
expected result:
Daily Weekly Monthly
xx yy
zz ss mm
dd rr
Thanks