//+------------------------------------------------------------------+ //| Warrior_EA | //| AnimateDread | //| | //+------------------------------------------------------------------+ struct TradeRecord { int year; int month; int day; int day_of_week; int hour; int minutes; string pattern; string direction; double entryPrice; double exitPrice; string result; //--- The filter's own net vote (LongCondition - ShortCondition, pattern-weight units) on the bar //--- that journaled this row. Data column only - never a journaling filter (see the per-side //--- journaling comment in CExpertSignalCustom::Direction()). MUST STAY LAST: FetchTradeRecords //--- reads SELECT * via DatabaseReadBind, which maps columns to fields by POSITION. double netVote; }; //+------------------------------------------------------------------+