Hello,

     I'm trying to get my Framework Algorithm to download a file once a day from Dropbox and use the signals in that file to create Insights.  It would be quite simple to create an array of Insights based on the text downloaded from Dropbox and return it.  This means I only want to generate my insights once per day (ideally before market open), but I need minutely data for my ExecutionModel.   Since I have set my resolution to minutely data, this means that my Update method in my AlphaModel runs every minute, which would cause me to re-download my signal file every minute in live trading.  

Is it possible to make it so that my AlphaModel only Updates once during the day, even if my resolution has been set to minutely in my algorithm?

Author