
=====
Adding Decision
=====

1. Add custom decision data to Performance from custom code, e.g. iter loop

    add_decision(self, decision=None, epoch="", botID=""):
    
    check performance.bots[botID] -> build botPerformance

2. Add decision to BotPerformance

    add_decision(self, decision, epoch):

    check for daily performace (epoch) -> build dailyPerformace

3. Add decision to daily performance

    -> add to decisions and decision profile

4. Add to decision profile


===
Evaluate
===

1. performace -> evaluateBots


